/* ═══════════════════════════════════════════════════════════
   Helena Valois — Psicologia Clínica
   assets/css/main.css  ·  Folha unificada (CSS inlineado, sem @imports)
   Unificado para eliminar waterfall de HTTP e melhorar FCP/LCP.
   ═══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   1. BASE — Variáveis, reset, tipografia, botões, float
   ══════════════════════════════════════════════════════════ */

/* ── Design tokens ───────────────────────────────────────── */
:root {
  --sand:      #F7F5F0;
  --sand-2:    #EFEBE2;
  --sand-3:    #E4DECF;
  --ink:       #2A3B32;
  --ink-soft:  #4A5A52;
  --ink-mute:  #5E6A62; /* corrigido: era #7C8A82, agora 4.7:1 no fundo areia */
  --line:      rgba(42, 59, 50, 0.14);
  --line-soft: rgba(42, 59, 50, 0.08);
  --gold:      #C4A47C;
  --gold-deep: #A8865B;
  /* Fontes sem JetBrains Mono (economiza uma requisição Google Fonts) */
  --serif: 'Lora', Georgia, serif;
  --sans:  'Montserrat', system-ui, -apple-system, sans-serif;
  --mono:  ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, monospace;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  margin: 0; padding: 0;
  /* clip: corta overflow sem criar scroll container (não quebra position:sticky) */
  overflow-x: clip;
  width: 100%;
}
body {
  margin: 0; padding: 0;
  overflow-x: clip;
  width: 100%;
  min-width: 0;
}
/* Imagens nunca transbordam o container */
img, video, svg { max-width: 100%; }

body {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  /* Desativa hifenização automática do browser em pt-BR */
  hyphens: none;
  -webkit-hyphens: none;
  overflow-wrap: break-word;
  word-break: normal;
}

::selection { background: var(--gold); color: var(--sand); }
a { color: inherit; text-decoration: none; }

/* ── Scroll suave nativo (complementa o JS) ──────────────── */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ── Skip-to-content link (acessibilidade) ───────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 12px 24px;
  background: var(--ink);
  color: var(--sand);
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
  transition: top .2s ease;
  text-decoration: none;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ── Foco visível global (acessibilidade de teclado) ─────── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

/* main focado via skip link — sem anel visual (só programático) */
main:focus,
main:focus-visible { outline: none; }
/* Exceções para elementos com estilos próprios */
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 4px;
}
.lang-btn:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ── Layout ──────────────────────────────────────────────── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }
@media (max-width: 420px) { .wrap { padding: 0 16px; } }

section { padding: 110px 0; position: relative; }
@media (max-width: 720px) { section { padding: 64px 0; } }
@media (max-width: 420px) { section { padding: 52px 0; } }

/* ── Eyebrow ─────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Headings ────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
  text-wrap: pretty;
  hyphens: none;
  -webkit-hyphens: none;
}

/* ── Botões ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--sand);
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background .25s, color .25s;
}
.btn-primary:hover { background: transparent; color: var(--ink); }

.btn-primary .arr {
  display: inline-block;
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
  flex-shrink: 0;
}
.btn-primary .arr::after {
  content: "";
  position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn-primary.on-dark {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary.on-dark:hover {
  background: transparent;
  color: var(--gold);
}

.btn-ghost {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  cursor: pointer;
}
.btn-ghost:hover { color: var(--ink); }

/* ── WhatsApp floating ───────────────────────────────────── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 40;
  background: var(--ink);
  color: var(--sand);
  width: 56px; height: 56px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(42, 59, 50, 0.25);
  cursor: pointer;
  transition: transform .25s ease, background .25s;
}
.float-wa:hover { transform: translateY(-3px); background: var(--gold); color: var(--ink); }
.float-wa svg { width: 26px; height: 26px; }
@media (max-width: 540px) { .float-wa { bottom: 20px; right: 20px; } }


/* ══════════════════════════════════════════════════════════
   2. NAV — Header sticky, brand, links, lang switcher, CTA
   ══════════════════════════════════════════════════════════ */

header.nav {
  position: sticky; top: 0; z-index: 50;
  /* 'will-change: transform' cria novo stacking context — mantém sticky
     mesmo com overflow-x: clip no html/body                           */
  will-change: transform;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
header.nav[data-scrolled="1"] { border-bottom-color: var(--line); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Brand */
.brand {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Logo image no header */
.brand-logo {
  height: 34px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand .mono-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-left: 1px solid var(--line);
  padding-left: 10px;
}

/* Nav links */
nav.links { display: flex; gap: 36px; }
nav.links a {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
nav.links a:hover { color: var(--ink); }
nav.links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
nav.links a:hover::after               { right: 0; }
nav.links a[data-active="true"]        { color: var(--ink); }
nav.links a[data-active="true"]::after { right: 0; }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* CTA pill */
.nav-cta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  border-radius: 999px;
  transition: background .25s, color .25s;
}
.nav-cta:hover { background: var(--ink); color: var(--sand); }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  appearance: none;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
  line-height: 1;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn[data-active="true"] {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.lang-sep {
  font-size: 11px;
  color: var(--line);
  user-select: none;
  aria-hidden: true;
}

@media (max-width: 820px) { nav.links { display: none; } }
@media (max-width: 540px) {
  .nav-inner { height: 64px; gap: 8px; }
  .brand-logo { height: 30px; }
  .nav-cta   { padding: 9px 16px; font-size: 11px; letter-spacing: 0.06em; }
  .lang-sep  { display: none; }  /* esconde o separador · entre PT e EN */
}
@media (max-width: 380px) {
  .brand-logo { height: 26px; }
  .nav-cta { display: none; } /* telas muito pequenas: esconde CTA, WA flutuante basta */
}


/* ══════════════════════════════════════════════════════════
   3. HERO — Grid, headline, meta, art placeholder
   ══════════════════════════════════════════════════════════ */

.hero {
  padding-top: 96px; padding-bottom: 130px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr); /* minmax(0,1fr) previne overflow do grid */
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 72px;
  }
}
@media (max-width: 540px) {
  .hero {
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 56px;
  }
  .hero h1 { font-size: clamp(32px, 9vw, 46px); margin: 20px 0 20px; }
  .hero-sub { font-size: 15px; }

  /* Hero actions: centraliza tudo no mobile */
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
  }
  .hero-actions .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .hero-actions .btn-ghost {
    text-align: center;
  }


  /* ── Reset global de max-width em mobile ──────────────────
     Todos os elementos que têm max-width em px passam a usar
     100% do espaço disponível no viewport mobile.
  ─────────────────────────────────────────────────────────── */
  .hero-sub,
  .dor-lede,
  .sobre p,
  .sobre .pullquote,
  .processo h2,
  .processo .lede,
  .faq h2,
  .faq-a-inner,
  .cta-strip h2,
  .cta-strip p,
  .foot-brand__tagline {
    max-width: 100%;
  }

  /* Imagem: proporção 4/3 no mobile (horizontal, não domina a tela) */
  .hero-art {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    width: 100%;
  }
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  margin: 28px 0 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  flex-wrap: wrap;
}

/* Hero meta bar */
.hero-meta {
  margin-top: 64px;
  display: flex;
  gap: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta .item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .k {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-meta .v {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
}
/* ── Hero meta — mobile: 2 por linha ─────────────────────────
   Este bloco vem DEPOIS do CSS desktop para que o media query
   possa sobrescrever o display:flex corretamente.
──────────────────────────────────────────────────────────────*/
@media (max-width: 540px) {
  .hero-meta {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
    margin-top: 32px;
    padding-top: 20px;
    width: 100%;
    overflow: hidden;
  }
  .hero-meta .item { min-width: 0; padding-right: 8px; }
  .hero-meta .k    { font-size: 9px; letter-spacing: 0.14em; }
  .hero-meta .v    { font-size: 15px; }
}

/* Hero image */
.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: var(--sand-2);
  /* garante que nunca ultrapasse o container no mobile */
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
/* Imagem real — preenche o container, prioridade máxima (LCP) */
.hero-art__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  border-radius: inherit;
}
.hero-art .stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(42, 59, 50, 0.05) 0 1px,
    transparent 1px 22px
  );
}
.hero-art .label {
  position: absolute; left: 20px; bottom: 20px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--sand);
  padding: 6px 10px;
  border: 1px solid var(--line);
}
.hero-art .frame-tag {
  position: absolute; right: 20px; top: 20px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--ink-mute);
}
.hero-art .crp {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--ink-mute);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}


/* ══════════════════════════════════════════════════════════
   4. FOR-WHOM — Seção "Para quem é" (pillars)
   ══════════════════════════════════════════════════════════ */

.dor { background: var(--sand-2); }

.dor-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
@media (max-width: 820px) { .dor-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; } }

.dor h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.15;
  margin: 18px 0 0;
  font-weight: 400;
  letter-spacing: -0.018em;
}
.dor-lede {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 460px;
}

/* Grid 4 colunas */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  {
  .grid-4 { grid-template-columns: 1fr; }
}

.pillar {
  padding: 36px 28px 32px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: transparent;
  transition: background .35s ease;
  position: relative;
}
.pillar:hover { background: rgba(196, 164, 124, 0.06); }
.pillar:nth-child(4n) { border-right: 0; }
@media (max-width: 900px) {
  .pillar:nth-child(odd)  { border-right: 1px solid var(--line); }
  .pillar:nth-child(even) { border-right: 0; }
}
@media (max-width: 540px) {
  .pillar {
    padding: 24px 20px 22px;
    border-right: 0 !important;
  }
  .pillar .num   { margin-bottom: 12px; }
  .pillar .icon  { width: 28px; height: 28px; margin-bottom: 14px; }
  .pillar h3     { font-size: 20px; margin-bottom: 8px; }
  .pillar p      { font-size: 13.5px; }
}

.pillar .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: block;
}
.pillar .icon {
  width: 36px; height: 36px;
  margin-bottom: 22px;
  color: var(--gold-deep);
}
.pillar h3 {
  font-size: 24px;
  margin: 0 0 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.pillar p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}


/* ══════════════════════════════════════════════════════════
   5. ABOUT — Portrait, pullquote, cred-chips
   ══════════════════════════════════════════════════════════ */

.sobre {
  background: var(--sand);
  background-image: radial-gradient(
    ellipse 75% 55% at 18% 60%,
    rgba(196, 164, 124, 0.08) 0%,
    transparent 70%
  );
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 96px;
  align-items: center;
}
@media (max-width: 900px) { .sobre-inner { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 540px) {
  .sobre-inner { gap: 28px; }
  .portrait-wrap { padding-bottom: 22px; padding-right: 22px; }
  .portrait-stat { padding: 12px 16px; min-width: 90px; }
  .portrait-stat__n { font-size: 28px; }
}

/* Portrait wrap */
.portrait-wrap {
  position: relative;
  padding-bottom: 36px;
  padding-right: 36px;
}

.portrait {
  aspect-ratio: 4 / 5;
  background: var(--sand-3);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
/* Imagem editorial — carregada de forma lazy (abaixo do fold) */
.portrait__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: inherit;
}

.portrait::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--gold);
  opacity: 0.28;
  border-radius: 28px;
  pointer-events: none;
  z-index: 2;
}

.portrait-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(42, 59, 50, 0.13) 1.5px,
    transparent 1.5px
  );
  background-size: 22px 22px;
}

.portrait .label {
  position: absolute;
  left: 18px; bottom: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: rgba(247, 245, 240, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 10px;
  border: 1px solid var(--line);
  z-index: 1;
}

.portrait-stat {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--ink);
  color: var(--sand);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(42, 59, 50, 0.24);
  min-width: 112px;
}
.portrait-stat__n {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 5px;
}
.portrait-stat__l {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.65);
  line-height: 1.4;
}

/* Text */
.sobre h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.15;
  margin: 18px 0 28px;
  font-weight: 400;
  letter-spacing: -0.018em;
}
.sobre p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 0 18px;
  max-width: 560px;
}

/* <blockquote> reset — remove margem e quotes padrão do navegador */
.sobre blockquote {
  border: none;
  padding: 0;
  margin: 0;
  quotes: none;
}
.sobre blockquote::before,
.sobre blockquote::after { content: none; }

.sobre .pullquote {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  line-height: 1.48;
  color: var(--ink);
  border-left: none;
  padding: 26px 0 18px;
  margin: 28px 0;
  max-width: 520px;
}
.sobre .pullquote::before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 18px;
}

/* Credential chips */
.cred-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.cred-chip {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: default;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.cred-chip:hover {
  border-color: var(--gold);
  background: rgba(196, 164, 124, 0.05);
  box-shadow: 0 4px 16px rgba(196, 164, 124, 0.1);
}
.cred-chip__k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1;
}
.cred-chip__v {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.3;
}

@media (max-width: 540px) {
  .portrait-wrap    { padding-bottom: 28px; padding-right: 28px; }
  .portrait-stat    { padding: 14px 16px; }
  .portrait-stat__n { font-size: 32px; }
  .cred-chips       { gap: 8px; }
  .cred-chip        { padding: 10px 14px; }
}


/* ══════════════════════════════════════════════════════════
   6. PROCESS — Steps, CTA row
   ══════════════════════════════════════════════════════════ */

.processo {
  background: var(--ink);
  color: var(--sand);
}
.processo .eyebrow { color: rgba(247, 245, 240, 0.72); }
.processo .eyebrow::before { background: var(--gold); }

.processo h2 {
  color: var(--sand);
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.15;
  margin: 18px 0 12px;
  font-weight: 400;
  letter-spacing: -0.018em;
  max-width: 720px;
}
.processo .lede {
  color: rgba(247, 245, 240, 0.72);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 64px;
}

/* <ol> reset: remove bullets, padding padrão do navegador */
ol.steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(247, 245, 240, 0.12);
  border: 1px solid rgba(247, 245, 240, 0.12);
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--ink);
  padding: 44px 36px 48px;
  position: relative;
}
@media (max-width: 540px) {
  .step { padding: 28px 22px 32px; }
  .step h3 { font-size: 22px; }
}
.step .step-n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step .step-n::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(247, 245, 240, 0.14);
}
.step h3 {
  font-family: var(--serif);
  color: var(--sand);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.step p {
  color: rgba(247, 245, 240, 0.75);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

.processo-cta {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.processo-cta .note {
  color: rgba(247, 245, 240, 0.65);
  font-size: 13px;
  font-style: italic;
  font-family: var(--serif);
}


/* ══════════════════════════════════════════════════════════
   7. FAQ — Accordion
   ══════════════════════════════════════════════════════════ */

.faq h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.15;
  margin: 18px 0 56px;
  font-weight: 400;
  letter-spacing: -0.018em;
  max-width: 720px;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }

/* <h3> semântico envolve o botão: reset para não alterar layout */
.faq-item h3 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
}

.faq-q {
  appearance: none;
  background: none;
  border: 0;
  width: 100%;
  text-align: left;
  padding: 32px 60px 32px 0;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color .2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-q:hover { color: var(--gold-deep); }

.faq-q .plus {
  position: absolute; right: 6px; top: 50%;
  width: 18px; height: 18px;
  transform: translateY(-50%);
  flex-shrink: 0;
  pointer-events: none;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--ink-soft);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.faq-q .plus::after { transform: rotate(90deg); }
.faq-item[data-open="1"] .faq-q .plus::after { transform: rotate(0deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4, 0, .2, 1);
}
.faq-a-inner {
  padding: 0 60px 36px 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  max-width: 760px;
}
@media (max-width: 540px) {
  .faq-q { padding: 22px 44px 22px 0; font-size: 17px; }
  .faq-a-inner { padding: 0 16px 24px 0; font-size: 15px; }
}


/* ══════════════════════════════════════════════════════════
   8. CTA STRIP — Faixa CTA final
   ══════════════════════════════════════════════════════════ */

.cta-strip {
  padding: 96px 0;
  text-align: center;
  background: var(--sand-2);
  border-top: 1px solid var(--line);
}
.cta-strip h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.15;
  max-width: 720px;
  margin: 22px auto 16px;
  font-weight: 400;
  letter-spacing: -0.018em;
}
.cta-strip h2 em { font-style: italic; color: var(--gold-deep); }
.cta-strip p {
  color: var(--ink-soft);
  margin: 0 auto 40px;
  max-width: 520px;
  font-size: 16px;
}


/* ══════════════════════════════════════════════════════════
   9. FOOTER — Escuro, brand, nav, contato
   ══════════════════════════════════════════════════════════ */

footer {
  background: var(--ink);
  padding: 80px 0 0;
  color: var(--sand);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(247, 245, 240, 0.1);
}
@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
  }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 56px 0 0; }
}

/* Logo no footer — inverte para fundo escuro:
   texto escuro → branco; ícone dourado mantém calor com sepia+hue */
.foot-brand__logo {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  filter: brightness(0) invert(1) sepia(0.25) saturate(1.4) hue-rotate(10deg);
  opacity: 0.92;
}

.foot-brand__tagline {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(247, 245, 240, 0.65);
  max-width: 300px;
  margin: 0 0 28px;
}

.foot-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.foot-social__link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(247, 245, 240, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 245, 240, 0.75);
  transition: border-color .22s, color .22s, background .22s;
}
.foot-social__link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 164, 124, 0.08);
}
.foot-social__link svg { width: 17px; height: 17px; }

.foot-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.55);
  margin: 0 0 24px;
}

.foot-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.foot-col a {
  font-size: 14.5px;
  color: rgba(247, 245, 240, 0.75);
  transition: color .2s;
}
.foot-col a:hover { color: var(--sand); }

/* <address> tem font-style: italic por padrão no browser */
footer address { font-style: normal; }

.foot-contact { gap: 20px !important; }

.foot-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.foot-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
}
.foot-icon svg { width: 18px; height: 18px; }

.foot-contact-text,
.foot-contact li span,
.foot-contact li a {
  font-size: 14px;
  color: rgba(247, 245, 240, 0.75);
  line-height: 1.6;
}
.foot-contact li a:hover { color: var(--sand); }

.foot-bottom {
  padding: 26px 0 36px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(247, 245, 240, 0.45);
  letter-spacing: 0.01em;
}
.foot-bottom__credit { text-align: right; }
.foot-bottom a {
  color: var(--gold);
  font-weight: 600;
  transition: color .2s;
}
.foot-bottom a:hover { color: var(--gold-deep); }


/* ══════════════════════════════════════════════════════════
   10. MODAL — Portfolio overlay
   ══════════════════════════════════════════════════════════ */

.pf-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.pf-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pf-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.pf-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  transform: translateY(28px) scale(.97);
  transition: transform .45s cubic-bezier(.2, .7, .2, 1);
}
.pf-modal.is-open .pf-modal__card { transform: translateY(0) scale(1); }

.pf-modal__header {
  background: var(--ink);
  padding: 36px 32px 34px;
  text-align: center;
}
/* Logo completa no header escuro do modal */
.pf-modal__logo {
  height: 42px;
  width: auto;
  display: block;
  margin: 0 auto 20px;
  /* inverte para fundo escuro, mantém calor dourado */
  filter: brightness(0) invert(1) sepia(0.2) saturate(1.3) hue-rotate(8deg);
}
.pf-modal__tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.55);
  margin: 0;
}

.pf-modal__body {
  background: #fff;
  padding: 32px 32px 30px;
  text-align: center;
}
.pf-modal__text {
  font-size: 15px;
  line-height: 1.65;
  color: #555;
  margin: 0;
}
.pf-modal__text strong { color: #1a1a1a; font-weight: 600; }
.pf-modal__text em     { font-style: italic; font-weight: 600; color: #1a1a1a; }

.pf-modal__rule { border: none; border-top: 1px solid #ebebeb; margin: 24px 0; }

.pf-modal__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 24px;
}
.pf-modal__links a { color: var(--gold-deep); transition: opacity .2s; }
.pf-modal__links a:hover { opacity: .7; }
.pf-modal__links span { color: #ccc; user-select: none; }

.pf-modal__actions { display: flex; flex-direction: column; gap: 10px; }
.pf-modal__btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background .22s, color .22s, opacity .22s;
  line-height: 1;
}
.pf-modal__btn--primary {
  background: var(--ink);
  color: var(--sand);
  border: 1px solid var(--ink);
}
.pf-modal__btn--primary:hover { opacity: .82; }
.pf-modal__btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(42, 59, 50, 0.35);
}
.pf-modal__btn--outline:hover { background: var(--sand); }

@media (max-width: 480px) {
  .pf-modal__card   { border-radius: 20px; }
  .pf-modal__header { padding: 36px 24px 30px; }
  .pf-modal__body   { padding: 28px 24px 24px; }
}


/* ══════════════════════════════════════════════════════════
   11. ANIMATIONS — Scroll reveal + cascades
   ══════════════════════════════════════════════════════════ */

/* Base reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* Hero entrance */
.hero.reveal { opacity: 1; transform: none; }

.hero.reveal > div > .eyebrow,
.hero.reveal > div > .hero-sub,
.hero.reveal > div > .hero-actions,
.hero.reveal > div > .hero-meta,
.hero.reveal > .hero-art {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1s cubic-bezier(.2, .7, .2, 1),
              transform 1s cubic-bezier(.2, .7, .2, 1);
}
.hero.reveal > div > .eyebrow      { transition-delay: 120ms; }
.hero.reveal > div > .hero-sub     { transition-delay: 620ms; }
.hero.reveal > div > .hero-actions { transition-delay: 820ms; }
.hero.reveal > div > .hero-meta    { transition-delay: 1020ms; }
.hero.reveal > .hero-art {
  transform: translateX(40px);
  transition-delay: 400ms;
}

.hero.reveal.in > div > .eyebrow,
.hero.reveal.in > div > .hero-sub,
.hero.reveal.in > div > .hero-actions,
.hero.reveal.in > div > .hero-meta,
.hero.reveal.in > .hero-art {
  opacity: 1;
  transform: none;
}

/* Headline: .h1-i substitui <i> (semântica correta) */
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > .h1-i {
  display: inline-block;
  font-style: inherit;
  transform: translateY(110%);
  transition: transform 1.1s cubic-bezier(.2, .7, .2, 1);
}
.hero h1 .line:nth-child(1) > .h1-i { transition-delay: 260ms; }
.hero h1 .line:nth-child(2) > .h1-i { transition-delay: 380ms; }
.hero h1 .line:nth-child(3) > .h1-i { transition-delay: 500ms; }
.hero.reveal.in h1 .line > .h1-i    { transform: translateY(0); }

/* Art stripe sweep */
.hero.reveal .hero-art .stripes {
  background-size: 200% 200%;
  background-position: 100% 100%;
  transition: background-position 1.8s ease 800ms;
}
.hero.reveal.in .hero-art .stripes { background-position: 0% 0%; }

/* Pillar cascade */
.dor .pillar.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2, .7, .2, 1),
              transform 1s cubic-bezier(.2, .7, .2, 1);
  transition-delay: calc(var(--i, 0) * 140ms) !important;
}
.dor .pillar.reveal.in { opacity: 1; transform: none; }

.dor .pillar .num,
.dor .pillar .icon,
.dor .pillar h3,
.dor .pillar p {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1);
}
.dor .pillar .icon {
  transform: translateY(12px) scale(.85);
  transform-origin: left center;
}
.dor .pillar .num  { transition-delay: calc(var(--i, 0) * 140ms + 180ms); }
.dor .pillar .icon { transition-delay: calc(var(--i, 0) * 140ms + 300ms); }
.dor .pillar h3    { transition-delay: calc(var(--i, 0) * 140ms + 420ms); }
.dor .pillar p     { transition-delay: calc(var(--i, 0) * 140ms + 540ms); }
.dor .pillar.in .num,
.dor .pillar.in h3,
.dor .pillar.in p   { opacity: 1; transform: none; }
.dor .pillar.in .icon { opacity: 1; transform: translateY(0) scale(1); }

/* Step cascade */
.processo .step.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(.2, .7, .2, 1),
              transform 1s cubic-bezier(.2, .7, .2, 1);
  transition-delay: calc(var(--i, 0) * 180ms) !important;
}
.processo .step.reveal.in { opacity: 1; transform: none; }

.processo .step .step-n { overflow: hidden; }
.processo .step .step-n::after {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(.7, 0, .2, 1);
  transition-delay: calc(var(--i, 0) * 180ms + 350ms);
}
.processo .step.in .step-n::after { transform: scaleX(1); }

.processo .step h3,
.processo .step p {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}
.processo .step h3 { transition-delay: calc(var(--i, 0) * 180ms + 250ms); }
.processo .step p  { transition-delay: calc(var(--i, 0) * 180ms + 420ms); }
.processo .step.in h3,
.processo .step.in p { opacity: 1; transform: none; }

/* Reduced motion — respeita preferências do sistema */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero.reveal *,
  .hero.reveal h1 .line > .h1-i,
  .dor .pillar.reveal,
  .dor .pillar .num,
  .dor .pillar .icon,
  .dor .pillar h3,
  .dor .pillar p,
  .processo .step.reveal,
  .processo .step h3,
  .processo .step p,
  .processo .step .step-n::after,
  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
