/* =========================================================================
   Natasha Cerqueira Itaparica — LP /consultoria
   Componentes, layout e seções. Mobile-first. Polished pass.

   Estratégia (per DESIGN.md):
   - Color: Committed. Plum carrega 30–60% das superfícies de marca.
   - Theme: light. Mãe esgotada usando o celular em luz baixa, fim da tarde
     no consultório. Fundo escuro lateja, fundo creme acolhe.
   - Layout: alterna seções creme / pêssego / drenched plum. Asymmetric
     onde faz sentido, centralizado só onde é gesto deliberado (oferta).
   - Sem grid de cards idênticos. Audiência usa lista editorial.
   ========================================================================= */

@import url('tokens.css');

/* ---------- 1. Reset + base --------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--fg-default);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-relaxed);
  font-weight: var(--fw-regular);
  overflow-x: hidden;
}

img, svg, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a {
  color: var(--fg-accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  transition: color var(--transition);
}
a:hover { color: var(--plum-700); }

ul, ol { padding-left: 1.25em; }

::selection {
  background: var(--peach-300);
  color: var(--ink);
}

/* ---------- 2. Tipografia ----------------------------------------------- */

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 var(--space-4);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  font-weight: var(--fw-regular);
  font-variation-settings: 'opsz' 144;
}

h1 {
  font-size: var(--text-4xl);
  font-weight: var(--fw-light);
}
h2 {
  font-size: var(--text-2xl);
  font-weight: var(--fw-semibold);
}
h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  font-family: var(--font-body);
  letter-spacing: var(--tracking-normal);
  line-height: var(--lh-snug);
}

p {
  margin: 0 0 var(--space-4);
  color: var(--fg-soft);
  max-width: 60ch;
}

p:last-child { margin-bottom: 0; }

strong { font-weight: var(--fw-semibold); color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--plum-600);
  margin-bottom: var(--space-4);
}

/* ---------- 3. Layout --------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

section {
  padding-block: var(--section-y);
}
section.section--tight { padding-block: var(--section-y-tight); }

.section-head {
  text-align: left;
  margin-bottom: var(--space-10);
  max-width: 40rem;
}
.section-head p {
  color: var(--fg-soft);
  font-size: var(--text-md);
  max-width: 38rem;
}
/* Centralizado só em tablet+; no mobile segue alinhado à esquerda como o resto */
@media (min-width: 720px) {
  .section-head--center {
    text-align: center;
    margin-inline: auto;
  }
  .section-head--center p { margin-inline: auto; }
}

/* ---------- 4. Componentes ---------------------------------------------- */

/* Botão (CTA primário — WhatsApp) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  min-height: 2.75rem; /* 44px tap target */
}
.btn:focus-visible { outline: 0; box-shadow: var(--focus-ring); }

.btn--primary {
  background: var(--action);
  color: var(--action-on);
  box-shadow: var(--shadow-plum);
}
.btn--primary:hover {
  background: var(--action-hover);
  color: var(--action-on);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(107, 58, 107, 0.24);
}

.btn--secondary {
  background: transparent;
  color: var(--plum-700);
  border: 1.5px solid var(--plum-300);
  /* border-radius herda var(--radius-md) do .btn — mesmo do CTA Acompanhamento */
}
.btn--secondary:hover {
  background: var(--plum-100);
  color: var(--plum-700);
  border-color: var(--plum-500);
}

/* Botão invertido — peach sobre plum (CTA do hero / CTA final) */
.btn--peach {
  background: var(--peach-300);
  color: var(--plum-900);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.btn--peach:hover {
  background: var(--peach-200);
  color: var(--plum-900);
  transform: translateY(-1px);
}

.btn--lg {
  padding: var(--space-5) var(--space-8);
  font-size: var(--text-md);
  border-radius: var(--radius-md);
  min-height: 3rem;
}

.btn--block { width: 100%; justify-content: center; }

.btn .icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

/* Pill / Badge */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  white-space: nowrap;
}
.pill--plum { background: var(--plum-700); color: var(--cream); }
.pill--peach { background: var(--peach-300); color: var(--terracotta-700); }
.pill--outline {
  background: transparent;
  color: var(--plum-700);
  border: 1.5px solid var(--plum-300);
}

/* Pill sobre fundo plum (drenched), com translucid backplate */
.pill--on-plum {
  background: rgba(245, 213, 160, 0.18);
  color: var(--peach-300);
  border: 1px solid rgba(245, 213, 160, 0.32);
}

/* Card base — usado APENAS quando "card" é a affordance certa.
   Audiência NÃO usa cards (lista editorial). Pacotes usam (card é certo
   pra comparar oferta). Depoimentos usam (citação com atribuição). */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}

/* Ícone circular (usado em pontos específicos, NÃO acima de toda heading) */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--peach-200);
  color: var(--terracotta-700);
  flex-shrink: 0;
}
.icon-circle svg { width: 1.25rem; height: 1.25rem; }

/* Accordion (FAQ) — <details>/<summary> nativo */
.accordion {
  display: flex;
  flex-direction: column;
}

.accordion details {
  border-bottom: 1px solid var(--line);
  transition: border-color var(--transition);
}
.accordion details:first-of-type {
  border-top: 1px solid var(--line);
}
.accordion details[open] {
  border-bottom-color: var(--plum-300);
}
.accordion details[open] + details,
.accordion details:has(+ details[open]) {
  border-color: var(--plum-300);
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  font-weight: var(--fw-semibold);
  color: var(--ink);
  font-size: var(--text-md);
  line-height: var(--lh-snug);
  transition: color var(--transition);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { color: var(--plum-700); }
.accordion summary:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

.accordion summary::after {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='currentColor' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' fill='none' stroke='currentColor' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--plum-600);
}
.accordion details[open] summary::after { transform: rotate(180deg); }

.accordion .answer {
  padding: 0 0 var(--space-6);
  color: var(--fg-soft);
  max-width: 56ch;
}
.accordion .answer p { margin-bottom: var(--space-3); }
.accordion .answer p:last-child { margin-bottom: 0; }

/* ---------- 5. Header --------------------------------------------------- */

.site-header {
  padding: var(--space-5) 0;
  background: transparent;
  position: relative;
  z-index: var(--z-raised);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  max-width: var(--container-wide);
}
.site-header .brand img {
  height: 52px;
  width: auto;
}
@media (min-width: 720px) {
  .site-header .brand img { height: 80px; }
}

.site-header .header-meta {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--fg-mute);
  letter-spacing: var(--tracking-wide);
  display: none;
}
@media (min-width: 720px) {
  .site-header .header-meta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
  }
}

/* ---------- 6. SEÇÕES --------------------------------------------------- */

/* ===== HERO — Committed color, asymmetric, brand-distinctive ===== */
.hero {
  padding-top: var(--space-4);
  padding-bottom: clamp(4rem, 10vw, 8rem);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 920px) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(3rem, 7vw, 6rem);
  }
}

.hero__copy { max-width: 36rem; }

.hero h1 {
  font-size: clamp(2.5rem, 1.6rem + 4.5vw, 4.5rem);
  font-weight: var(--fw-regular);   /* era light (300), agora 400 */
  line-height: 1.02;
  margin-bottom: var(--space-6);
  color: var(--ink);
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: italic;
  font-weight: var(--fw-regular);
  color: var(--plum-700);
  display: block;
  margin-top: var(--space-2);
  font-size: 0.85em;
}

.hero__sub {
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  color: var(--fg-soft);
  line-height: 1.55;
  margin-bottom: var(--space-8);
  max-width: 34rem;
}

.hero .pill { margin-bottom: var(--space-6); }

.hero__trust {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--fg-soft);
  border-top: 1px solid var(--line);
  padding-top: var(--space-6);
  max-width: 28rem;
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.hero__trust .marker {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--peach-500);
  display: inline-block;
  flex-shrink: 0;
}

/* Hero visual — bloco plum drenched, brand-art, NÃO placeholder de foto.
   O símbolo do logo (heart + ni) é o art element. Quando a foto real
   chegar, o <img.hero__photo> sobrepõe e a composição vira cenário. */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-2xl);
  background: var(--plum-700);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

/* Camadas do plum panel */
.hero__visual::before {
  /* glow pêssego centro-superior pra dar profundidade */
  content: '';
  position: absolute;
  width: 90%; aspect-ratio: 1;
  left: 50%; top: -25%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(245, 201, 155, 0.22) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero__visual::after {
  /* textura sutil — riscas diagonais ultra-leves pra evitar o "plano de cor" */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 32px, rgba(254, 252, 248, 0.018) 32px 33px);
  z-index: 1;
  pointer-events: none;
}

/* Símbolo do logo (heart + ni) como brand mark gigante */
.hero__symbol {
  position: absolute;
  width: 62%;
  left: 50%; top: 48%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0.96;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.25));
}

/* Foto real da Natasha (sobrepõe o símbolo quando o arquivo existir) */
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 3;
}

/* Chip flutuante: ancora a credencial num formato físico (cartão) */
.hero__chip {
  position: absolute;
  left: var(--space-5);
  bottom: var(--space-5);
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  max-width: 76%;
  z-index: 4;
}
.hero__chip .icon-circle {
  width: 2.25rem;
  height: 2.25rem;
}
.hero__chip strong {
  font-size: var(--text-sm);
  display: block;
  line-height: 1.2;
  color: var(--ink);
}
.hero__chip span {
  font-size: var(--text-xs);
  color: var(--fg-mute);
}


/* ===== CREDENCIAIS — split: foto 1/3 esquerda, conteúdo 2/3 direita ===== */
.credentials {
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.credentials .container { max-width: var(--container-wide); }

.credentials__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 880px) {
  .credentials__layout {
    grid-template-columns: 1fr 1fr;            /* 50/50: foto ganha presença */
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
  }
}

/* Foto da Natasha — placeholder peach com simbolo até a foto real entrar */
.credentials__photo {
  width: 100%;
  aspect-ratio: 4 / 5;                          /* portrait */
  border-radius: var(--radius-xl);
  background: var(--peach-100);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.credentials__photo img {
  width: clamp(96px, 28%, 168px);
  height: auto;
  opacity: 0.7;
}
/* Quando a foto real estiver disponível: trocar src e adicionar
   .credentials__photo--photo no wrapper */
.credentials__photo--photo {
  background: transparent;
}
.credentials__photo--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.credentials__content .section-head {
  margin-bottom: var(--space-6);
}
.credentials__content h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 1.3rem + 2vw, 2.5rem);
}
.credentials__content p {
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  margin-bottom: var(--space-5);
  max-width: none;
  line-height: 1.6;
  color: var(--ink-soft);
}
.credentials__content p:last-child { margin-bottom: 0; }


/* ===== AUDIÊNCIA — lista editorial 2-col, SEM cards ============ */
.audience { background: var(--cream); }
.audience .container { max-width: var(--container); }

.audience__layout {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .audience__layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: var(--space-16);
    align-items: start;
  }
  .audience__layout .section-head {
    position: sticky;
    top: var(--space-10);
    margin-bottom: 0;
  }
}

.audience__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.audience__item {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 3rem 1fr;     /* 48px coluna do ícone */
  gap: var(--space-2) var(--space-5);
  align-items: start;
}
@media (min-width: 640px) {
  .audience__item { padding: var(--space-8) 0; }
}

.audience__icon {
  grid-row: 1 / span 2;                /* spans h3 + p, alinhado ao topo */
  width: 3rem;
  height: 3rem;
  color: var(--peach-700);
  flex-shrink: 0;
  align-self: start;
  margin-top: 0.125rem;                /* leve ajuste óptico vs. baseline do h3 */
}
.audience__item h3 {
  grid-column: 2;
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  color: var(--plum-700);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.audience__item p {
  grid-column: 2;
  margin: var(--space-2) 0 0;
  font-size: var(--text-base);
  color: var(--ink-soft);
  max-width: 48ch;
}


/* ===== COMO FUNCIONA — fundo peach (warm), 3 passos com numeração display === */
.steps { background: var(--peach-100); }

.steps-grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 880px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

.step {
  position: relative;
  padding-top: clamp(4rem, 3rem + 2.5vw, 5.5rem);   /* mais respiro entre número e título */
  display: flex;
  flex-direction: column;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: var(--fw-light);
  font-style: italic;
  color: var(--terracotta-500);
  line-height: 0.85;
  letter-spacing: -0.02em;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  color: var(--ink);
  margin-bottom: var(--space-3);
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.step p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 32ch;
}


/* ===== PACOTES — 2 ofertas × 3 modalidades, separadas por hairline ===== */
.packages { background: var(--cream); }
.packages .container { max-width: var(--container-wide); }

/* Section-head dos pacotes: deixa as duas linhas da descrição em nowrap
   no desktop. Mobile (<720px) volta a wrap natural. */
.packages .section-head { max-width: none; }
.packages .section-head p { max-width: none; }
.packages .section-head p > span {
  display: block;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .packages .section-head p > span { white-space: normal; }
}

/* Bloco de oferta (header + grid de 3 cards) */
.service { /* container interno por oferta */ }

/* Header da oferta — split: texto à esquerda (título + persona + desc),
   image placeholder à direita ocupando largura da coluna. Mobile: empilhado. */
.service__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: left;
  max-width: none;
  margin-inline: 0;
  align-items: center;
}
@media (min-width: 880px) {
  .service__head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(3rem, 6vw, 5rem);
  }
}

.service__head-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 36rem;
}

.service__title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3rem);
  letter-spacing: var(--tracking-tight);
  color: var(--plum-700);
  line-height: 1.05;
  margin: 0;
  max-width: 18ch;
}

.service__persona {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--text-md);
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
  max-width: 36ch;
}

.service__desc {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--text-base);
  color: var(--fg-soft);
  line-height: 1.6;
  margin: 0;
  max-width: 42ch;
}

/* Image ocupando a largura da coluna direita. Aspect 4:3.
   Default: placeholder peach com simbolo centralizado como watermark.
   Com `.service__image--photo`: foto real cover, sem fundo peach. */
.service__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--peach-100);
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.service__image img {
  width: clamp(96px, 28%, 168px);
  height: auto;
  opacity: 0.7;
}
.service__image--photo {
  background: transparent;
}
.service__image--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

/* Hairline entre as duas ofertas (linha + espaço grande) */
.service-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin-block: clamp(3rem, 7vw, 5rem);
  max-width: 64rem;
  margin-inline: auto;
}

/* Grid de cards */
.packages-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: var(--space-5);
  }
}

/* Card de pacote — estrutura: top (eyebrow + badge) → título → sub →
   desc → price-row → divisor → features → CTA */
.pkg {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 2vw, 2.25rem);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pkg:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Badge "Recomendado" — flutua acima do card featured, alinhada à esquerda
   no mesmo eixo horizontal dos textos do card (mesmo valor do padding). */
.pkg__badge {
  position: absolute;
  top: -0.85rem;
  left: clamp(1.75rem, 2vw, 2.25rem);
  white-space: nowrap;
  z-index: 1;
}

/* Título Fraunces (reduzido pra visual mais clean) */
.pkg__title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(1.5rem, 1.25rem + 1.1vw, 2rem);
  margin: 0 0 var(--space-1);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
}

/* Sublinha itálico peach (decorativa: começa com — como prefixo visual) */
.pkg__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--fw-regular);
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  color: var(--peach-700);
  line-height: 1.3;
  margin: 0 0 var(--space-5);
}

/* Descrição (Mulish) */
.pkg__desc {
  color: var(--fg-soft);
  font-size: var(--text-base);
  margin: 0 0 var(--space-6);
  line-height: 1.55;
  min-height: 4.65em;     /* equilibra alturas entre cards com descrições de tamanhos diferentes */
}

/* Linha do preço: R$ pequeno · número grande Fraunces · "À VISTA" caps direita */
.pkg__price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.pkg__currency {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--plum-700);
  letter-spacing: 0.04em;
  align-self: flex-end;
  margin-bottom: 0.55em;
}
.pkg__price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2.4rem + 2vw, 4rem);
  font-weight: var(--fw-regular);
  color: var(--plum-700);
  line-height: 0.85;
  letter-spacing: -0.03em;
}
.pkg__price-meta {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-self: flex-end;
  margin-bottom: 0.55em;
}

/* Divisor pontilhado entre preço e features */
.pkg__divider {
  border: 0;
  border-top: 1px dashed var(--line-strong);
  margin: 0 0 var(--space-5);
}

/* Lista de features com seta peach */
.pkg__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex-grow: 1;
}
.pkg__features li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: var(--space-3);
  align-items: baseline;
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.4;
}
.pkg__features li::before {
  content: '→';
  color: var(--peach-700);
  font-weight: var(--fw-bold);
  font-size: 1.05em;
  line-height: 1;
}

/* Pacote destacado — drenched plum, cores invertidas */
.pkg--featured {
  background: var(--plum-700);
  color: var(--cream);
  border-color: transparent;
  box-shadow: var(--shadow-plum);
}
.pkg--featured .pkg__num { color: rgba(245, 213, 160, 0.7); }
.pkg--featured .pkg__title { color: var(--cream); }
.pkg--featured .pkg__sub { color: var(--peach-300); }
.pkg--featured .pkg__desc { color: rgba(254, 252, 248, 0.85); }
.pkg--featured .pkg__currency { color: var(--peach-300); }
.pkg--featured .pkg__price { color: var(--peach-300); }
.pkg--featured .pkg__price-meta { color: rgba(245, 213, 160, 0.7); }
.pkg--featured .pkg__divider { border-top-color: rgba(245, 213, 160, 0.28); }
.pkg--featured .pkg__features li { color: var(--cream); }
.pkg--featured .pkg__features li::before { color: var(--peach-300); }
.pkg--featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(107, 58, 107, 0.32);
}

/* Botão com círculo peach + seta à direita */
.btn--arrow {
  justify-content: space-between;
  padding-right: 0.65rem;       /* respiro consistente entre o círculo e a borda */
  gap: var(--space-3);
}
.btn__arrow {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--peach-300);
  color: var(--plum-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  transition: background var(--transition);
}
/* Hover não translada o círculo (evita encostar na borda direita).
   Apenas escurece sutilmente a cor de fundo. */
.btn--arrow:hover .btn__arrow {
  background: var(--peach-200);
}
/* No card featured (CTA peach), o círculo precisa contrastar com o botão peach */
.btn--peach .btn__arrow {
  background: var(--plum-700);
  color: var(--peach-300);
}
.btn--peach:hover .btn__arrow {
  background: var(--plum-800);
  color: var(--peach-200);
}


/* ===== DEPOIMENTOS — mesma largura/grid dos pacotes ===== */
.testimonials { background: var(--plum-100); }
.testimonials .container { max-width: var(--container-wide); }   /* 76rem · igual aos pacotes */

.testimonial-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: var(--space-5);
  }
}

.testimonial {
  margin: 0;             /* zera o margin: 1em 40px default do <figure> */
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 2.5vw, 2.25rem) clamp(1.5rem, 2vw, 2rem);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Glifo de aspas: Mulish bold peach, top-left, escala generosa */
.testimonial::before {
  content: '\201D';                     /* " right double quotation mark */
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(3rem, 2.5rem + 1.5vw, 3.75rem);
  color: var(--peach-500);
  line-height: 0.5;
  margin-bottom: var(--space-5);
  letter-spacing: -0.04em;
}

.testimonial blockquote {
  margin: 0 0 var(--space-6);
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--text-md);
  color: var(--ink);
  line-height: 1.55;
  flex-grow: 1;
}

.testimonial__attribution {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}

.testimonial__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--plum-200);
  color: var(--plum-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  overflow: hidden;          /* clip do <img> ao círculo */
}
.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testimonial cite {
  font-style: normal;
  font-weight: var(--fw-semibold);
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.2;
}
.testimonial .role {
  color: var(--fg-mute);
  font-size: var(--text-sm);
  line-height: 1.2;
}


/* ===== FAQ — fundo cream, container intermediário, sem cards ===== */
.faq { background: var(--cream); }
.faq .container { max-width: 48rem; }    /* 768px · meio caminho entre narrow e default */


/* ===== CTA Final — drenched plum ===== */
.cta-final {
  background: var(--plum-700);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 70%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 201, 155, 0.18) 0%, transparent 60%);
  right: -20%; bottom: -30%;
  pointer-events: none;
}
.cta-final::after {
  content: '';
  position: absolute;
  width: 50%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 201, 155, 0.10) 0%, transparent 60%);
  left: -15%; top: -25%;
  pointer-events: none;
}
.cta-final .container {
  text-align: center;
  position: relative;
  max-width: 42rem;
  z-index: 1;
}
.cta-final h2 {
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(1.875rem, 1.4rem + 2.4vw, 3rem);
  margin-bottom: var(--space-6);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-final h2 em {
  font-style: italic;
  color: var(--peach-300);
  font-weight: var(--fw-regular);
  display: block;
  margin-top: var(--space-2);
  font-size: 0.9em;
}
.cta-final p {
  color: rgba(254, 252, 248, 0.88);
  font-size: var(--text-md);
  margin: 0 auto var(--space-8);
  max-width: 32rem;
}


/* ===== Footer (centralizado: símbolo + tagline + Instagram + divisor + legal) =====
   Estrutura em 2 níveis:
   - .container.container--wide: largura total (76rem) — divisor e legal usam.
   - .footer__center: bloco interno estreito (36rem) — símbolo, tagline, pill. */
.site-footer {
  background: var(--cream);
  padding: clamp(3rem, 8vw, 5rem) 0 var(--space-8);
  border-top: 1px solid var(--line);
}
.site-footer .container {
  text-align: center;
}

.footer__center {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__mark {
  display: inline-block;
  margin-bottom: var(--space-6);
}
.footer__mark img {
  height: 64px;
  width: auto;
}

.footer__tagline {
  font-size: var(--text-base);
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 auto var(--space-8);
  max-width: none;
}
/* Cada frase em uma linha (nowrap). Em mobile estreito, volta a wrap natural
   pra não estourar a viewport. */
.footer__tagline > span {
  display: block;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .footer__tagline > span { white-space: normal; }
}

.instagram-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--plum-300);
  color: var(--plum-700);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  min-height: 2.75rem;
}
.instagram-pill svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.instagram-pill:hover {
  background: var(--plum-100);
  border-color: var(--plum-500);
  color: var(--plum-700);
  transform: translateY(-1px);
}
.instagram-pill:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

.footer__divider {
  width: 100%;            /* ocupa o container--wide inteiro */
  border: 0;
  border-top: 1px solid var(--line);
  margin: clamp(2.5rem, 5vw, 4rem) 0 var(--space-6);
}

.footer__legal {
  /* Uma linha só, sem quebra. Em viewports muito estreitos (<360px),
     overflow-x: auto permite scroll discreto sem clipar a informação.
     Scrollbar oculta cross-browser. */
  font-size: clamp(0.625rem, 0.45rem + 0.7vw, 0.8125rem);
  color: var(--fg-mute);
  letter-spacing: 0.02em;
  margin: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.footer__legal::-webkit-scrollbar { display: none; }

/* ---------- 7. Acessibilidade ------------------------------------------- */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

:focus-visible { outline: 0; box-shadow: var(--focus-ring); border-radius: 4px; }

/* CTA flutuante de WhatsApp — único elemento fora da paleta plum/peach.
   O verde é o sinal universal de "WhatsApp"; trocar por outra cor diminui
   reconhecimento e conversão. */
.fab-whatsapp {
  position: fixed;
  bottom: clamp(1rem, 4vw, 1.5rem);
  right: clamp(1rem, 4vw, 1.5rem);
  z-index: var(--z-overlay);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
  text-decoration: none;
}
.fab-whatsapp:hover {
  transform: scale(1.06);
  color: var(--cream);
}
.fab-whatsapp svg { width: 28px; height: 28px; }

@media (min-width: 1100px) {
  .fab-whatsapp { width: 52px; height: 52px; }
  .fab-whatsapp svg { width: 24px; height: 24px; }
}
