/* ============================================================
   ANA PAULA CABRERA — VERSÃO 3 — MOBILE FIRST

   Ordem do CSS:
   1. Variáveis e reset          ← base = smartphone
   2. Tipografia e utilitários
   3. Botões e ícones
   4. Cabeçalho e menu
   5. Seções (1 coluna)
   6. Rodapé e banners
   7. Reveal
   8. Tablet  (≥ 640px)
   9. Desktop (≥ 960px)
  10. Prefers-reduced-motion
   ============================================================ */

/* ============================================================
   1. VARIÁVEIS E RESET
   ============================================================ */

:root {
  --rosa: #c66f80;
  --rosa-fundo: #f8e7ed;
  --oliva: #c9cba4;
  --verde: #4b6645;

  --rosa-escuro: #a85466;
  --rosa-claro: #f3d5de;
  --oliva-claro: #e4e7d4;
  --verde-escuro: #3a5235;

  --creme: #fffaf8;
  --texto: #2f2a2c;
  --texto-soft: #6a5a5e;
  --linha: #e9cfd6;

  --fonte-display: "Fraunces", Georgia, serif;
  --fonte-corpo: "Figtree", system-ui, sans-serif;
  --fonte-detalhe: "Great Vibes", cursive;

  --max: 1080px;
  --header-h: 68px;
  --toque: 44px;
  --transicao: 0.28s ease;
  --sombra: 0 10px 28px rgba(75, 102, 69, 0.08);
  --sombra-rosa: 0 10px 28px rgba(198, 111, 128, 0.22);
  --raio: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--texto);
  background: var(--creme);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

/* ============================================================
   2. TIPOGRAFIA E UTILITÁRIOS
   ============================================================ */

.rotulo {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 0.55rem;
}

.rotulo::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 2px;
  margin-top: 0.4rem;
  background: linear-gradient(90deg, var(--rosa), var(--oliva));
  border-radius: 2px;
}

.rotulo--claro {
  color: rgba(255, 255, 255, 0.9);
}

.rotulo--claro::after {
  background: rgba(255, 255, 255, 0.45);
}

.titulo {
  font-family: var(--fonte-display);
  font-size: clamp(1.7rem, 6.5vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.titulo em {
  font-style: italic;
  font-weight: 400;
  color: var(--rosa);
}

.titulo--centro {
  text-align: center;
}

.secao {
  position: relative;
  padding: 3.25rem 0 4.25rem;
}

.secao--creme {
  background: var(--creme);
}

.secao--rosa {
  background: var(--rosa-fundo);
}

.secao--oliva {
  background: linear-gradient(
    180deg,
    var(--oliva-claro) 0%,
    var(--oliva-claro) 12%,
    var(--rosa-fundo) 75%
  );
}

/* Ondas na troca de seção — a cor segue a seção de baixo */
.onda {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  z-index: 4;
  pointer-events: none;
  line-height: 0;
  overflow: hidden;
}

.onda svg {
  display: block;
  width: 100%;
  height: 72px;
  margin: 0;
  /* O path fecha abaixo da curva para tapar o risco de 1px no zoom */
}

.hero,
.secao,
.convite {
  margin-bottom: -10px;
}

.onda--creme .onda__corpo {
  fill: var(--creme);
}

.onda--creme .onda__sombra {
  fill: var(--oliva);
  opacity: 0.28;
}

.onda--rosa .onda__corpo {
  fill: var(--rosa-fundo);
}

.onda--rosa .onda__sombra {
  fill: var(--rosa);
  opacity: 0.28;
}

.onda--oliva .onda__corpo {
  fill: var(--oliva-claro);
}

.onda--oliva .onda__sombra {
  fill: var(--rosa);
  opacity: 0.22;
}

.onda--verde .onda__corpo {
  fill: var(--verde-escuro);
}

.onda--verde .onda__sombra {
  fill: var(--rosa);
  opacity: 0.35;
}

/* Duas seções creme seguidas: faixa rosa + oliva */
.onda--acento .onda__corpo {
  fill: var(--creme);
}

.onda--acento .onda__sombra {
  fill: var(--rosa);
  opacity: 0.32;
}

.secao__cab {
  margin-bottom: 1.75rem;
}

.secao__cab--centro {
  text-align: center;
}

.secao__cab--centro .rotulo {
  display: inline-block;
}

.secao__ornamento {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.9rem;
  max-width: 12rem;
}

.secao__cab--centro .secao__ornamento {
  margin-left: auto;
  margin-right: auto;
}

.secao__ornamento span {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--linha),
    var(--rosa-claro),
    transparent
  );
}

.secao__ornamento .icone {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--rosa);
  opacity: 0.7;
  flex: 0 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--linha);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--rosa-escuro);
  margin-bottom: 1rem;
}

.badge .icone {
  color: var(--rosa);
}

/* ============================================================
   3. BOTÕES E ÍCONES
   ============================================================ */

.botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: var(--toque);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  transition:
    transform var(--transicao),
    background var(--transicao),
    box-shadow var(--transicao),
    color var(--transicao),
    filter var(--transicao);
}

.botao:active {
  transform: scale(0.98);
}

.botao--rosa {
  background: var(--rosa);
  color: #fff;
  box-shadow: var(--sombra-rosa);
}

.botao--rosa:active {
  background: var(--rosa-escuro);
}

.botao--linha {
  background: transparent;
  color: var(--verde);
  border: 1.5px solid var(--verde);
}

.botao--linha:active {
  background: var(--verde);
  color: #fff;
}

.botao--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #c66f80 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(221, 42, 123, 0.28);
}

.botao--instagram:active {
  filter: brightness(0.95);
}

.botao--creme {
  background: var(--creme);
  color: var(--verde);
}

.botao--creme:active {
  background: #fff;
}

.botao--sm {
  min-height: var(--toque);
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

.icone {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 1.6;
  flex-shrink: 0;
  vertical-align: middle;
}

.icone--xs {
  width: 0.9rem;
  height: 0.9rem;
}

.icone--sm {
  width: 1rem;
  height: 1rem;
}

/* Logo WhatsApp (preenchido; o Lucide não tem essa marca) */
.icone--whatsapp {
  fill: currentColor;
  stroke: none;
}

@media (hover: hover) and (pointer: fine) {
  .botao--rosa:hover {
    background: var(--rosa-escuro);
    transform: translateY(-2px);
  }

  .botao--linha:hover {
    background: var(--verde);
    color: #fff;
  }

  .botao--instagram:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
  }

  .botao--creme:hover {
    background: #fff;
    transform: translateY(-2px);
  }

  .formulario__enviar:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.55);
  }

  .convite__whatsapp:hover {
    background: #fff;
    box-shadow: 0 0 16px rgba(255, 250, 248, 0.35);
  }

  .pilula:hover {
    background: var(--rosa-claro);
    border-color: var(--rosa);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(198, 111, 128, 0.14);
  }

  .painel.visivel:hover {
    transform: translateX(8px);
  }

  .passo.visivel:hover {
    z-index: 2;
    transform: scale(1.02);
    box-shadow: var(--sombra-rosa);
  }
}

:focus-visible {
  outline: 2px solid var(--rosa);
  outline-offset: 3px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================================
   4. CABEÇALHO E MENU (mobile)
   ============================================================ */

.barra-progresso {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 100;
  background: linear-gradient(90deg, var(--rosa), var(--oliva));
  pointer-events: none;
}

.cabecalho {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  background: rgba(255, 250, 248, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow var(--transicao),
    border-color var(--transicao);
}

.cabecalho.rolado {
  border-bottom-color: var(--linha);
  box-shadow: 0 6px 20px rgba(47, 42, 44, 0.06);
}

.cabecalho__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  height: var(--header-h);
}

.cabecalho__marca {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.cabecalho__marca img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.cabecalho__nome {
  display: flex;
  flex-direction: column;
  font-family: var(--fonte-display);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.15;
  min-width: 0;
}

.cabecalho__nome small {
  font-family: var(--fonte-corpo);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--texto-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Nav e CTA do header: só no desktop */
.cabecalho__nav,
.cabecalho__cta {
  display: none;
}

.cabecalho__burger {
  width: var(--toque);
  height: var(--toque);
  display: grid;
  place-content: center;
  gap: 5px;
  flex-shrink: 0;
  border-radius: 0.6rem;
}

.cabecalho__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--texto);
  border-radius: 2px;
  transition:
    transform var(--transicao),
    opacity var(--transicao);
}

.cabecalho__burger.ativo span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.cabecalho__burger.ativo span:nth-child(2) {
  opacity: 0;
}

.cabecalho__burger.ativo span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-mobile {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 85;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.15rem 2rem;
  background: rgba(255, 250, 248, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(100%);
  visibility: hidden;
  transition:
    transform var(--transicao),
    visibility var(--transicao);
  overflow-y: auto;
}

.menu-mobile.aberto {
  transform: translateX(0);
  visibility: visible;
}

.menu-mobile a {
  display: flex;
  align-items: center;
  min-height: var(--toque);
  padding: 0.65rem 0.85rem;
  border-radius: 0.85rem;
  font-weight: 600;
  color: var(--texto);
}

.menu-mobile a:active {
  background: var(--rosa-fundo);
}

.menu-mobile .botao {
  margin-top: 0.75rem;
  width: 100%;
}

body.menu-aberto {
  overflow: hidden;
}

/* ============================================================
   5. HERO (mobile: conteúdo acima, foto abaixo)
   ============================================================ */

.hero {
  position: relative;
  padding: 2rem 0 3.5rem;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 70% 50% at 90% 10%,
      rgba(198, 111, 128, 0.14),
      transparent 60%
    ),
    radial-gradient(
      ellipse 55% 45% at 5% 90%,
      rgba(201, 203, 164, 0.25),
      transparent 55%
    ),
    var(--creme);
}

.orbe {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
  opacity: 0.4;
}

.orbe--1 {
  width: 140px;
  height: 140px;
  top: 8%;
  right: -40px;
  background: rgba(198, 111, 128, 0.2);
}

.orbe--2 {
  width: 100px;
  height: 100px;
  bottom: 12%;
  left: -30px;
  background: rgba(201, 203, 164, 0.35);
}

.orbe--3 {
  width: 70px;
  height: 70px;
  top: 45%;
  right: 15%;
  background: rgba(243, 213, 222, 0.5);
}

.hero__grade {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero__titulo {
  font-family: var(--fonte-display);
  font-size: clamp(1.85rem, 7.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.hero__titulo em {
  font-style: italic;
  font-weight: 400;
  color: var(--rosa);
}

.hero__texto {
  color: var(--texto-soft);
  margin-bottom: 1.35rem;
  max-width: 36rem;
}

/* Mobile: CTAs em coluna — sem overflow horizontal */
.hero__acoes {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.hero__acoes .botao {
  width: 100%;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  font-size: 0.8rem;
  color: var(--texto-soft);
}

.hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero__meta .icone {
  color: var(--rosa);
}

.hero__visual {
  position: relative;
  width: min(100%, 340px);
  margin: 0 auto;
}

.hero__veu {
  position: absolute;
  inset: 10% 0% -6% 8%;
  background: linear-gradient(145deg, var(--oliva) 0%, var(--rosa-claro) 100%);
  border-radius: 55% 45% 45% 55% / 40% 50% 45% 55%;
  z-index: 0;
  opacity: 0.8;
}

.hero__foto {
  position: relative;
  z-index: 1;
  border-radius: 48% 48% 1.25rem 1.25rem / 34% 34% 1.25rem 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--sombra);
}

.hero__foto picture,
.sobre__foto picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__selo {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 1rem;
  max-width: min(300px, 70%);
  padding: 0.75rem 0.9rem;
  background: rgba(255, 250, 248, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--linha);
  border-radius: 1rem;
  box-shadow: var(--sombra);
}

.hero__selo strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.hero__selo span {
  font-size: 0.72rem;
  color: var(--texto-soft);
  line-height: 1.35;
}

.hero__enfeites {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.hero__enfeite {
  position: absolute;
  color: var(--rosa);
  opacity: 0.4;
}

.hero__enfeite--1 {
  width: 18px;
  height: 18px;
  top: 4%;
  right: 4%;
}

.hero__enfeite--2 {
  width: 12px;
  height: 12px;
  top: 28%;
  left: 2%;
  color: var(--verde);
}

.hero__enfeite--3 {
  width: 14px;
  height: 14px;
  bottom: 30%;
  right: 0;
}

/* ============================================================
   6. SOBRE
   ============================================================ */

.sobre__grade {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sobre__foto-wrap {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}

.sobre__fundo {
  position: absolute;
  inset: 8% 0 -6% 8%;
  background: var(--rosa-fundo);
  border-radius: var(--raio);
  z-index: 0;
  box-shadow: inset 0 0 0 1px var(--linha);
}

.sobre__foto {
  position: relative;
  z-index: 1;
  border-radius: 1.35rem 1.35rem 2.2rem 1.35rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--sombra);
}

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

.sobre__chip {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 1rem;
  max-width: min(190px, 72%);
  padding: 0.7rem 0.85rem;
  background: var(--verde);
  color: #fff;
  border-radius: 0.95rem;
  box-shadow: var(--sombra);
  font-size: 0.74rem;
  line-height: 1.4;
}

.sobre__chip strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}

.sobre__texto .titulo {
  margin: 0.2rem 0 0.4rem;
}

.sobre__texto .secao__ornamento {
  margin-bottom: 0.95rem;
}

.sobre__crp {
  color: var(--texto-soft);
  margin-bottom: 1rem;
  font-size: 0.94rem;
}

.sobre__crp a {
  color: var(--verde);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 0.3rem;
}

.sobre__texto p {
  color: var(--texto-soft);
  margin-bottom: 0.85rem;
}

.pilulas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.pilula {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.75rem 0.4rem;
  border-radius: 1rem;
  background: #fff5f8;
  transition:
    background var(--transicao),
    border-color var(--transicao),
    transform var(--transicao),
    box-shadow var(--transicao);
}

.pilula .icone {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  color: var(--rosa);
}

.pilula__txt {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  line-height: 1.2;
}

.pilula__txt strong {
  font-size: 0.78rem;
  font-weight: 600;
}

.pilula__txt small {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.78;
}

/* ============================================================
   7. ÁREAS
   ============================================================ */

.areas__grade {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.cartao-vidro {
  display: grid;
  grid-template-columns: 1.05rem 1fr;
  column-gap: 0.45rem;
  row-gap: 0.12rem;
  background: rgba(255, 250, 248, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 111, 128, 0.22);
  border-radius: 0.85rem;
  padding: 0.7rem 0.8rem 0.75rem;
  box-shadow: 0 4px 16px rgba(198, 111, 128, 0.05);
  transition:
    transform var(--transicao),
    box-shadow var(--transicao);
}

.cartao-vidro:active {
  transform: translateY(-2px);
}

.cartao-vidro__icone {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.12rem;
  color: var(--rosa);
}

.cartao-vidro h3 {
  font-family: var(--fonte-display);
  font-size: 1.02rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.25;
}

.cartao-vidro h3::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1px;
  margin-top: 0.28rem;
  background: linear-gradient(90deg, var(--rosa), transparent);
  opacity: 0.55;
}

.cartao-vidro p {
  grid-column: 1 / -1;
  margin: 0.08rem 0 0;
  font-size: 0.78rem;
  color: var(--texto-soft);
  line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
  .cartao-vidro:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-rosa);
  }
}

/* ============================================================
   8. MOMENTOS
   ============================================================ */

.momentos__pilha {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 40rem;
  margin: 0 auto;
}

.painel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 1.15rem 1.15rem 1.15rem 1.25rem;
  background: var(--creme);
  border-radius: var(--raio);
  border: 1px solid var(--linha);
  box-shadow: 0 4px 18px rgba(75, 102, 69, 0.04);
}

.painel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16%;
  bottom: 16%;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--rosa), var(--oliva));
}

.painel__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--fonte-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--rosa);
  line-height: 1;
}

.painel__num .icone {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--oliva);
}

.painel h3 {
  font-family: var(--fonte-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.painel p {
  font-size: 0.9rem;
  color: var(--texto-soft);
}

.momentos__frase {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--fonte-detalhe);
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: var(--rosa-escuro);
  line-height: 1.35;
  padding: 0.5rem 0.5rem 0;
}

.momentos__icone {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto 0.5rem;
  color: var(--rosa);
}

/* ============================================================
   9. COMO FUNCIONA
   ============================================================ */

.passos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.passo {
  position: relative;
  background: var(--creme);
  border-radius: 1rem;
  padding: 0.85rem 0.9rem 0.9rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--sombra);
  transition:
    transform var(--transicao),
    box-shadow var(--transicao);
}

.passo:active {
  transform: translateY(-3px);
}

.passo__icone {
  width: 38px;
  height: 38px;
  margin: 0 auto 0.45rem;
  border-radius: 50%;
  background: var(--rosa-fundo);
  color: var(--rosa);
  display: grid;
  place-items: center;
  border: 1px dashed rgba(198, 111, 128, 0.35);
}

.passo__icone .icone {
  width: 1.05rem;
  height: 1.05rem;
}

.passo__tag {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--rosa);
  margin-bottom: 0.2rem;
}

.passo h3 {
  font-family: var(--fonte-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.passo h3::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1px;
  margin: 0.3rem auto 0;
  background: linear-gradient(90deg, transparent, var(--rosa), transparent);
}

.passo p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--texto-soft);
  max-width: 22rem;
  margin: 0 auto;
}

.passos__cta {
  margin-top: 1.75rem;
  text-align: center;
}

.passos__cta .botao {
  width: 100%;
  max-width: 20rem;
}

/* ============================================================
   10. FAQ
   ============================================================ */

.faq__wrap {
  max-width: var(--max);
}

/* Mobile: título acima; tablet/desktop: título à esquerda da lista */
.faq__cabeca {
  margin-bottom: 1.25rem;
}

.faq__lista {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.faq__item {
  position: relative;
  background: var(--rosa-fundo);
  border-radius: 1rem;
  border: 1px solid var(--linha);
  overflow: hidden;
}

.faq__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--rosa), transparent);
  opacity: 0.5;
}

.faq__pergunta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  min-height: var(--toque);
  padding: 1rem 1.1rem;
  text-align: left;
  font-family: var(--fonte-display);
  font-size: 1.05rem;
  font-weight: 500;
}

.faq__pergunta svg,
.faq__pergunta .icone {
  color: var(--rosa);
  flex-shrink: 0;
  transition: transform var(--transicao);
}

.faq__item.ativo .faq__pergunta svg,
.faq__item.ativo .faq__pergunta .icone {
  transform: rotate(45deg);
}

.faq__resposta {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transicao);
}

.faq__item.ativo .faq__resposta {
  grid-template-rows: 1fr;
}

.faq__resposta-inner {
  overflow: hidden;
}

.faq__resposta-inner p {
  padding: 0 1.1rem 1.05rem;
  color: var(--texto-soft);
  font-size: 0.92rem;
}

/* ============================================================
   11. CONVITE — card flutuante
   ============================================================ */

.convite {
  position: relative;
  padding: 2.75rem 0 4rem;
  background: var(--creme);
}

.convite__envolve {
  position: relative;
  padding: 1.25rem 0.25rem;
}

.convite__enfeites {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.convite__enfeite {
  position: absolute;
  opacity: 0.4;
}

.convite__enfeite--1 {
  width: 14px;
  height: 14px;
  top: 0;
  left: 8%;
  color: var(--rosa);
}

.convite__enfeite--2 {
  width: 18px;
  height: 18px;
  top: 6%;
  right: 10%;
  color: var(--verde);
}

.convite__enfeite--3 {
  width: 13px;
  height: 13px;
  bottom: 10%;
  left: 6%;
  color: var(--rosa-escuro);
}

.convite__enfeite--4 {
  width: 15px;
  height: 15px;
  bottom: 4%;
  right: 8%;
  color: var(--oliva);
}

.convite__card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.15rem;
  max-width: 22rem;
  margin: 0 auto;
  padding: 1.35rem 1.15rem 1.5rem;
  border-radius: 1.15rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(
    160deg,
    var(--rosa) 0%,
    var(--rosa-escuro) 42%,
    var(--verde) 78%,
    var(--verde-escuro) 100%
  );
  box-shadow:
    0 12px 32px rgba(75, 102, 69, 0.12),
    0 6px 16px rgba(198, 111, 128, 0.12);
}

.convite__texto {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.convite__linha {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.25rem auto 0.65rem;
  max-width: 10rem;
}

.convite__linha span {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
}

.convite__linha .icone {
  width: 0.8rem;
  height: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.convite__card h2 {
  font-family: var(--fonte-display);
  font-size: clamp(1.2rem, 4.2vw, 1.55rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.convite__card p {
  opacity: 0.9;
  margin-bottom: 0.7rem;
  font-size: 0.86rem;
  line-height: 1.5;
}

.formulario {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  text-align: left;
  width: 100%;
  max-width: 16rem;
  margin: 0 auto;
}

.formulario__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.formulario__campo {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
}

.formulario__campo input,
.formulario__campo textarea {
  width: 100%;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.45rem;
  padding: 0.38rem 0.6rem;
  min-height: 2.15rem;
}

.formulario__campo input::placeholder,
.formulario__campo textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.formulario__campo textarea {
  min-height: 3.35rem;
  max-height: calc(3.35rem + 150px);
  resize: vertical;
}

.formulario__enviar {
  align-self: center;
  margin-top: 0.35rem;
  padding: 0.4rem 1.15rem;
  min-height: 2.15rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  cursor: pointer;
}

.formulario__enviar:active {
  background: rgba(255, 255, 255, 0.1);
}

.formulario__enviar:disabled {
  opacity: 0.55;
  cursor: wait;
}

.formulario__status {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.formulario__status--erro {
  color: #ffd4d4;
}

.convite__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: var(--creme);
  color: var(--verde);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    background var(--transicao),
    box-shadow var(--transicao);
}

.convite__whatsapp .icone {
  width: 0.95rem;
  height: 0.95rem;
}

.convite__whatsapp:active {
  background: #fff;
}

/* ============================================================
   12. RODAPÉ
   ============================================================ */

.rodape {
  background: var(--verde-escuro);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 0 1.75rem;
}

.rodape__topo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.rodape__marca {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--fonte-display);
  font-size: 1.05rem;
  color: #fff;
}

.rodape__social {
  display: flex;
  gap: 0.5rem;
}

.rodape__social a {
  width: var(--toque);
  height: var(--toque);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  transition:
    background var(--transicao),
    border-color var(--transicao);
}

.rodape__social a:active {
  background: var(--rosa);
  border-color: var(--rosa);
}

.rodape__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
}

.rodape__grid h3 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.rodape__grid a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rodape__link-legal {
  text-decoration: underline;
  text-underline-offset: 2px;
  min-height: var(--toque);
  padding: 0.35rem 0.15rem;
  display: inline-flex;
  align-items: center;
}

.rodape__aviso {
  font-size: 0.78rem;
  line-height: 1.5;
  opacity: 0.88;
  margin-bottom: 0.85rem;
}

.rodape__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  font-size: 0.76rem;
  opacity: 0.78;
}

@media (hover: hover) and (pointer: fine) {
  .rodape__social a:hover {
    background: var(--rosa);
    border-color: var(--rosa);
  }
}

/* ============================================================
   13. BANNERS LEGAIS
   ============================================================ */

.banner-fundo {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(47, 42, 44, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.banner-fundo[hidden],
.banner-legal[hidden] {
  display: none !important;
}

.banner-fundo.aberto {
  opacity: 1;
}

.banner-legal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: end center;
  padding: 0;
  pointer-events: none;
}

.banner-legal.aberto {
  pointer-events: auto;
}

.banner-legal__painel {
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--creme);
  border-radius: 1.35rem 1.35rem 0 0;
  padding: 1.25rem 1.15rem 1.75rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: none;
}

.banner-legal.aberto .banner-legal__painel {
  transform: translateY(0);
  box-shadow: 0 -12px 40px rgba(47, 42, 44, 0.15);
}

.banner-legal__topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.banner-legal__rotulo {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde);
}

.banner-legal__fechar {
  width: var(--toque);
  height: var(--toque);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--texto-soft);
}

.banner-legal__fechar:active {
  background: var(--rosa-fundo);
  color: var(--rosa);
}

.banner-legal__titulo {
  font-family: var(--fonte-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.banner-legal__corpo {
  color: var(--texto-soft);
  font-size: 0.92rem;
}

.banner-legal__corpo h3 {
  font-size: 0.95rem;
  color: var(--texto);
  margin: 1rem 0 0.35rem;
}

.banner-legal__corpo p {
  margin-bottom: 0.65rem;
}

.banner-legal__corpo a {
  color: var(--rosa-escuro);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.banner-aberto {
  overflow: hidden;
}

/* ============================================================
   14. REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.visivel {
  opacity: 1;
  transform: none;
}

.painel.visivel {
  transition: transform var(--transicao);
}

.passo.visivel {
  transition:
    transform var(--transicao),
    box-shadow var(--transicao);
}

/* ============================================================
   8. TABLET — min-width: 640px
   ============================================================ */

@media (min-width: 640px) {
  :root {
    --header-h: 72px;
  }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .secao {
    padding: 3.75rem 0 4.75rem;
  }

  /* Hero: botões em linha com wrap, largura pelo conteúdo */
  .hero__acoes {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__acoes .botao {
    width: auto;
  }

  .areas__grade {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .passos {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }

  .passo {
    border-radius: 1.4rem;
    padding: 1.5rem 1.2rem 1.35rem;
  }

  .passo__icone {
    width: 52px;
    height: 52px;
    margin-bottom: 0.85rem;
  }

  .passo__icone .icone {
    width: 1.3rem;
    height: 1.3rem;
  }

  .passo__tag {
    font-size: 0.68rem;
    margin-bottom: 0.35rem;
  }

  .passo h3 {
    font-size: 1.2rem;
    margin-bottom: 0.45rem;
  }

  .passo h3::after {
    width: 1.8rem;
    margin-top: 0.45rem;
  }

  .passo p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .passos__cta .botao {
    width: auto;
  }

  .faq__wrap {
    display: grid;
    grid-template-columns: minmax(11rem, 0.85fr) minmax(16rem, 1.4fr);
    gap: 1.75rem 2.25rem;
    align-items: start;
  }

  .faq__cabeca {
    margin-bottom: 0;
  }

  .rodape__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .convite__card {
    grid-template-columns: minmax(0, 1fr) 13.25rem;
    align-items: center;
    gap: 1.1rem 1.4rem;
    max-width: 38rem;
    padding: 1.35rem 1.5rem;
    text-align: left;
  }

  .convite__texto {
    align-items: flex-start;
  }

  .convite__linha {
    margin-left: 0;
    justify-content: flex-start;
  }

  .formulario {
    max-width: none;
    margin: 0;
  }

  .formulario__enviar {
    align-self: flex-start;
  }

  .banner-legal {
    place-items: center;
    padding: 1.5rem;
  }

  .banner-legal__painel {
    max-width: 34rem;
    max-height: 80vh;
    border-radius: 1.35rem;
    padding: 1.5rem 1.5rem 1.75rem;
    transform: translateY(24px) scale(0.98);
    opacity: 0;
    transition:
      transform 0.35s ease,
      opacity 0.35s ease;
  }

  .banner-legal.aberto .banner-legal__painel {
    transform: none;
    opacity: 1;
  }
}

/* ============================================================
   9. DESKTOP — min-width: 960px
   ============================================================ */

@media (min-width: 960px) {
  .cabecalho__burger {
    display: none;
  }

  .menu-mobile {
    display: none !important;
  }

  .cabecalho__nav {
    display: block;
  }

  .cabecalho__nav ul {
    display: flex;
    align-items: center;
    gap: 0.15rem 1.15rem;
  }

  .cabecalho__nav a {
    display: inline-flex;
    align-items: center;
    min-height: var(--toque);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--texto-soft);
    transition: color var(--transicao);
  }

  @media (hover: hover) and (pointer: fine) {
    .cabecalho__nav a:hover {
      color: var(--rosa);
    }
  }

  .cabecalho__cta {
    display: inline-flex;
  }

  .cabecalho__marca img {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: 3rem 0 4.5rem;
  }

  .hero__grade {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2.5rem;
  }

  .hero__visual {
    width: min(100%, 400px);
    margin: 0;
    justify-self: end;
  }

  .sobre__grade {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 3rem;
  }

  .sobre__foto-wrap {
    margin: 0;
    max-width: 380px;
  }

  .areas__grade {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    max-width: 52rem;
    margin-inline: auto;
  }

  .secao {
    padding: 4.5rem 0 5.25rem;
  }

  .convite {
    padding: 3.25rem 0 4.25rem;
  }

  .convite__envolve {
    padding: 1.25rem 0.5rem;
  }

  .convite__card {
    max-width: 40rem;
    padding: 1.5rem 1.65rem;
  }
}

/* ============================================================
   10. REDUZIR MOVIMENTO
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
