/* ============================================
   DIGITAL DETOX — Design Moderno / Editorial
   Revisão: tipografia 18px + UI/UX melhorias
   ============================================ */

:root {
  --black: #111111;
  --dark: #1a1a1a;
  --gray-800: #333333;
  --gray-600: #555555;
  --gray-400: #888888;
  --gray-200: #d4d4d4;
  --gray-100: #eeeeee;
  --off-white: #f5f3ef;
  --warm-bg: #f0ebe3;
  --white: #ffffff;
  --accent: #c8956c;
  --whatsapp: #25D366;

  --font-display: "lust", serif;
  --font-body: "poppins", sans-serif;

  --header-h: 80px;
  --radius: 16px;
  --radius-sm: 10px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 600; color: var(--dark); }

/* ---------- Utilitários ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

.section { padding: 140px 0; }
.section--dark { background: var(--dark); color: var(--gray-200); }
.section--dark strong { color: var(--white); }
.section--warm { background: var(--warm-bg); }

/* Tag / eyebrow */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.tag--light { color: var(--accent); }

/* Heading grande */
.heading-lg {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

.heading-lg--light { color: var(--white); }

/* Botão */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.3s, transform 0.2s;
  margin-top: 28px;
}

.btn:hover { background: var(--gray-800); transform: translateY(-2px); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-100);
}

/* Quando sobre o hero (textos brancos) */
.header:not(.header--scrolled) .nav__logo,
.header:not(.header--scrolled) .nav__link,
.header:not(.header--scrolled) .nav__cta {
  color: var(--white);
}

.header:not(.header--scrolled) .nav__toggle span {
  background: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 40px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-right: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--gray-600);
  transition: color 0.3s;
}

.nav__link:hover { color: var(--dark); }

.nav__cta {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  transition: background 0.3s, border-color 0.3s;
}

.header:not(.header--scrolled) .nav__cta {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

/* Esconde o CTA mobile no desktop, e vice-versa */
.nav__cta--mobile { display: none; }

.nav__cta:hover { background: var(--off-white); border-color: var(--gray-400); }
.header:not(.header--scrolled) .nav__cta:hover { background: rgba(255,255,255,0.3); }

.nav__toggle, .nav__close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: background 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.3s;
}

.hero__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.4);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SOBRE / OBJETIVO
   ============================================ */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre__text p {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.sobre__images {
  position: relative;
  height: 480px;
}

.sobre__img-main {
  width: 75%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

.sobre__img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* ============================================
   A VIVÊNCIA
   ============================================ */
.vivencia { background: var(--off-white); }

.vivencia__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.vivencia__desc {
  font-size: 1.1rem;
}

.vivencia__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.vivencia__card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: transform 0.3s;
}

.vivencia__card:hover { transform: translateY(-4px); }

.vivencia__card--offset { margin-top: 40px; }

.vivencia__card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.vivencia__card-info {
  padding: 24px;
}

.vivencia__card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.vivencia__card-info p {
  font-size: 1rem;
  opacity: 0.7;
}

/* ============================================
   O ESPAÇO
   ============================================ */
.espaco__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.espaco__header p {
  font-size: 1.1rem;
}

/* Carrossel */
.espaco__carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.espaco__track {
  display: flex;
  transition: transform 0.5s ease;
}

.espaco__slide {
  min-width: 100%;
}

.espaco__slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.espaco__prev,
.espaco__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  color: var(--dark);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: background 0.3s, color 0.3s, transform 0.25s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.espaco__prev { left: 20px; }
.espaco__next { right: 20px; }

.espaco__prev:hover,
.espaco__next:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
}

.espaco__prev:focus-visible,
.espaco__next:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.espaco__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.espaco__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}

.espaco__dot--active {
  background: var(--white);
}

/* ============================================
   COFFEE BREAK
   ============================================ */
.coffee__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.coffee__content p {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.coffee__features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coffee__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--gray-600);
}

.coffee__feature span {
  color: var(--accent);
  font-size: 0.75rem;
}

.coffee__feature p { margin: 0; }

.coffee__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 520px;
}

.coffee__img-1 {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.coffee__img-2,
.coffee__img-3 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ============================================
   QUEM SOMOS
   ============================================ */
.quem-somos__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.quem-somos__intro p {
  font-size: 1.1rem;
}

.quem-somos__people {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}

.quem-somos__founder,
.quem-somos__team {
  text-align: center;
}

.quem-somos__founder img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.quem-somos__team img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.quem-somos__founder h3,
.quem-somos__team h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}

.quem-somos__founder p,
.quem-somos__team p {
  font-size: 0.95rem;
  color: var(--gray-400);
}

/* ============================================
   INFORMAÇÕES
   ============================================ */
.informacoes { background: var(--off-white); }

.info__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.info__text p {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.info__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.info__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}

.info__row:last-child { border-bottom: none; }

.info__label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
}

.info__value {
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 400;
  text-align: right;
}

/* Bloco de datas (lista de edições do evento) */
.info__dates {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.info__date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Edição esgotada: texto cinza-claro. O risco é aplicado APENAS no
   .info__date-text, não no parent, para que a pílula não fique riscada. */
.info__date--soldout {
  color: var(--gray-400);
}

.info__date--soldout .info__date-text {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

/* Pílula base (Esgotado por padrão: cinza-claro discreta) */
.info__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Pílula "Últimas vagas" — variante de destaque (escura) */
.info__badge--last {
  background: var(--dark);
  color: var(--white);
}

.info__row--price {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  margin-top: 8px;
  border-bottom: none;
}

.info__row--price .info__value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dark);
}

.info__row--price .info__value small {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-400);
}

/* Nota explicativa abaixo do preço (doação a projetos humanitários) */
.info__note {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.5;
  text-align: center;
  margin-top: 14px;
  padding: 0 8px;
}

.info__note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.info__note a:hover { color: var(--dark); }

/* ============================================
   CTA FINAL
   ============================================ */
.cta {
  padding: 140px 0;
  text-align: center;
  background: var(--dark);
}

.cta__title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  max-width: 580px;
  margin: 0 auto 40px;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.cta__btn:hover { background: #1ebe5c; transform: translateY(-2px); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--gray-100);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
}

.footer__copy {
  font-size: 0.88rem;
  color: var(--gray-400);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__social {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.3s;
}

.footer__social:hover { color: var(--dark); }

/* ============================================
   NAV SUBMENU "Experiências"
   ============================================
   Reescrito do zero seguindo abordagem mobile-first:

   - Mobile (default): submenu como acordeão inline,
     controlado pela classe .nav__item--expanded adicionada
     via JavaScript no clique do toggle.

   - Desktop (>= 601px): submenu vira dropdown absolute
     posicionado abaixo do item-pai, mostrado no hover/focus.

   Princípios desta versão:
   - Mobile vem primeiro (default), desktop só adiciona
     via @media (min-width: 601px). Sem propriedades
     "compartilhadas" que precisam ser sobrescritas.
   - Sem :has() — usa classe explícita do JS.
   - Sem max-height + transition + overflow:hidden (que
     bugavam em iOS Safari real).
   - Sem opacity/visibility para esconder; apenas display: none.
*/

/* ===== MOBILE (default) ===== */

.nav__item--has-submenu {
  width: 100%;
  text-align: center;
}

.nav__link--with-submenu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nav__chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav__item--has-submenu.nav__item--expanded .nav__chevron {
  transform: rotate(180deg);
}

/* Submenu escondido por padrão (mobile + desktop) */
.nav__submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

/* Mobile: submenu aberto via classe JS */
.nav__item--has-submenu.nav__item--expanded .nav__submenu {
  display: block;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.nav__submenu li {
  display: block;
  list-style: none;
  text-align: center;
  padding: 6px 0;
}

.nav__sublink {
  display: inline-block;
  padding: 4px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 0.3px;
  text-align: center;
  transition: color 0.2s;
}

.nav__sublink:hover { color: var(--dark); }

/* ===== DESKTOP (>= 601px) ===== */
@media (min-width: 601px) {
  /* Container do item com submenu: vira posicionado para
     ancorar o dropdown absolute */
  .nav__item--has-submenu {
    position: relative;
    width: auto;
    text-align: left;
  }

  /* Área invisível que cobre o gap entre o item-pai e o dropdown.
     Sem isso, o mouse "sai" do hover ao atravessar o espaço de 8px
     entre o texto "Experiências" e o dropdown, fechando o submenu. */
  .nav__item--has-submenu::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
  }

  .nav__link--with-submenu {
    gap: 6px;
  }

  /* Chevron rotaciona no hover/focus (desktop não usa .nav__item--expanded) */
  .nav__item--has-submenu:hover .nav__chevron,
  .nav__item--has-submenu:focus-within .nav__chevron {
    transform: rotate(180deg);
  }

  /* Submenu vira dropdown absolute */
  .nav__submenu {
    /* display: none herdado do default */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    text-align: left;
    z-index: 1001;
  }

  /* Hover/focus-within mostra o dropdown */
  .nav__item--has-submenu:hover .nav__submenu,
  .nav__item--has-submenu:focus-within .nav__submenu {
    display: block;
  }

  .nav__submenu li {
    display: block;
    text-align: left;
    padding: 0;
  }

  .nav__sublink {
    display: block;
    padding: 10px 24px;
    font-size: 0.88rem;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
  }

  .nav__sublink:hover {
    background: var(--off-white);
    color: var(--dark);
  }
}

/* ============================================
   EXPERIÊNCIAS — SEÇÃO NA HOME
   ============================================ */
.experiencias { background: var(--white); }

.experiencias__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.experiencias__desc { font-size: 1.1rem; }

.experiencias__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.experiencias__card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: transform 0.3s, box-shadow 0.3s;
  color: inherit;
}

.experiencias__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.experiencias__card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.experiencias__card-info {
  padding: 28px 24px;
}

.experiencias__card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.experiencias__card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.experiencias__card-info p {
  font-size: 0.98rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.5;
}

.experiencias__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.3px;
  transition: gap 0.3s;
}

.experiencias__card:hover .experiencias__card-cta {
  gap: 12px;
}

/* ============================================
   PÁGINAS FILHAS DE EXPERIÊNCIAS
   ============================================ */
/* Em páginas filhas o header sempre tem fundo branco (não há hero escuro alternando) */
.exp-page .header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-100);
}

.exp-page .header .nav__logo,
.exp-page .header .nav__link,
.exp-page .header .nav__cta {
  color: var(--dark);
}

.exp-page .header .nav__cta {
  background: var(--white);
  border-color: var(--gray-200);
}

.exp-page .header .nav__toggle span {
  background: var(--dark);
}

/* Hero da página filha */
.exp-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-h);
}

.exp-hero__bg {
  position: absolute;
  inset: 0;
}

.exp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.exp-hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 720px;
  text-align: center;
}

.exp-hero__content .tag { color: var(--accent); }

.exp-hero__title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 16px;
}

.exp-hero__subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.exp-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.3s;
}

.exp-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Seções de conteúdo */
.exp-section { padding: 100px 0; }
.exp-section--warm { background: var(--warm-bg); }
.exp-section--off { background: var(--off-white); }

.exp-block {
  max-width: 720px;
  margin: 0 auto;
}

.exp-block .tag { display: inline-block; }

.exp-block p {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* Lista com bullets sutis (traço accent) */
.exp-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.exp-list li {
  padding: 14px 0 14px 28px;
  position: relative;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--gray-100);
}

.exp-list li:last-child { border-bottom: none; }

.exp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  width: 14px;
  height: 1px;
  background: var(--accent);
}

/* Lista numerada de passos */
.exp-steps {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  counter-reset: step;
}

.exp-steps li {
  padding: 18px 0 18px 56px;
  position: relative;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--gray-100);
}

.exp-steps li:last-child { border-bottom: none; }

.exp-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-steps li strong { color: var(--dark); font-weight: 600; }

/* Bloco "dois caminhos" do Aniversário */
.exp-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.exp-path {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.exp-path__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.exp-path h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.exp-path p {
  font-size: 1rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* Bloco da causa */
.exp-cause {
  text-align: center;
  padding: 60px 32px;
  background: var(--off-white);
  border-radius: var(--radius);
  max-width: 720px;
  margin: 0 auto;
}

.exp-cause p {
  font-size: 1.15rem;
  margin: 0;
}

.exp-cause a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.exp-cause a:hover { color: var(--dark); }

/* Responsivo: experiências e páginas filhas */
@media (max-width: 900px) {
  .experiencias__gallery { grid-template-columns: 1fr 1fr; }
  .experiencias__card img { height: 240px; }

  .exp-hero { height: 50vh; min-height: 360px; }
  .exp-hero__title { font-size: 3.4rem; }
  .exp-hero__subtitle { font-size: 1.05rem; }
  .exp-section { padding: 70px 0; }
  .exp-paths { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .experiencias__gallery { grid-template-columns: 1fr; }
  .experiencias__card img { height: 220px; }

  .exp-hero__title { font-size: 2.6rem; }
  .exp-section { padding: 56px 0; }
  .exp-list li { font-size: 1rem; }
  .exp-steps li { padding-left: 50px; font-size: 1rem; }
  .exp-steps li::before { width: 32px; height: 32px; font-size: 1rem; }
  .exp-cause { padding: 40px 24px; }
  .exp-cause p { font-size: 1rem; }

  /* O submenu mobile agora é definido no bloco principal
     "NAV SUBMENU" (mobile-first), sem precisar de overrides aqui. */
}

/* ============================================
   INSTAGRAM
   ============================================ */
.instagram { background: var(--white); }

.instagram__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.instagram__desc { font-size: 1.1rem; }

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-height: 200px;
}

.instagram__item {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--off-white);
  transition: transform 0.3s, box-shadow 0.3s;
}

.instagram__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram__item:hover img { transform: scale(1.04); }

/* Badge "Reel" no canto pra posts de vídeo */
.instagram__type {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

/* Botão "Seguir" abaixo do grid */
.instagram__cta {
  text-align: center;
  margin-top: 48px;
}

.instagram__follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.instagram__follow:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

/* Estado de erro/fallback caso o fetch falhe */
.instagram__error {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1rem;
  color: var(--gray-600);
  padding: 40px 0;
}

.instagram__error a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .instagram__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .instagram__cta { margin-top: 32px; }
}

/* ============================================
   PÁGINA 404
   ============================================ */
.not-found {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: var(--off-white);
  margin-top: var(--header-h);
}

.not-found__content {
  max-width: 560px;
  text-align: center;
  margin: 0 auto;
}

.not-found__title {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin: 16px 0 24px;
}

.not-found__content p {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.not-found__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.not-found__btn:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .not-found { padding: 60px 0; }
  .not-found__title { font-size: 2.4rem; }
  .not-found__content p { font-size: 1rem; }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--whatsapp);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s;
}

.whatsapp-float:hover { transform: scale(1.08); }

/* ============================================
   FADE-IN
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 900px) {
  .section { padding: 90px 0; }

  .heading-lg { font-size: 2.6rem; }

  .hero__title { font-size: 4.2rem; }
  .hero__content { padding-bottom: 0; }

  .sobre__grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre__images { height: 360px; }
  .sobre__img-main { width: 80%; height: 300px; }
  .sobre__img-small { width: 50%; height: 200px; }

  .vivencia__gallery { grid-template-columns: 1fr 1fr; }
  .vivencia__card--offset { margin-top: 0; }

  .espaco__slide img { height: 400px; }

  .coffee__grid { grid-template-columns: 1fr; gap: 40px; }
  .coffee__images { height: 360px; }

  .quem-somos__people { grid-template-columns: 1fr 1fr; }
  .quem-somos__founder img,
  .quem-somos__team img { height: 280px; }

  .info__layout { grid-template-columns: 1fr; gap: 40px; }

  .cta__title { font-size: 2.4rem; }
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }

  .hero__title { font-size: 3.2rem; }
  .hero__subtitle { font-size: 1rem; }

  .heading-lg { font-size: 2.2rem; }

  /* Header mobile. Antes usava justify-content: center, mas quando
     o submenu expandia o conteúdo crescia além de 100vh e o botão
     "Inscreva-se" caía fora da tela. Agora começa de cima com
     padding generoso e overflow-y: auto para permitir scroll
     quando necessário. */
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    padding: 80px 20px 48px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
  }

  .nav__links--open { right: 0; }

  /* Garante que os links do menu mobile são escuros mesmo sobre o hero */
  .header .nav__links--open .nav__link {
    color: var(--dark);
  }

  .header .nav__links--open .nav__cta--mobile {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
  }

  .nav__link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--dark);
  }

  .nav__toggle { display: block; z-index: 1003; }

  .nav__close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    color: var(--dark);
    z-index: 1003;
  }

  /* Esconde o CTA desktop, mostra o mobile dentro do menu */
  .nav__cta--desktop { display: none; }

  .nav__cta--mobile {
    display: inline-flex;
    margin-top: 12px;
    font-size: 1rem;
    padding: 14px 32px;
    background: var(--dark);
    color: var(--white) !important;
    border-color: var(--dark);
  }

  /* Layouts */
  .sobre__images { height: 300px; }
  .sobre__img-main { width: 85%; height: 260px; }
  .sobre__img-small { width: 55%; height: 180px; }

  .vivencia__gallery { grid-template-columns: 1fr; }

  .espaco__slide img { height: 280px; }
  .espaco__prev, .espaco__next { width: 40px; height: 40px; font-size: 1.3rem; }
  .espaco__prev { left: 10px; }
  .espaco__next { right: 10px; }

  .coffee__images {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .coffee__img-1 { grid-row: auto; height: 280px; }
  .coffee__img-2, .coffee__img-3 { height: 220px; }

  .quem-somos__people { grid-template-columns: 1fr; }
  .quem-somos__founder img,
  .quem-somos__team img { height: 240px; }

  .info__card { padding: 28px; }
  .info__row { flex-direction: column; gap: 4px; }
  .info__value { text-align: left; }
  .info__dates { align-items: flex-start; }

  .cta { padding: 80px 0; }
  .cta__title { font-size: 2rem; }
  .cta__btn { padding: 16px 32px; }

  .footer { padding: 40px 0; }
  .footer__inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================
   PÁGINAS DE FORMULÁRIO E LEGAIS
   ============================================
   Cobre /inscricao, /pagamento, /politica-privacidade, /termos.
   Body com classe .form-page ou .legal-page.
*/

/* Base body para essas páginas */
.form-page,
.legal-page {
  background: var(--off-white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header reduzido (só logo central, sem menu) */
.form-header {
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
  padding: 22px 0;
}

.form-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-header__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
}

/* Main */
.form-main,
.legal-main {
  flex: 1;
  padding: 80px 0 100px;
}

.form-container { max-width: 640px; }
.legal-container { max-width: 720px; }

/* Intro do formulário */
.form-intro {
  text-align: center;
  margin-bottom: 48px;
}

.form-intro p {
  font-size: 1.05rem;
  margin-top: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FORMULÁRIO
   ============================================ */
.form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.form__field {
  margin-bottom: 22px;
  position: relative;
}

.form__field--hidden { display: none; }

.form__field > label,
.form__dates legend {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form__field input[type="text"],
.form__field input[type="email"],
.form__field input[type="tel"],
.form__field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form__field input:focus,
.form__field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.12);
}

.form__field input.form__input--error,
.form__field select.form__input--error {
  border-color: #c0392b;
}

.form__error {
  display: block;
  font-size: 0.82rem;
  color: #c0392b;
  margin-top: 6px;
  min-height: 1.1em;
}

/* Honeypot (oculto fora da viewport) */
.form__honeypot {
  position: absolute;
  left: -10000px;
  top: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Datas (radio cards) */
.form__dates {
  border: none;
  padding: 0;
  margin-bottom: 22px;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.date-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.1s;
  position: relative;
  text-align: center;
  min-height: 96px;
  -webkit-tap-highlight-color: transparent;
}

.date-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Hover apenas em dispositivos com ponteiro fino (desktop) — evita
   estados visuais "presos" em mobile após tap. */
@media (hover: hover) {
  .date-card:hover:not(.date-card--soldout) {
    border-color: var(--dark);
  }
}

/* Feedback de toque/pressed em mobile */
.date-card:active:not(.date-card--soldout) {
  transform: scale(0.985);
}

/* Selecionada (usa :has, suportado em Safari 15.4+ / Chrome 105+) */
.date-card:has(input:checked) {
  border-color: var(--dark);
  background: var(--dark);
}

.date-card:has(input:checked) .date-card__title { color: var(--white); }

.date-card:has(input:checked) .date-card__badge--last {
  background: var(--white);
  color: var(--dark);
}

/* Esgotada */
.date-card--soldout {
  cursor: not-allowed;
  opacity: 0.5;
}

.date-card--soldout .date-card__title {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  color: var(--gray-400);
}

/* Título da data: Poppins (font-body) ao invés de Lust (font-display).
   Lust tem traços muito finos e fica pouco legível em fundos escuros;
   Poppins 500 garante legibilidade em qualquer estado (normal/selected). */
.date-card__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.date-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.date-card__badge--last {
  background: var(--dark);
  color: var(--white);
  transition: background 0.2s, color 0.2s;
}

/* Checkboxes */
.form__checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gray-600);
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0;
  text-transform: none;
}

.form__checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--dark);
  cursor: pointer;
}

.form__checkbox a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__checkbox a:hover { color: var(--dark); }

/* Submit */
.form__submit { margin-top: 28px; }

.form__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
  padding: 18px 36px;
  font-size: 1rem;
  position: relative;
  border: none;
  cursor: pointer;
}

.form__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form__btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: form-spin 0.8s linear infinite;
}

.form__btn--loading .form__btn-text { opacity: 0; }

.form__btn--loading .form__btn-spinner {
  display: block;
  position: absolute;
}

@keyframes form-spin {
  to { transform: rotate(360deg); }
}

.form__submit-error {
  margin-top: 16px;
  padding: 14px 16px;
  background: #fdeded;
  border-radius: var(--radius-sm);
  color: #c0392b;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.5;
}

.form__legal {
  font-size: 0.82rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 22px;
  line-height: 1.55;
}

.form__legal a {
  color: var(--gray-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__legal a:hover { color: var(--dark); }

/* ============================================
   TELA DE SUCESSO + PÁGINA DE PAGAMENTO
   ============================================ */
.success {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.success .tag { color: var(--accent); }

.success__intro {
  font-size: 1.05rem;
  margin: 16px auto 40px;
  max-width: 480px;
  line-height: 1.6;
}

/* Bloco do Pix */
.pix {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin: 0 auto 40px;
  max-width: 480px;
}

.pix__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pix__qr canvas {
  display: block;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
}

.pix__qr-note {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin: 0;
}

.pix__code-box {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 20px;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
}

.pix__code-label {
  font-size: 0.7rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin: 0 0 10px;
}

.pix__code {
  display: block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.82rem;
  color: var(--dark);
  background: var(--white);
  padding: 12px;
  border-radius: 6px;
  border: 1px solid var(--gray-100);
  word-break: break-all;
  line-height: 1.5;
  margin-bottom: 12px;
}

.pix__copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  padding: 9px 16px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pix__copy-btn:hover {
  border-color: var(--dark);
  color: var(--dark);
}

.pix__copy-btn--success {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 149, 108, 0.06);
}

/* CTA WhatsApp na success */
.success__cta {
  margin: 32px auto;
  max-width: 480px;
}

.success__cta p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

.success__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}

.success__whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
}

.success__note {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-top: 32px;
  font-style: italic;
  line-height: 1.55;
}

/* ============================================
   PÁGINAS LEGAIS
   ============================================ */
.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-header h1 { margin-top: 12px; }

.legal-meta {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 8px;
}

.legal-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.legal-content > p:first-child {
  font-size: 1.05rem;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 24px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  margin: 40px 0 16px;
  line-height: 1.3;
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-content li {
  list-style: disc;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover { color: var(--dark); }

.legal-content strong {
  color: var(--dark);
  font-weight: 600;
}

/* Responsivo: form e legal pages */
@media (max-width: 600px) {
  .form-main,
  .legal-main {
    padding: 40px 0 60px;
  }

  .form,
  .success {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .legal-content {
    padding: 32px 24px;
    border-radius: 12px;
  }

  .form-intro,
  .legal-header {
    margin-bottom: 32px;
  }

  .dates-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .date-card {
    flex-direction: row;
    justify-content: space-between;
    padding: 14px 16px;
    min-height: 0;
    text-align: left;
  }

  .date-card__title { font-size: 1rem; }

  .pix { gap: 24px; }

  .pix__qr canvas {
    max-width: 240px;
    width: 100%;
    height: auto;
  }

  .pix__code { font-size: 0.74rem; }

  .legal-content h2 { font-size: 1.3rem; }
}
