/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-light: #fdfbf7;
  --brand-brown: #3b2313;
  --brand-teal: #2db0b1;
  --brand-peach: #ffc496;
  --text-dark: #2a190e;
  --text-muted: #5c4535;
}

/* ================= BASE DO LENIS (SMOOTH SCROLL) ================= */
html {
  scroll-behavior: auto !important;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ================= COMPONENTES GLOBAIS ================= */
.cta-button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 1.2rem 2.8rem;
  background-color: var(--brand-teal);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(45, 176, 177, 0.35);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  align-self: flex-start;
  border: 2px solid var(--brand-teal);
}
.cta-button.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(45, 176, 177, 0.5);
  background-color: transparent;
  color: var(--brand-teal);
}
.cta-button.primary .arrow {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}
.cta-button.primary:hover .arrow {
  transform: translateX(6px);
}

/* ================= SEÇÃO 1: HERO DESKTOP ================= */
.hero {
  display: flex;
  min-height: 100vh;
  width: 100%;
  align-items: center;
  position: relative;
}
.hero-content {
  flex: 1;
  padding: 5% 8%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.logo-container {
  margin-bottom: 2rem;
}
.brand-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(59, 35, 19, 0.15);
}
.hero-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--brand-teal);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 3.8rem;
  line-height: 1.1;
  color: var(--brand-brown);
  margin-bottom: 1.5rem;
}
.hero-subtitle em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand-teal);
}
.hero-subtitle strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -1.5px;
}
.hero-subtitle .highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight {
  background:none !important;
}

.hero-subtitle .highlight::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: -5px;
  width: calc(100% + 10px);
  height: 14px;
  background-color: var(--brand-peach);
  z-index: -1;
  transform: rotate(-2deg);
  border-radius: 2px;
}
.hero-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 90%;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 3.5rem;
  width: 100%;
  max-width: 500px;
}
.benefit-card {
  background: #ffffff;
  border: 1px solid rgba(45, 176, 177, 0.15);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.benefit-card .icon {
  font-size: 1.2rem;
  background: var(--bg-light);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand-teal);
}
.benefit-card p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-brown);
}
.hero-visuals {
  flex: 1;
  height: 100vh;
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
  padding: 20px;
  background-color: #f5f1e9;
  box-shadow: inset 20px 0 50px rgba(253, 251, 247, 1);
}
.visuals-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-light) 0%,
    transparent 15%,
    transparent 85%,
    var(--bg-light) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.gallery-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.gallery-track img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 300px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* ================= SEÇÃO 2: STACK CARDS DESKTOP ================= */
.smart-format {
  background-color: var(--brand-brown);
  color: var(--bg-light);
  min-height: 100vh;
  padding: 0 8%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sf-container {
  display: flex;
  width: 100%;
  height: 80vh;
  gap: 5%;
  align-items: center;
}
.sf-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.sf-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--bg-light);
  margin-bottom: 2rem;
}
.sf-title em {
  font-style: italic;
  color: var(--brand-peach);
}
.sf-title strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--brand-teal);
}
.sf-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(253, 251, 247, 0.8);
  margin-bottom: 1.5rem;
  max-width: 90%;
}
.highlight-dark {
  color: var(--brand-peach);
  font-weight: 600;
}
.sf-conclusion {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 251, 247, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
}
.sf-conclusion .icon {
  font-size: 2rem;
}
.sf-conclusion p {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--brand-peach);
}
.sf-right {
  flex: 1;
  height: 100%;
  position: relative;
  perspective: 1000px;
}
.sf-cards-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sf-card {
  position: absolute;
  width: 90%;
  height: 90%;
  max-height: 600px;
  background-color: var(--bg-light);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform-origin: top center;
  border: 1px solid rgba(45, 176, 177, 0.2);
}
.card-image {
  flex: 7;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-text {
  flex: 3;
  background-color: var(--bg-light);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 4px solid var(--brand-teal);
}
.card-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--brand-peach);
  opacity: 0.8;
}
.card-text h3 {
  font-size: 1.4rem;
  color: var(--brand-brown);
  font-weight: 700;
  line-height: 1.2;
}

/* ================= SEÇÃO 3 ================= */
.ideal-events {
  background-color: var(--bg-light);
  color: var(--text-dark);
  position: relative;
  width: 100%;
  padding: 120px 0;
}

.ie-header-centered {
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 80px auto;
}

.ie-title {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--brand-brown);
}

.ie-title em {
  font-style: italic;
  color: var(--brand-teal);
}

.ie-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
}

.ie-text-side {
  width: 55%;
  padding-right: 5%;
}

/* Nova classe base das imagens mobile oculta no desktop */
.ie-img-mobile {
  display: none;
}
.ie-mobile-group {
  width: 100%;
}

.ie-list-container {
  display: flex;
  flex-direction: column;
  gap: 20vh; /* Respiro imenso no desktop pra blindar a animação */
  margin-bottom: 100px;
  padding-top: 50px;
  padding-bottom: 40vh; /* Espaço pro final fluir sem cortar */
}

.ie-item {
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(59, 35, 19, 0.2);
  text-transform: uppercase;
  letter-spacing: -1px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: left center;
}

.ie-item.is-active {
  color: var(--brand-teal);
  -webkit-text-stroke: 0px transparent;
  transform: translateX(30px);
  text-shadow: 0 10px 30px rgba(45, 176, 177, 0.3);
}

.ie-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-top: 1px solid rgba(59, 35, 19, 0.1);
  padding-top: 50px;
  margin-bottom: 100px;
}

.ie-conclusion {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 90%;
  margin: 0 auto;
}
.ie-conclusion strong {
  color: var(--brand-brown);
}
.ie-footer .cta-button {
  align-self: center !important;
  margin-top: 30px;
}

.ie-image-side {
  width: 45%;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 50px;
}

.ie-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 70vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.ie-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
}

/* =======================================================
   ADICIONE ISTO DENTRO DO SEU @media (max-width: 1024px)
   ======================================================= */

/* ==========================================================================
   ======================= OTIMIZAÇÃO MOBILE (BEM BLINDADO) ===================
   ========================================================================== */

@media (max-width: 1024px) {
  /* Reset de Tipografia Mobile GERAL */
  html {
    font-size: 14px;
  } /* Diminui a base do REM */

  /* SEÇÃO 1: HERO - CORREÇÃO DE ESPAÇAMENTO E ALTURA DO CARROSSEL */
  .hero {
    flex-direction: column;
    min-height: auto;
    align-items: center;
  }

  .cta-button.primary {
    margin: 0 auto;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    padding: 60px 20px; /* Reduzido top/bottom, respiro lateral */
    text-align: center;
    align-items: center;
  }
  .logo-container {
    margin-bottom: 1.5rem;
  }
  .brand-logo {
    width: 90px;
    height: 90px;
  }
  .hero-title {
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
  }
  .hero-subtitle {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .hero-subtitle .highlight::after {
    height: 10px;
    bottom: 4px;
  }
  .hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 100%;
    padding: 0 10px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 2.5rem;
    padding: 0 10px;
  }
  .benefit-card {
    padding: 10px;
    gap: 10px;
  }
  .benefit-card .icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .benefit-card p {
    font-size: 0.9rem;
  }

  .hero-cta {
    align-self: center;
    width: auto;
    font-size: 1rem;
  }

  /* Carrossel Mobile - Altura Limitada (CORREÇÃO ITEM 2) */
  .hero-visuals {
    flex: none;
    width: 100%;
    height: 35vh; /* Limitando a altura para não passar de uma tela */
    min-height: 300px;
    padding: 15px;
    flex-direction: row; /* Mantém colunas lado a lado */
    gap: 15px;
    background-color: #f5f1e9;
    box-shadow:
      inset 0 20px 30px rgba(253, 251, 247, 1),
      inset 0 -20px 30px rgba(253, 251, 247, 1);
    margin-top: 0px; /* GARANTE COLADO NO TEXTO (CORREÇÃO ITEM 1) */
  }
  .visuals-overlay {
    background:
      linear-gradient(
        to right,
        #f5f1e9 0%,
        transparent 10%,
        transparent 90%,
        #f5f1e9 100%
      ),
      linear-gradient(
        to bottom,
        #f5f1e9 0%,
        transparent 10%,
        transparent 90%,
        #f5f1e9 100%
      );
  }
  .gallery-column {
    gap: 15px;
  }
  .gallery-track {
    gap: 15px;
  }
  .gallery-track img {
    height: 200px;
    border-radius: 12px;
  }

  /* SEÇÃO 2: STACK CARDS (ABAIXO DO TEXTO - CORREÇÃO ITEM 3) */
  .smart-format {
    min-height: auto;
    padding: 60px 20px;
    flex-direction: column;
  }
  .sf-container {
    flex-direction: column;
    height: auto; /* IMPORTANTE: Altura automática */
    gap: 40px;
    align-items: flex-start;
  }
  .sf-left {
    max-width: 100%;
    padding: 0;
    text-align: left;
  }
  .sf-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .sf-desc {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  .sf-conclusion {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    gap: 10px;
  }
  .sf-conclusion .icon {
    font-size: 1.5rem;
  }
  .sf-conclusion p {
    font-size: 1.1rem;
  }

  /* Cards wrapper em fluxo normal (abaixo do texto) */
  .sf-right {
    width: 100%;
    height: auto;
    flex: none;
    perspective: none; /* Remove perspective */
    position: relative;
  }
  .sf-cards-wrapper {
    flex-direction: column; /* Empilha verticalmente */
    position: relative;
    height: auto;
    width: 100%;
    gap: 20px; /* Espaço entre cards */
    align-items: center;
    padding: 0;
  }
  /* Card design mobile (fluxo normal) */
  .sf-card {
    position: relative; /* Remove absolute */
    width: 100%;
    max-width: 350px;
    height: 400px; /* Altura fixa menor pro card */
    max-height: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(253, 251, 247, 0.1);
    transform: none !important; /* Reseta qualquer transformação do GSAP desktop */
    opacity: 1 !important;
    visibility: visible !important;
  }
  .card-image {
    flex: 6;
  }
  .card-text {
    flex: 4;
    padding: 20px;
    gap: 15px;
    border-top: 3px solid var(--brand-teal);
  }
  .card-num {
    font-size: 2.2rem;
  }
  .card-text h3 {
    font-size: 1.1rem;
  }

  /* ... (Mantenha o CSS das outras seções que você já tem aqui) ... */

  /* SEÇÃO 3: MOBILE (Estático Texto-Imagem) */
  .ideal-events {
    padding: 60px 20px;
  }
  .ie-header-centered {
    max-width: 100%;
    margin-bottom: 40px;
    text-align: left;
    padding: 0;
  }
  .ie-title {
    font-size: 2.8rem;
    text-align: left;
  }

  .ie-wrapper {
    flex-direction: column;
    padding: 0;
  }
  .ie-text-side {
    width: 100%;
    padding-right: 0;
  }

  /* Remove a lateral "pinada" de imagem do desktop */
  .desktop-only {
    display: none !important;
  }

  .ie-list-container {
    gap: 30px;
    margin-bottom: 40px;
    padding-top: 0;
    padding-bottom: 0;
  }

  /* Configuração do Bloco Texto-Imagem */
  .ie-mobile-group {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre o texto e a imagem */
    margin-bottom: 20px;
  }

  /* Reseta os textos para ficarem legíveis e estáticos */
  .ie-item {
    font-size: 1.8rem;
    color: var(--brand-teal); /* Já começa aceso/sólido */
    -webkit-text-stroke: 0px transparent;
    transform: none !important;
    text-shadow: none !important;
  }

  /* Mostra a imagem individual */
  .ie-img-mobile {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  /* Footer Mobile */
  .ie-footer {
    padding-top: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
    text-align: left;
  }
  .ie-conclusion {
    font-size: 1.2rem;
    max-width: 100%;
    margin: 0;
    text-align: left;
  }
  .ie-footer .cta-button {
    align-self: flex-start !important;
    margin-top: 20px;
  }

  /* Footer Mobile */
  .ie-footer {
    padding-top: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
    text-align: left;
  }
  .ie-conclusion {
    font-size: 1.2rem;
    max-width: 100%;
    margin: 0;
    text-align: left;
  }
  .ie-footer .cta-button {
    align-self: flex-start !important;
    margin-top: 20px;
  }

  /* Lado Imagem Mobile (Segundo - Abaixo do Texto) */
  .ie-image-side {
    width: 100%;
    height: auto; /* Altura automática */
    min-height: 400px;
    padding-top: 20px;
    padding-bottom: 30px;
    order: 1; /* Garante que fique abaixo do ie-text-side */
    display: block; /* Remove flex centralizador desktop */
    position: relative;
  }
  .ie-image-container {
    width: 100%;
    max-width: 100%;
    height: 350px;
    border-radius: 16px;
    position: relative; /* Container simples */
  }
  /* Imagem mobile (estática ou fade simples) */
  .ie-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transform: none !important; /* Reseta scale desktop */
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }
  /* Mostra a imagem correspondente ao item ativo */
  .ie-img.active-mobile {
    opacity: 1;
    visibility: visible;
  }
}

/* ================= SEÇÃO 4 ================= */
.why-choose {
  background-color: #f5f1e9; /* Um bege bem clarinho e elegante para destacar do off-white da seção anterior */
  color: var(--text-dark);
  width: 100%;
  padding: 100px 0 0 0;
  overflow-x: hidden;
}

.why-header-main {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 5%;
}

.why-main-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 1.1;
  color: var(--brand-brown);
}

.why-main-title em {
  font-style: italic;
  color: var(--brand-teal);
}

/* Estrutura do Card de Tela Inteira */
.why-card {
  display: flex;
  align-items: center;
  min-height: 90vh; /* Ocupa quase a tela inteira */
  width: 100%;
  /* O padding cria um respiro, mas mantemos colado nas bordas laterais para imersão */
  padding: 5% 0;
}

/* O Zigue-Zague Mágico: Inverte a direção nos cards pares */
.why-card:nth-child(even) {
  flex-direction: row-reverse;
}

/* Lado da Imagem */
.why-img-wrapper {
  flex: 1;
  height: 75vh;
  width: 50%;
  overflow: hidden;
  position: relative;
}

/* Bordas arredondadas dependendo de qual lado a imagem está */
.why-card:nth-child(odd) .why-img-wrapper {
  border-radius: 0 40px 40px 0;
}
.why-card:nth-child(even) .why-img-wrapper {
  border-radius: 40px 0 0 40px;
}

.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(
    1.2
  ); /* Começa com zoom para o GSAP tirar o zoom no scroll */
  will-change: transform;
}

/* Lado do Texto */
.why-text-wrapper {
  flex: 1;
  width: 50%;
  padding: 0 8%; /* Muito respiro para dar sensação de luxo */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-number {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 600;
  color: rgba(45, 176, 177, 0.2); /* Turquesa com muita transparência */
  margin-bottom: -20px; /* Sobrepõe levemente com o título */
  z-index: 0;
}

.why-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1.1;
  color: var(--brand-brown);
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.why-desc {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 90%;
}

/* Mobile */
@media (max-width: 1024px) {
  .why-main-title {
    font-size: 3rem;
  }

  .why-card,
  .why-card:nth-child(even) {
    flex-direction: column; /* No celular, empilha tudo */
    min-height: auto;
    padding: 40px 5%;
    gap: 30px;
  }

  .why-img-wrapper {
    width: 100%;
    height: 50vh;
    border-radius: 24px !important; /* Arredonda todos os cantos no mobile */
  }

  .why-text-wrapper {
    width: 100%;
    padding: 0;
    text-align: center;
    align-items: center;
  }

  .why-number {
    font-size: 4rem;
    margin-bottom: -10px;
  }
  .why-title {
    font-size: 2.5rem;
  }
  .why-desc {
    font-size: 1.1rem;
  }
}

/* ================= SEÇÃO 5 ================= */
.menu-section {
  background-color: var(--brand-brown);
  color: var(--bg-light);
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.menu-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 5%;
}

.menu-main-title {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 1.1;
  color: var(--bg-light);
}

.menu-main-title em {
  font-style: italic;
  color: var(--brand-peach);
}

/* Carrossel Infinito (Marquee) */
.menu-marquee-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 60px 0;
  pointer-events: none; /* Deixa não interativo */
}

.menu-marquee-track {
  display: flex;
  gap: 30px;
  padding-right: 30px; /* Espaço para o loop não colar */
  will-change: transform;
}

.menu-marquee-track img {
  height: 250px;
  width: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Grid do Cardápio */
.menu-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas */
  gap: 30px;
  align-items: start;
}

/* O primeiro card (Finger Foods) ocupa 2 colunas para não ficar espremido */
.menu-category.span-2 {
  grid-column: span 2;
}

.menu-category {
  background-color: rgba(253, 251, 247, 0.03);
  border: 1px solid rgba(253, 251, 247, 0.1);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.menu-category:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 176, 177, 0.4);
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(253, 251, 247, 0.1);
  padding-bottom: 15px;
}

.cat-icon {
  font-size: 1.8rem;
}

.cat-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--brand-peach);
  font-weight: 600;
}

.cat-list {
  list-style: none;
}

.cat-list li {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(253, 251, 247, 0.8);
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

/* Bolinha estilizada da lista */
.cat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--brand-teal);
  border-radius: 50%;
}

/* Rodapé de Informações (Pills) */
.menu-info-footer {
  max-width: 1200px;
  margin: 60px auto 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.info-pill {
  background-color: rgba(45, 176, 177, 0.1);
  border: 1px solid rgba(45, 176, 177, 0.3);
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-pill .icon {
  font-size: 1.3rem;
}

.info-pill p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--bg-light);
}

.info-pill p strong {
  color: var(--brand-peach);
  font-weight: 600;
}

/* Mobile */
@media (max-width: 1024px) {
  .menu-main-title {
    font-size: 3rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  } /* Cai pra 1 coluna no celular */
  .menu-category.span-2 {
    grid-column: span 1;
  }
  .menu-marquee-track img {
    height: 200px;
    width: 280px;
  }
  .menu-info-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .info-pill {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 20px;
  }
}

/* ================= SEÇÃO 6 (FORMULÁRIO) ================= */

/* ===== RESET WPFORMS ===== */
.wpforms-container {
  width: 100%;
}

.wpforms-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* INPUTS */
.wpforms-form input,
.wpforms-form select,
.wpforms-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

/* FOCUS */
.wpforms-form input:focus,
.wpforms-form select:focus,
.wpforms-form textarea:focus {
  border-color: #000;
}

/* LABEL */
.wpforms-form label {
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

/* BOTÃO */
.wpforms-submit {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.wpforms-submit:hover {
  opacity: 0.9;
}

.contact-section {
  background-color: var(--bg-light);
  padding: 120px 0;
  width: 100%;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* Lado Textos */
.contact-text-side {
  flex: 1;
  position: sticky;
  top: 100px;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--brand-brown);
  margin-bottom: 30px;
}

.contact-title em {
  font-style: italic;
  color: var(--brand-teal);
}

.contact-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 90%;
}

.contact-highlight {
  margin-top: 40px;
  background-color: #f5f1e9;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 4px solid var(--brand-teal);
}

.contact-highlight .icon {
  font-size: 1.5rem;
}

.highlight-text strong {
  font-size: 1.2rem;
  color: var(--brand-brown);
  display: block;
  margin-bottom: 10px;
}

.highlight-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* Lado Formulário */
.contact-form-side {
  flex: 1.2;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(59, 35, 19, 0.08);
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.full-width {
  width: 100%;
}
.half-width {
  width: 50%;
}

.custom-form label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-brown);
}

/* Estilo Base dos Inputs */
.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="tel"],
.custom-form input[type="number"],
.custom-form input[type="date"],
.custom-form select,
.custom-form textarea {
  width: 100%;
  padding: 15px 20px;
  background-color: #fdfbf7;
  border: 1px solid rgba(59, 35, 19, 0.15);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 4px rgba(45, 176, 177, 0.1);
  background-color: #ffffff;
}

/* Campo da Bandeirinha */
.input-with-flag {
  position: relative;
  display: flex;
  align-items: center;
}
.input-with-flag .flag {
  position: absolute;
  left: 15px;
  font-size: 1.2rem;
  pointer-events: none;
}
.input-with-flag input {
  padding-left: 45px !important;
}

/* Checkbox */
.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  margin-top: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  accent-color: var(--brand-teal);
}

.checkbox-group label {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

/* Botão do Form - AGORA ROBUSTO E IMPONENTE */
.custom-form .cta-button.form-btn {
  width: 100%; /* Força largura total */
  margin-top: 30px;
  background-color: var(--brand-brown);
  color: var(--brand-peach);
  border: none;
  cursor: pointer;
  font-size: 1.3rem; /* Título maior */
  font-weight: 600;
  text-align: center;
  align-self: center; /* Centraliza no eixo Flex, mas width: 100% preenche */

  /* Espessura foda (aumentei consideravelmente o padding vertical) */
  padding: 1.4rem 2.8rem;
  border-radius: 50px;

  box-shadow: 0 10px 25px rgba(59, 35, 19, 0.15);
}

.custom-form .cta-button.form-btn:hover {
  background-color: var(--brand-teal);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(45, 176, 177, 0.4);
}

/* Mobile */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
  .contact-text-side {
    position: static;
  }
  .contact-form-side {
    padding: 30px 20px;
    width: 100%;
  }
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .half-width {
    width: 100%;
  }
}

/* ================= SEÇÃO 7 (FAQ) ================= */
.faq-section {
  background-color: var(--brand-brown); /* Fundo escuro para contraste */
  padding: 100px 0;
  width: 100%;
}

.faq-container {
  max-width: 800px; /* Mais estreito para facilitar a leitura */
  margin: 0 auto;
  padding: 0 5%;
}

.faq-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--bg-light);
  text-align: center;
  margin-bottom: 60px;
}

.faq-title em {
  font-style: italic;
  color: var(--brand-peach);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(253, 251, 247, 0.15); /* Linha divisória sutil */
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bg-light);
  margin: 0;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.faq-icon {
  font-size: 1.8rem;
  color: var(--brand-teal);
  font-weight: 300;
  transition: transform 0.4s ease;
  line-height: 1;
}

/* O segredo da animação de abrir/fechar */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0, 1, 0, 1),
    padding 0.4s ease;
}

.faq-answer p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(253, 251, 247, 0.7);
  margin: 0;
  padding-bottom: 0;
}

/* Estado Ativo (Quando o usuário clica) */
.faq-item.is-open .faq-question h3 {
  color: var(--brand-peach); /* Muda a cor da pergunta */
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg); /* Transforma o "+" em um "x" */
}

.faq-item.is-open .faq-answer {
  max-height: 500px; /* Abre o espaço para o texto */
  transition:
    max-height 0.5s ease-in-out,
    padding 0.5s ease;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 25px; /* Adiciona respiro embaixo do texto */
}

/* Mobile */
@media (max-width: 1024px) {
  .faq-title {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
  .faq-question h3 {
    font-size: 1.1rem;
  }
}

/* ================= SEÇÃO 8 (CTA IMPACTANTE) ================= */
.final-cta-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  /*Padding robusto para garantir respiro e visibilidade do botão*/
  padding: 100px 0 140px 0;
}

.cta-bg-parallax {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 0;
}

.cta-bg-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(59, 35, 19, 0.7) 0%,
    rgba(59, 35, 19, 0.95) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  /* Centraliza os filhos horizontalmente na coluna */
  align-items: center;
  justify-content: center;
}

.cta-final-title {
  font-family: "Playfair Display", serif;
  font-size: 4.8rem;
  line-height: 1.1;
  color: var(--bg-light);
  margin-bottom: 25px;
  text-wrap: balance;
  /* Centraliza o texto nativamente */
  margin-left: auto;
  margin-right: auto;
}

.cta-final-title em {
  font-style: italic;
  color: var(--brand-peach);
}

.cta-final-desc {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(253, 251, 247, 0.9);
  margin-bottom: 60px;
  max-width: 90%;
  /* Centraliza o texto */
  margin-left: auto;
  margin-right: auto;
}

/* Mega Botão CTA - BLINDADO NO CENTRO */
.mega-btn {
  display: inline-flex; /* para alinhamento vertical dos itens internos */
  align-items: center; /* centraliza texto e seta verticalmente */
  justify-content: center; /* centraliza texto e seta horizontalmente dentro do botão */

  /* Centraliza o próprio botão em relação ao pai flex (cta-content) */
  align-self: center !important;
  margin-left: auto !important;
  margin-right: auto !important;

  font-size: 1.4rem;
  font-weight: 700;
  padding: 1.6rem 3.8rem;
  background-color: var(--brand-teal);
  color: #ffffff;
  box-shadow: 0 15px 45px rgba(45, 176, 177, 0.5);
  border: 2px solid transparent;
  border-radius: 50px;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

  /* Garante que ele comece visível antes de qualquer JS */
  opacity: 1;
  visibility: visible;
}

.mega-btn:hover {
  background-color: transparent;
  border-color: var(--brand-teal);
  color: var(--brand-teal);
  box-shadow:
    inset 0 0 15px rgba(45, 176, 177, 0.4),
    0 0 35px rgba(45, 176, 177, 0.7);
  transform: scale(1.05) translateY(-5px);
}

.mega-btn .arrow {
  transition: transform 0.3s ease;
  font-size: 1.5rem;
}

.mega-btn:hover .arrow {
  transform: translateX(10px);
}

@media (max-width: 1024px) {
  .final-cta-section {
    min-height: 60vh;
    padding: 60px 0 100px 0;
  }
  .cta-final-title {
    font-size: 2.8rem;
  }
  .cta-final-desc {
    font-size: 1.2rem;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .mega-btn {
    font-size: 1.1rem;
    padding: 1.3rem 2.5rem;
  }
}

/* ================= FOOTER ================= */
.main-footer {
    background-color: var(--brand-brown);
    color: var(--bg-light);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 196, 150, 0.1);
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.footer-logo img:hover {
    filter: grayscale(0);
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: rgba(253, 251, 247, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav a:hover {
    color: var(--brand-teal);
}

.footer-bottom {
    width: 100%;
    padding-top: 40px;
    border-top: 1px solid rgba(253, 251, 247, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy p {
    font-size: 0.85rem;
    color: rgba(253, 251, 247, 0.5);
}

.footer-credits p {
    font-size: 0.9rem;
    color: rgba(253, 251, 247, 0.8);
}

.footer-credits a {
    color: var(--brand-peach);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

/* Efeito de underline elegante no link da Make */
.footer-credits a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--brand-peach);
    transition: width 0.3s ease;
}

.footer-credits a:hover::after {
    width: 100%;
}

.footer-credits a:hover {
    color: #ffffff;
}

/* Mobile */
@media (max-width: 1024px) {
    .footer-nav { flex-direction: column; align-items: center; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* ===== FORMULÁRIO WPFORMS PRONTO ===== */

.contact-form-side .wpforms-container {
  width: 100%;
  margin: 0;
}

.contact-form-side .wpforms-container .wpforms-form {
  display: block;
}

.contact-form-side .wpforms-container .wpforms-field-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
}

.contact-form-side .wpforms-container .wpforms-field {
  width: 100%;
  padding: 0;
  margin: 0;
}

.contact-form-side .wpforms-container .wpforms-field.wpforms-one-half {
  width: calc(50% - 8px) !important;
  margin: 0 !important;
}

.contact-form-side .wpforms-container .wpforms-field.wpforms-one-half.wpforms-last {
  margin-right: 0 !important;
}

.contact-form-side .wpforms-container .wpforms-field-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-brown);
  margin-bottom: 8px;
}

.contact-form-side .wpforms-container input[type="text"],
.contact-form-side .wpforms-container input[type="email"],
.contact-form-side .wpforms-container input[type="tel"],
.contact-form-side .wpforms-container input[type="number"],
.contact-form-side .wpforms-container input[type="date"],
.contact-form-side .wpforms-container select,
.contact-form-side .wpforms-container textarea {
  width: 100% !important;
  min-height: 56px;
  padding: 15px 20px !important;
  background-color: #fdfbf7 !important;
  border: 1px solid rgba(59, 35, 19, 0.15) !important;
  border-radius: 12px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 1rem !important;
  color: var(--text-dark) !important;
  box-sizing: border-box;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.contact-form-side .wpforms-container textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form-side .wpforms-container input:focus,
.contact-form-side .wpforms-container select:focus,
.contact-form-side .wpforms-container textarea:focus {
  outline: none !important;
  border-color: var(--brand-teal) !important;
  box-shadow: 0 0 0 4px rgba(45, 176, 177, 0.1) !important;
  background-color: #ffffff !important;
}

.contact-form-side .wpforms-container .wpforms-field-description {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form-side .wpforms-container .wpforms-field-checkbox ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-form-side .wpforms-container .wpforms-field-checkbox li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}

.contact-form-side .wpforms-container .wpforms-field-checkbox input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--brand-teal);
  flex: 0 0 18px;
}

.contact-form-side .wpforms-container .wpforms-field-checkbox label,
.contact-form-side .wpforms-container .wpforms-field-checkbox ul li label {
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  line-height: 1.5;
  color: var(--text-muted) !important;
  margin: 0 !important;
}

.contact-form-side .wpforms-container .wpforms-submit-container {
  margin-top: 30px;
  padding: 0;
}

.contact-form-side .wpforms-container .wpforms-submit {
  width: 100% !important;
  margin: 0 !important;
  background-color: var(--brand-brown) !important;
  color: var(--brand-peach) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 1.4rem 2.8rem !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(59, 35, 19, 0.15);
  transition: all 0.3s ease !important;
}

.contact-form-side .wpforms-container .wpforms-submit:hover {
  background-color: var(--brand-teal) !important;
  color: #ffffff !important;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(45, 176, 177, 0.4);
}

.contact-form-side .wpforms-container .wpforms-error {
  font-size: 0.85rem !important;
  margin-top: 6px !important;
}

.contact-form-side .wpforms-container .wpforms-confirmation-container-full,
.contact-form-side .wpforms-container .wpforms-confirmation-container {
  background: #f5f1e9;
  border-left: 4px solid var(--brand-teal);
  border-radius: 12px;
  padding: 18px 20px;
  color: var(--brand-brown);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .contact-form-side .wpforms-container .wpforms-field.wpforms-one-half {
    width: 100% !important;
  }

  .contact-form-side .wpforms-container .wpforms-field-container {
    gap: 20px;
  }

  .contact-form-side .wpforms-container .wpforms-submit {
    font-size: 1.15rem !important;
    padding: 1.2rem 2rem !important;
  }
}

/* ===== FIX TEXTO BOTÃO CENTRALIZADO ===== */

.contact-form-side .wpforms-container .wpforms-submit {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 60px !important;
  line-height: normal !important;
  padding: 0 24px !important;
}