/* Paleta de cores */
:root {
    --vinho: #4C2435;
    --vinho-btn: #4c243579;
    --dourado: #C19D60;
    --branco: #ffffff;
    --cinza: #f5f5f5;
    --preto: #222;
}

html {
  scroll-behavior: smooth;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--branco);
    color: var(--preto);
}

/* Cabeçalho */
header {
    background-color: var(--vinho);
    color: var(--branco);
    text-align: center;
    padding: 40px 15px;
}

header .logo {
    width: 150px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
  }
  
  .apresentacao-info h2 {
    font-family: 'Playfair Display', serif;

}
header p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--dourado);
    color: var(--vinho);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 350ms ease;
}

.btn-primary:hover {
    background-color: #d4b26e;
}

/* Sessão Apresentação */
.apresentacao {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto 20px; /* Reduzido para diminuir espaço abaixo */
  flex-wrap: wrap;
  padding: 0 20px;
}

.apresentacao-img img {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.apresentacao-info {
  flex: 1;
}

.apresentacao-info h2 {
  font-size: 2.2rem;
  color: #4C2435;
  margin-bottom: 20px;
}

.apresentacao-info p {
  line-height: 1.7;
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 15px;
}

@media(max-width: 768px) {
  .apresentacao {
    flex-direction: column;
    text-align: center;
  }
  .apresentacao-info h2 {
    font-size: 1.8rem;
  }
  .apresentacao-info p {
    font-size: 1rem;
  }
}

/* Planos */
.planos-section {
  padding: 20px 20px 60px; /* Reduzido o top padding para diminuir espaço entre seções */
  max-width: 1200px;
  margin: 0 auto;
}

.planos-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--vinho);
  font-family: 'Playfair Display', serif;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plano {
  background-color: #f8f6f5;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.plano-img img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 15px;
}

.plano-info h3 {
  color: var(--vinho);
  font-size: 1.8rem;
  margin: 15px 0;
  font-family: 'Playfair Display', serif;
}

.plano-info ul {
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
}

.plano-info ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.plano-preco {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--branco);
  background-color: var(--vinho);
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}

.btn-secondary {
  background-color: var(--vinho);
  color: var(--branco);
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 350ms ease;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #361825;
}
/* Entrega */
.entrega-section {
  background-color: #f8f6f5;
  padding: 30px 20px 30px; /* Reduzido ainda mais o top e bottom padding */
  text-align: left;
}

.entrega-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: start;
}

.entrega-content, .pagamento-content {
  padding: 20px;
}

.entrega-section h2 {
  font-size: 2.2rem;
  color: #4C2435;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.entrega-section p {
  font-size: 1.1rem;
  color: #4C2435;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Depoimentos */
.depoimentos-section {
    padding: 40px 20px 10px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.depoimentos-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--vinho);
    margin-bottom: 30px;
}

.carrossel-container {
    position: relative;
    overflow: visible;
}

.carrossel {
  display: flex;
  overflow: visible;
  gap: 20px;
  justify-content: center;
  transition: transform 0.5s ease-in-out; 
}

.slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  text-indent: -9999px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slick-dots li.slick-active button {
  background-color: var(--vinho);
}

.slick-dots li {
  background-color: var(--vinho-btn);
  border-radius: 50%;
}


.depoimento {
  background-color: #fff;
  padding: 40px 30px; 
  border-radius: 16px;
  border: 1px solid #ddd;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.depoimento p {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.depoimento span {
  font-weight: bold;
  color: var(--vinho);
  font-size: 1rem;
}

.slick-slide {
  margin: 0 10px;
}

.slick-list {
  margin: 0 -10px;
}

/* Setas */
.prev, .next {
    background-color: var(--vinho-btn);
    color: var(--branco);
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-125%);
    transition: all 350ms ease;
    display: none;
    z-index: 30;
}

.prev { left: -41px; }
.next { right: -42px; }

.prev:hover, .next:hover {
    background-color: #361825;
}

@media (max-width: 1140px) {
  .prev { left: -11px; }
  .next { right: -12px; }
}

/* Rodapé */
footer {
    background-color: var(--vinho);
    color: var(--branco);
    text-align: center;
    padding: 40px 20px;
}

footer .logo-rodape img {
    width: 80px;
    margin-bottom: 10px;
}

footer p {
    margin: 5px 0;
    font-size: 0.95rem;
}

/* WhatsApp Flutuante */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp img {
    width: 60px;
    transition: transform 0.3s;
}

.whatsapp img:hover {
    transform: scale(1.1);
}

/* RESPONSIVO */

/* Header */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  /* Apresentação */
  .apresentacao {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .apresentacao-img img {
    max-width: 200px;
  }

  .apresentacao-info h2 {
    font-size: 1.6rem;
  }
}

/* Planos */
@media (max-width: 992px) {
  .planos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prev, .next {
    display: none;
  }
}

@media (max-width: 600px) {
  .planos-grid {
    grid-template-columns: 1fr;
  }

  .plano-info h3 {
    font-size: 1.5rem;
  }

  .plano-preco {
    font-size: 1rem;
    padding: 8px 15px;
  }

  .btn-secondary {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* Entrega e Pagamento */
@media (max-width: 768px) {
  .entrega-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .entrega-content, .pagamento-content {
    padding: 10px 20px;
  }
}

/* Depoimentos */
@media (max-width: 768px) {
  .carrossel {
    gap: 15px;
  }

  .depoimento {
    max-width: 100%;
    min-width: auto;
  }

  .prev, .next {
    top: auto;
    bottom: 10px;
    transform: none;
    left: 40%;
    right: 40%;
    position: relative;
    margin: 0 10px;
  }
}

/* Footer */
.rodape {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

@media (max-width: 480px) {
  header {
    padding: 25px 15px;
  }
  .apresentacao {
    margin: 30px auto 20px;
  }
  .btn-primary {
    font-size: 13px;
    padding: 8px 12px;
  }
  .planos-section {
    padding: 20px 20px 40px;
  }
  .planos-section h2 {
    font-size: 31px;
    margin-bottom: 25px;
  }
  .plano-info ul li {
    margin-bottom: 7px;
  }
  .entrega-section h2 {
  font-size: 31px;
  }
  .depoimentos-section h2 {
    font-size: 31px;
  }
  .prev, .next {
    display: none;
  }
  footer p {
    font-size: 0.85rem;
  }

  footer .logo-rodape img {
    width: 60px;
  }
}
@media (max-width: 364px) {
  .btn-primary {
    font-size: 14px;
    display: flex;
    margin: 0 auto;
    width: 90%;
  }
}

/* WhatsApp flutuante */
@media (max-width: 120px) {
  .whatsapp img {
    width: 20px;
  }
}
