/* =========================================================
   GLASS — camada final: luxo claro + esculturas de vidro.
   Carrega por ÚLTIMO; sobrepõe resíduos do tema escuro e
   adiciona os elementos de cristal/vidro da marca.
   ========================================================= */

/* ---------- Correções do tema escuro herdado ---------- */
.loader {
  background: var(--c-bg);
  color: var(--c-text);
}

/* Cabeçalho: véu branco suave em vez de gradiente preto. */
.header-bar {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
}
.site-header.is-stuck .header-bar {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--c-line);
  backdrop-filter: blur(16px) saturate(1.3);
}

/* Barra de aviso do topo (info-bar): clara e discreta. */
.info-bar {
  background: var(--c-mist);
  color: var(--c-text-soft);
  border-bottom: 1px solid var(--c-line);
}

/* Menu full-screen: vidro escuro elegante, texto claro. */
.nav-panel {
  background: rgba(20, 18, 17, 0.92);
  color: #f3f1ee;
  backdrop-filter: blur(20px);
}
.nav-panel a { color: #f3f1ee; }

/* Rodapé: grafite escuro (contraste no fim), texto claro. */
.site-footer {
  background: var(--c-ink);
  color: rgba(243, 241, 238, 0.82);
}
.site-footer a { color: rgba(243, 241, 238, 0.82); }
.site-footer a:hover { color: #fff; }

/* Barra fixa mobile (bottom CTA), se houver. */
.mobile-cta,
.sticky-cta {
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid var(--c-line);
  backdrop-filter: blur(14px);
}

/* ---------- Refinos de tipografia (light luxury) ---------- */
body { font-weight: 400; letter-spacing: 0.01em; }
.hero__title,
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; }
/* Rótulos em sans leve, bem espaçado (estilo "MENTORIA"). */
.eyebrow, .label, .kicker, [class*="eyebrow"], [class*="__label"] {
  font-family: var(--font-body);
  font-weight: 400;
}

/* ---------- Botão primário: grafite no branco ---------- */
.btn--primary,
.cta--primary,
button.btn-primary {
  background: var(--c-ink);
  color: var(--c-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.btn--primary:hover,
.cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -20px rgba(29, 27, 26, 0.5);
}

/* ---------- Painel de vidro (cristal) ---------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-edge);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  border-radius: var(--radius-glass);
}

/* ---------- Escultura de vidro (elemento decorativo) ----------
   Blob de cristal transparente sobre branco, com brilho especular
   e sombra suave. Base CSS até entrarem os PNGs reais da marca. */
.crystal {
  position: relative;
  width: clamp(220px, 34vw, 480px);
  aspect-ratio: 1 / 1;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  background:
    radial-gradient(120% 100% at 30% 22%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 45%),
    radial-gradient(90% 80% at 72% 78%, rgba(210, 214, 218, 0.55) 0%, rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, rgba(236, 238, 240, 0.75), rgba(198, 202, 206, 0.35) 50%, rgba(244, 245, 246, 0.7));
  box-shadow:
    0 60px 120px -50px rgba(29, 27, 26, 0.26),
    inset 6px 8px 24px rgba(255, 255, 255, 0.9),
    inset -10px -14px 30px rgba(150, 155, 160, 0.35);
  backdrop-filter: blur(2px);
  animation: crystalFloat 12s var(--ease-in-out) infinite;
}
.crystal::before {
  content: "";
  position: absolute;
  inset: 12% 14% 40% 16%;
  border-radius: inherit;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 60%);
  filter: blur(2px);
}
.crystal::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: 20%;
  width: 22%;
  height: 10%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  filter: blur(4px);
}
@keyframes crystalFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(-2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .crystal { animation: none; }
}

/* =========================================================
   BENTO + CARDS DE VIDRO (UI moderno)
   ========================================================= */

/* Card de vidro base — aplicado às "caixas" do site. */
.card,
.module,
.ai-cell,
.pillar,
.accordion__item,
.reframe,
.testimonial,
.for-whom__grid > *,
.authority__grid > * {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md), inset 0 1px 0 var(--glass-highlight);
  backdrop-filter: blur(10px) saturate(1.3);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
  transition: transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}
.card:hover,
.ai-cell:hover,
.pillar:hover,
.testimonial:hover,
.reframe:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 var(--glass-highlight);
  background: var(--glass-bg-strong);
}

/* Espaçamento interno confortável nas caixas. */
.pillar,
.ai-cell,
.card,
.reframe { padding: clamp(1.4rem, 1rem + 1.4vw, 2.2rem); }

/* ---------- PILARES: bento de 3 cards (some a borda colada) ---------- */
.pillars {
  border: 0;
  gap: clamp(14px, 1.4vw, 20px);
  margin-block: var(--space-xl);
}
.pillar { min-height: 20rem; }
.pillar + .pillar { border-left: 1px solid var(--glass-edge); }
.pillar__icon { border-radius: var(--radius-md); border-color: var(--glass-edge); }
/* pilar central levemente destacado (bento) */
.pillar--mind {
  background: var(--c-ink);
  color: #f3f1ee;
  border-color: transparent;
}
.pillar--mind .pillar__num,
.pillar--mind .pillar__label { color: #fff; }
.pillar--mind .pillar__icon { border-color: rgba(255,255,255,.3); color: #fff; }
.pillar--mind .pillar__desc { color: rgba(243,241,238,.72); }

/* ---------- IA: bento assimétrico (largo / estreito) ---------- */
.ai-grid {
  border: 0 !important;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: clamp(14px, 1.4vw, 20px);
}
.ai-cell {
  border: 1px solid var(--glass-edge) !important;
  margin: 0;
}
.ai-cell:nth-child(1) { grid-column: span 4; }
.ai-cell:nth-child(2) { grid-column: span 2; }
.ai-cell:nth-child(3) { grid-column: span 2; }
.ai-cell:nth-child(4) { grid-column: span 4; }
.ai-cell__icon { border-radius: var(--radius-md); }

/* ---------- MÓDULOS: cards de vidro empilhados ---------- */
.modules__list { border: 0; gap: clamp(14px, 1.4vw, 22px); }
.module {
  border-bottom: 0;
  padding: clamp(1.6rem, 1.1rem + 1.6vw, 2.6rem);
  align-items: center;
}
.module:hover { background: var(--glass-bg-strong); transform: translateY(-4px); }
.module__number,
.pillar__num { -webkit-text-stroke: 0; }

/* ---------- PRA QUEM É / AUTORIDADE / DEPOIMENTOS ---------- */
.for-whom__grid { gap: clamp(14px, 1.4vw, 20px); }
.for-whom__grid > * { padding: clamp(1.4rem, 1rem + 1.4vw, 2.2rem); }
.card--yes { background: var(--c-good-soft); border-color: rgba(95,122,92,.28); }
.card--no  { background: rgba(168,91,79,.06); border-color: rgba(168,91,79,.22); }
.testimonials__grid { gap: clamp(14px, 1.4vw, 22px); }

/* ---------- Inputs / pills arredondados modernos ---------- */
input, textarea, select { border-radius: var(--radius-md) !important; }
.pill, .badge, .chip, .tag, .eyebrow-pill { border-radius: var(--radius-pill); }

/* ---------- Botões (CTA) arredondados e modernos ---------- */
.cta,
.btn,
button.btn,
.text-link,
a.cta {
  border-radius: var(--radius-pill) !important;
}
.cta {
  background: var(--c-ink) !important;
  color: var(--c-white) !important;
  box-shadow: 0 10px 26px -14px rgba(29, 27, 26, 0.55);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(29, 27, 26, 0.6); }
.cta__label, .cta__arrow { color: var(--c-white); }
.cta__arrow { border-radius: var(--radius-pill); border-color: rgba(255,255,255,.3); }
/* Chips do hero como pills de vidro */
.chip {
  border-radius: var(--radius-pill);
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-edge);
  box-shadow: var(--shadow-sm);
}

/* ---------- FAQ accordion como cards ---------- */
.accordion__item { padding: 0 clamp(1.5rem, 1rem + 1.6vw, 2.5rem); overflow: hidden; }
.accordion__item + .accordion__item { margin-top: 12px; }
/* respiro no rodapé da resposta aberta (antes da borda arredondada) —
   escopado ao item aberto pra não furar o clip do collapse (0fr). */
.accordion__item.is-open .accordion__panel > div { padding-bottom: clamp(1.1rem, 0.8rem + 0.8vw, 1.6rem); }

/* =========================================================
   HERO — arte à direita (Alinne + vidro), texto à esquerda
   Coloque a arte em: uploads/hero-alinne.png
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(94vh, 920px);
  display: grid;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../uploads/hero-alinne.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
.hero .photo-slot { display: none; }  /* esconde o placeholder */

/* Véu branco da esquerda p/ direita: texto sempre legível à esquerda. */
.hero__overlay {
  background: linear-gradient(
    100deg,
    var(--c-bg) 0%,
    rgba(255, 255, 255, 0.92) 30%,
    rgba(255, 255, 255, 0.4) 52%,
    rgba(255, 255, 255, 0) 66%
  );
}

.hero__inner { position: relative; z-index: 1; }
.hero__copy {
  text-align: left;
  justify-items: start;
  align-items: start;
  margin-inline: 0;
  max-width: 42rem;
}
.hero__title { text-align: left; max-width: 20ch; }
.hero__big-idea, .hero__subhead { text-align: left; margin-inline: 0; }
.hero .eyebrow { text-align: left; }
.hero .chips { justify-content: flex-start; }
.hero .cta-row { justify-content: flex-start; }
.hero__foot__inner { justify-content: flex-start; gap: var(--space-lg); }

/* Mobile: retrato "+Mulher" em destaque, logo abaixo do texto. */
@media (max-width: 860px) {
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding-block: clamp(5rem, 16vw, 7rem) var(--space-xl);
  }
  .hero__bg {
    order: 1;                        /* imagem primeiro */
    position: relative;
    inset: auto;
    transform: none !important;      /* neutraliza o parallax no fluxo */
    width: 100%;
    max-width: 20rem;
    margin: 0 auto var(--space-lg);
    aspect-ratio: 3 / 4;
    background-image: url("../uploads/hero-alinne-mobile.png");
    background-position: center;
    background-size: contain;
    opacity: 1;
  }
  /* texto sobe pra encostar na base (branca) da foto */
  .hero__inner { order: 2; margin-top: clamp(-13rem, -32vw, -8rem); position: relative; z-index: 2; }
  .hero__overlay { display: none; }
  .hero__foot { order: 3; }
  .hero__copy { max-width: none; text-align: center; justify-items: center; align-items: center; }
  .hero__title { text-align: center; max-width: 22ch; margin-inline: auto; }
  .hero__title-sub { text-align: center; display: block; margin-inline: auto; }
  .hero__big-idea { text-align: center; }
  .hero .chips, .hero .cta-row { justify-content: center; }
  .hero .eyebrow { text-align: center; width: 100%; }
}

/* =========================================================
   PENTE FINO — diagramação de texto (impecável)
   ========================================================= */

/* Cursor custom era branco e sumia no fundo branco → nativo. */
body { cursor: auto !important; }
.cursor, .cursor-dot, .cursor-ring { display: none !important; }

/* Navegação de capítulos flutuante: decorativa e colidia → oculta. */
.chapter-nav { display: none !important; }

/* Equilíbrio de quebra de linha — mata órfãs e linhas desproporcionais. */
h1, h2, h3, h4,
.hero__title, .section-head h2, .section-head h3,
[class*="__title"], [class*="__label"],
.statement__huge, .statement__mid, .statement__sm,
.module__title, .pillar__label, .ai-cell__title, .card__title {
  text-wrap: balance;
}
p, li, blockquote,
.hero__big-idea, .hero__subhead, .module__body,
.pillar__desc, .ai-cell__text, .section-intro, .lede {
  text-wrap: pretty;
}

/* Comprimento de linha confortável. */
.hero__big-idea { max-width: 34rem; }
.section-intro, .lede { max-width: 46rem; }

/* Placeholders de foto: claros e elegantes (não pretos). */
.photo-slot,
.photo-slot--dark {
  background: linear-gradient(135deg, var(--c-mist) 0%, #ffffff 100%) !important;
  border: 1px solid var(--c-line) !important;
  border-radius: var(--radius-xl) !important;
  color: var(--c-text-mute) !important;
}
.photo-slot svg, .photo-slot--dark svg { color: var(--c-silver) !important; opacity: .8; }
.photo-slot__label { color: var(--c-text-soft) !important; }
.photo-slot__hint { color: var(--c-text-mute) !important; }

/* Statement caps: um respiro a menos de altura. */
.section-head h2 { letter-spacing: -0.012em; line-height: 1.02; }

/* =========================================================
   ACESSIBILIDADE & CONTRASTE — guidelines ui-ux-pro-max
   (Liquid Glass alerta p/ contraste; foco visível é High)
   ========================================================= */

/* Texto de apoio/legenda passa a bater WCAG AA (~4.5:1). */
:root {
  --c-text-soft: rgba(29, 27, 26, 0.74);  /* corpo secundário ~6:1 */
  --c-text-mute: #6f6c69;                  /* legendas ~4.7:1 (antes ~2.8:1) */
}

/* Rótulos pequenos (eyebrows): grafite legível — dourado pequeno reprova AA. */
.eyebrow,
[class*="eyebrow"],
.kicker,
.section-head .eyebrow,
.module__result-label,
.photo-slot__label,
.info-bar {
  color: var(--c-graphite) !important;
}

/* Foco visível p/ teclado (sem quebrar o estilo). */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
.cta:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--c-ink);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Ponteiro em tudo que é clicável. */
a, button, [role="button"], .cta, .chip, summary, label[for] {
  cursor: pointer;
}

/* Transições de hover no range recomendado (150–300ms) já vêm de --dur-fast. */

/* =========================================================
   ARREDONDAR TUDO — nenhum canto pontudo (pedido do cliente)
   ========================================================= */

/* Caixas, callouts, cards e containers de conteúdo. */
.module__result, .turn__callout, .cost__pull, .reframe, .reframe__row,
.stats, .flow, .journey, .mirror-list, .for-whom__grid, .includes,
.ticket, .guarantee, .countdown, .urgency__points, .signature,
.accordion, .accordion__item, .cta-band__inner, .offer__card,
.testimonial__person, .price-card, .plan, .feature, .benefit, .note-box,
.chapter-header, .chapter-header__bottom, .chapter-track {
  border-radius: var(--radius-xl);
}

/* Ícones em moldura → raio médio. */
.accordion__icon, .flow__icon, .signature__icon, .pillar__icon,
.ai-cell__icon, .module__result-icon, .chip svg, .stat__icon, .icon-box,
.guarantee__icon {
  border-radius: var(--radius-md) !important;
}

/* Avatares / fotos de pessoa → círculo. */
.testimonial__avatar, .avatar, [class*="avatar"], .person__photo {
  border-radius: var(--radius-pill) !important;
  overflow: hidden;
}

/* Badges e selos → pill. */
.badge-live, .badge, .guarantee__badge, .stat__pill, .tag, .flag, .ribbon {
  border-radius: var(--radius-pill) !important;
}

/* Imagens com moldura, slots e mídias → arredondadas. */
.photo-slot, .scene__media, .media, figure > img, .hero__media img,
.card img, .ticket img, .authority__photo, .authority__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* Inputs, botões e áreas de foco já arredondam via tokens/regra anterior. */
input, textarea, select, button, .cta, .btn { border-radius: var(--radius-md); }
.cta, .btn, .pill, .chip, .badge, .badge-live { border-radius: var(--radius-pill) !important; }

/* =========================================================
   HERO HEADLINE — hierarquia (frase 1 grande, frase 2 menor)
   ========================================================= */
.hero__title {
  font-size: clamp(2.3rem, 1.2rem + 3.9vw, 5rem);
  line-height: 1.0;
  max-width: 16ch;
}
.hero__title-sub {
  display: block;
  font-size: 0.46em;          /* bem menor que a frase principal */
  line-height: 1.16;
  font-style: normal;
  font-weight: 400;
  color: var(--c-text-soft);
  margin-top: 0.7rem;
  max-width: 26ch;
}
.hero__title-sub em { font-style: italic; color: var(--c-text); }

/* =========================================================
   FIX HOVER — botões clareavam o fundo (texto branco sumia)
   ========================================================= */
.cta:hover,
.btn-primary:hover {
  background: var(--c-ink-2) !important;   /* escurece, não clareia */
  color: var(--c-white) !important;
}
.cta:hover .cta__label,
.cta:hover .cta__label span,
.cta:hover .cta__label::after,
.cta:hover .cta__arrow { color: var(--c-white) !important; }

/* Botão secundário / ghost: no hover vira botão escuro sólido (visível). */
.cta--ghost:hover,
.btn-secondary:hover {
  background: var(--c-ink) !important;
  color: var(--c-white) !important;
  border-color: var(--c-ink) !important;
}
.cta--ghost:hover .cta__label,
.cta--ghost:hover .cta__label span,
.cta--ghost:hover .cta__label::after { color: var(--c-white) !important; }

/* =========================================================
   ELEMENTOS DE VIDRO — fundos sutis, encaixados por seção
   (opacidade baixa, atrás do texto, sem poluir; off no mobile)
   ========================================================= */

/* padrão comum do "vidro de fundo" */
#espelho, .cost, #virada, #acervo, #ia, .transformation, .close {
  position: relative;
  isolation: isolate;
}
#espelho::before, .cost::before, #virada::before, #acervo::before,
#ia::before, .transformation::before, .close::before {
  content: "";
  position: absolute;
  z-index: -1;                 /* atrás do conteúdo */
  pointer-events: none;
  aspect-ratio: 3 / 4;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.12;
  filter: saturate(0.85);
}

/* Problema — "o que se repete": splash (grito), topo-direita */
#espelho::before {
  top: -6%; right: -5%; width: min(40vw, 560px);
  background-image: url("../assets/glass/grito.png");
}
/* Custo — silêncio, esquerda */
.cost::before {
  top: 8%; left: -7%; width: min(34vw, 480px);
  background-image: url("../assets/glass/silencio.png");
  opacity: 0.10;
}
/* Virada — anel/torus (roda), direita */
#virada::before {
  top: 2%; right: -4%; width: min(30vw, 440px);
  background-image: url("../assets/glass/roda.png");
  opacity: 0.13;
}
/* Acervo/método — matriz (cubos), baixo-esquerda */
#acervo::before {
  bottom: -6%; left: -6%; width: min(34vw, 500px);
  background-image: url("../assets/glass/matriz.png");
  opacity: 0.10;
}
/* IA — onda sonora, direita (tema frequência/Som da Cura) */
#ia::before {
  top: 4%; right: -3%; width: min(40vw, 560px);
  background-image: url("../assets/glass/onda.png");
  opacity: 0.13;
}
/* Transformação (pilares) — mapa5, esquerda */
.transformation::before {
  top: 6%; left: -6%; width: min(32vw, 460px);
  background-image: url("../assets/glass/mapa5.png");
  opacity: 0.09;
}
/* Fechamento — escada, baixo-direita */
.close::before {
  bottom: -6%; right: -4%; width: min(34vw, 500px);
  background-image: url("../assets/glass/escada.png");
  opacity: 0.11;
}

@media (max-width: 860px) {
  #espelho::before, .cost::before, #virada::before, #acervo::before,
  #ia::before, .transformation::before, .close::before { display: none; }
}

/* =========================================================
   LEGIBILIDADE — reduz os títulos grandes demais
   (Cormorant em caixa alta pesava; escala mais confortável)
   ========================================================= */
:root {
  --text-2xl: clamp(1.55rem, 1.25rem + 1.1vw, 2.25rem);   /* era 2.75 */
  --text-3xl: clamp(1.95rem, 1.5rem + 1.7vw, 3rem);       /* era 4    */
  --text-4xl: clamp(2.25rem, 1.7rem + 2.4vw, 3.75rem);    /* era 5.5  */
  --text-hero: clamp(2.5rem, 1.7rem + 3.4vw, 5rem);       /* era 8    */
  --text-huge: clamp(2.75rem, 1.6rem + 4.6vw, 6rem);      /* era 11   */
}

/* Títulos não encostam nas bordas: largura máxima + quebra segura. */
.section-head h2,
.section-head h3,
.statement__huge, .statement__mid, .statement__sm,
[class*="__title"] {
  max-width: 22ch;
  overflow-wrap: break-word;
  hyphens: none;
}
/* Centralizados continuam centralizados dentro do limite. */
.section-head--center h2,
.offer .section-head h2,
#acesso .section-head h2,
.section--center h2 { margin-inline: auto; }

/* Corpo/lista nunca colados na borda. */
.section .container > * { max-width: 100%; }

/* Marquees cortam o excesso (não vazam pra borda). */
.chapter-track, .marquee, [class*="marquee"], [class*="track"] { overflow: hidden; }

/* =========================================================
   FOTO DA AUTORIDADE (Dra. Alinne)
   ========================================================= */
.authority__photo {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--glass-edge);
  box-shadow: var(--shadow-md);
  background: var(--c-mist);
}
.authority__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;   /* mantém o rosto enquadrado */
  display: block;
}

/* =========================================================
   QUEBRA DE PALAVRA — títulos animados (data-split)
   Palavra inteira não quebra; só o espaço entre palavras quebra.
   ========================================================= */
.char-title .word { display: inline-block; white-space: nowrap; }
.char-title .char--space { display: inline; white-space: normal; }
/* reforço geral: nada de hifenizar/quebrar palavra em títulos */
h1, h2, h3, .hero__title, .section-head h2, .scene__line,
[class*="__title"], .statement__huge, .statement__mid, .statement__sm {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

/* =========================================================
   CENAS — preencher (foto de fundo) e reduzir o vazio
   ========================================================= */
.scene { min-height: min(80vh, 760px); }
.scene .photo-slot { display: none; }
.scene__bg {
  background-repeat: no-repeat;
  background-size: contain;
}
/* Cena 1 (texto à esquerda) → Alinne à direita */
.scene:not(.scene--flip) .scene__bg {
  background-image: url("../uploads/alinne-cena-1.jpg");
  background-position: right bottom;
}
/* Cena 2 / flip (texto à direita) → Alinne à esquerda */
.scene--flip .scene__bg {
  background-image: url("../uploads/alinne-cena-2.jpg");
  background-position: left bottom;
}
.scene__line { font-size: var(--text-3xl); max-width: 18ch; }

@media (max-width: 860px) {
  .scene { min-height: auto; padding-block: clamp(3rem, 10vw, 5rem); }
  .scene__bg { background-size: cover; opacity: 0.18; }
  .scene__grade { background: linear-gradient(to bottom, rgba(255,255,255,.7), var(--c-bg) 72%) !important; }
}

/* =========================================================
   CENAS v2 — foto em FRAME arredondado (não full-bleed)
   proporcional, tamanho moderado, encaixada na lateral
   ========================================================= */
.scene {
  min-height: min(74vh, 700px);
  overflow: visible;
}
.scene__bg {
  position: absolute;
  inset: auto;
  top: 50%;
  right: clamp(1.5rem, 5vw, 5.5rem);
  left: auto;
  transform: translateY(-50%);
  width: min(34vw, 380px);
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--glass-edge);
  box-shadow: var(--shadow-lg);
  background-size: cover !important;
  background-position: center 12% !important;
}
.scene--flip .scene__bg {
  right: auto;
  left: clamp(1.5rem, 5vw, 5.5rem);
}
.scene__grade { display: none !important; }   /* não precisa mais do véu */
.scene__inner { position: relative; z-index: 2; }

@media (max-width: 860px) {
  .scene { min-height: auto; padding-block: clamp(3rem, 10vw, 5rem); }
  .scene__bg {
    position: relative; inset: auto; top: auto; left: auto; right: auto;
    transform: none; margin: 0 auto clamp(1.5rem, 6vw, 2.5rem);
    width: min(72vw, 300px); opacity: 1;
  }
  .scene__inner { text-align: center !important; }
  .scene__line { margin-inline: auto; }
}

/* =========================================================
   HEADER ENXUTO — só o CTA (foco no lead, sem links pra sair)
   ========================================================= */
.header-nav,
.nav-toggle,
.nav-panel { display: none !important; }

/* CTA sempre visível (inclusive mobile, já que não há mais menu). */
.header-cta { display: inline-flex !important; }

/* Marca à esquerda, CTA à direita — sem o vão do nav. */
.header-bar { justify-content: space-between; }

/* =========================================================
   FIX — vidro de fundo vazando pra seção vizinha (sobreposição)
   Cada seção corta o próprio conteúdo → nada invade a de cima/baixo.
   ========================================================= */
#espelho, .cost, #virada, #acervo, #ia, .transformation, .close, .scene {
  overflow: hidden;
}


/* Menção leve das 7 ferramentas (fim do acervo) */
.modules__note {
  margin: clamp(1.75rem, 3vw, 2.75rem) auto 0;
  max-width: 52ch;
  text-align: center;
  font-size: var(--text-lg);
  line-height: var(--leading-normal);
  color: var(--c-text-soft);
  text-wrap: pretty;
}
.modules__note strong { color: var(--c-ink); font-weight: 500; }

/* ============================================================
   NÚMEROS — nunca na serifa (Cormorant transforma 1→I e usa
   algarismos antigos). Todo elemento numérico usa a sans (Jost)
   com algarismos alinhados e tabulares. Regra permanente.
   ============================================================ */
.ticket__price-row,
.ticket__price,
.ticket__currency,
.ticket__installments,
.ticket__installments strong,
.price,
.sticky-cta__price,
.module__number,
.pillar__num,
.stat__n,
.ai-cell__num,
.mirror-row__index {
  font-family: var(--font-body) !important;
  font-variant-numeric: lining-nums tabular-nums !important;
  font-feature-settings: "lnum" 1, "tnum" 1 !important;
  font-style: normal;
}
/* a serifa (display) fica reservada só a texto — nunca a números */

/* ============================================================
   PENTE-FINO — ACESSIBILIDADE (contraste AA, foco, motion)
   ============================================================ */

/* Contraste do texto "mute": o patch de :root não alcança blocos
   .on-light/.on-dark (eles redeclaram o token localmente). Corrige
   nos dois contextos pra passar WCAG AA (4.5:1). */
.on-light {
  --c-text-mute: #6c6965;              /* sobre mist → ~4.6:1 */
}
.on-dark {
  --c-text-mute: rgba(243, 241, 238, 0.62); /* sobre ink → ~4.7:1 */
  --c-text-soft: rgba(243, 241, 238, 0.78);
}

/* Foco de teclado visível também no escuro (antes usava --c-ink,
   invisível sobre o rodapé preto). */
.on-dark :focus-visible,
.site-footer :focus-visible {
  outline-color: #ffffff !important;
  outline-offset: 3px;
}

/* Dourado como texto falha AA sobre fundo claro. Reserva o dourado
   para molduras/ícones; texto funcional vira grafite/tinta. */
.info-bar__link {
  color: var(--c-ink) !important;
}
.info-bar__link:hover {
  color: var(--c-gold-deep) !important;
}
.badge-live {
  color: var(--c-text) !important; /* adapta: tinta no claro, claro no escuro */
}

/* Tag "calm" dos depoimentos: escurece pra cruzar 4.5:1. */
:root {
  --c-calm: #5a6a80;
}

/* .chip é um selo informativo (li), não é clicável. */
li.chip {
  cursor: default;
}

/* Fechamento: sem placeholder de foto; vira coluna única e limpa. */
.close__portrait {
  display: none !important;
}
.close__inner {
  grid-template-columns: 1fr;
  max-width: 60rem;
}
.close__body {
  max-width: 54rem;
}

/* Motion reduzido também desliga pulsos/skeletons com duração fixa. */
@media (prefers-reduced-motion: reduce) {
  .live-dot,
  .skeleton::after,
  .aurora {
    animation: none !important;
  }
}

/* Indicador de campo obrigatório no formulário de inscrição. */
.form__req-note {
  font-size: var(--text-sm);
  color: var(--c-text-soft);
  margin-bottom: var(--space-sm);
}
.field__req { color: var(--c-bad); margin-left: 0.15em; }

/* Card de resumo do checkout: é .on-dark (texto claro), mas ficava
   com fundo de 6% de branco sobre a página branca = ilegível.
   Dá um fundo grafite sólido — vira um "recibo" escuro ao lado do form. */
.order-card.on-dark {
  background: var(--c-ink);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
}
.order-card.on-dark .order-card__row { border-color: rgba(255, 255, 255, 0.12); }

/* Inscrição sem formulário: checkout vira coluna única centrada,
   só com a oferta/resumo e as garantias. */
.checkout {
  grid-template-columns: 1fr;
  max-width: 34rem;
  margin-inline: auto;
}
.checkout__aside { position: static; }

/* ---------- Stats da autoridade: diagramação alinhada ----------
   Números um pouco menores e num bloco de altura fixa (2 linhas),
   ancorados na base — assim os rótulos começam todos na mesma
   linha, mesmo que um número ocupe 2 linhas. Legendas balanceadas. */
.stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 0.6rem + 1.4vw, 1.75rem);
  align-items: start;
}
.stat { display: flex; flex-direction: column; }
.stat__n {
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
  line-height: 1.05;
  min-height: 2.1em;              /* reserva ~2 linhas p/ alinhar rótulos */
  display: flex;
  align-items: flex-end;         /* número encosta na base do bloco */
  margin-bottom: 0.6rem;
}
.stat__label {
  text-wrap: balance;
  max-width: 22ch;
  line-height: 1.45;
}

/* Header no mobile: marca + botão encolhem pra o CTA não cortar. */
@media (max-width: 600px) {
  .header-bar { gap: var(--space-sm); }
  .brand__name { font-size: 0.86rem; letter-spacing: 0.02em; }
  .brand__role { font-size: 0.5rem; }
  .header-cta.cta { padding: 0.6rem 0.95rem !important; gap: 0.5rem; }
  .header-cta .cta__label { font-size: 0.66rem; letter-spacing: 0.08em; }
}

/* ---------- Seções split: texto de um lado, retrato do outro ----------
   Editorial, alternando lados (.split--flip inverte). Retratos com
   fundo branco que fundem na página. */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split__text { max-width: 34rem; }
.split__text .eyebrow { margin-bottom: var(--space-sm); }
.split__text h2 { margin-bottom: var(--space-md); }
.split__text p { color: var(--c-text-soft); font-size: var(--text-lg); line-height: var(--leading-normal); text-wrap: pretty; }
.split__media { margin: 0; }
.split__media img {
  width: 100%;
  max-width: 27rem;
  height: auto;
  display: block;
  margin-inline: auto;
}
/* alterna: foto à esquerda */
.split--flip .split__media { order: -1; }
.split--flip .split__text { margin-left: auto; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: var(--space-lg); text-align: center; justify-items: center; }
  .split__text { max-width: 42rem; }
  .split--flip .split__media { order: 0; }   /* foto sempre em cima no mobile */
  .split__media { order: -1; }
  .split__media img { max-width: 20rem; }
}

/* ============ AS 7 FERRAMENTAS — bento com capas de vidro ============ */
.tools-grid {
  list-style: none; margin: clamp(2rem, 4vw, 3.5rem) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: clamp(1rem, 1.6vw, 1.5rem);
}
.tool-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tool-card__art {
  margin: 0; aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #ffffff, var(--c-mist));
  display: grid; place-items: center; border-bottom: 1px solid var(--glass-edge);
}
.tool-card__art img { width: 100%; height: 100%; object-fit: contain; padding: 9%; display: block; }
.tool-card__body { padding: clamp(1.1rem, 1.4vw, 1.6rem); display: flex; flex-direction: column; gap: 0.4rem; }
.tool-card__tag {
  font-family: var(--font-body); font-size: var(--text-xs);
  letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--c-gold-deep);
}
.tool-card__name { font-family: var(--font-display); font-size: var(--text-lg); line-height: var(--leading-snug); color: var(--c-ink); }
.tool-card__desc { font-size: var(--text-sm); line-height: var(--leading-normal); color: var(--c-text-soft); text-wrap: pretty; }

/* ---------- Logo da marca (símbolo + wordmark) no header ---------- */
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand__mark { height: 2.1rem; width: auto; display: block; flex: none; }
.brand__text { display: grid; gap: 0.1rem; }
@media (max-width: 600px) {
  .brand__mark { height: 1.7rem; }
}

/* Logo lockup (PNG) no header, no lugar do wordmark em texto. */
.brand__logo { height: 1.5rem; width: auto; display: block; }
@media (max-width: 600px) { .brand__logo { height: 1.25rem; } }

/* =========================================================
   PARCELAMENTO — asterisco + nota de juros no ticket
   ========================================================= */
.ticket__ast {
  font-family: var(--font-body);
  font-size: 0.3em;
  font-weight: 500;
  vertical-align: super;
  color: var(--c-text-mute);
  margin-left: 0.1em;
}
.ticket__price { white-space: nowrap; }
.ticket__fine {
  font-size: var(--text-sm);
  color: var(--c-text-mute);
  margin-top: 0.5rem;
  font-variant-numeric: lining-nums tabular-nums;
}
