/* ============================================================
   Adolfino Aquino — Psicanálise Clínica
   Tema: Petróleo & Âmbar
   Tipografia: Cormorant Garamond (títulos) + Jost (texto)
   ============================================================ */

:root {
  /* Paleta (folder institucional) */
  --deep: #122e2a;        /* fundo mais profundo */
  --teal: #1c433d;        /* verde-petróleo */
  --teal-soft: #2a5750;
  --teal-line: #3c6b63;
  --olive: #7e8f5f;
  --gold: #d5a648;
  --gold-soft: #e7c87f;
  --cream: #f6f1e7;
  --sand: #ede5d3;
  --white: #fdfbf7;
  --ink: #22332f;
  --ink-soft: #52625d;
  --on-dark: #f2ecdf;
  --on-dark-soft: #c9d2cb;

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Segoe UI", Tahoma, sans-serif;

  --space-1: .5rem; --space-2: 1rem; --space-3: 1.5rem;
  --space-4: 2.5rem; --space-5: 4rem; --space-6: 6.5rem;

  --radius: 14px;
  --radius-arch: 999px 999px 18px 18px;
  --shadow-card: 0 10px 30px rgba(18, 46, 42, .10);
  --shadow-card-hover: 0 18px 44px rgba(18, 46, 42, .18);
  --ease: cubic-bezier(.33, 1, .68, 1);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--gold); color: var(--deep); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--gold); color: var(--deep); padding: .75rem 1.25rem;
  font-weight: 500; text-decoration: none; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Tipografia ---------- */
h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: inherit;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: -.005em; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h1 em, h2 em { font-style: italic; color: var(--gold); }
.section-dark h1 em, .section-dark h2 em { color: var(--gold-soft); }
p + p { margin-top: 1em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .8rem; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--olive);
  margin-bottom: var(--space-2);
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.section-dark .eyebrow { color: var(--gold-soft); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-soft); font-weight: 300; }
.section-dark .lead { color: var(--on-dark-soft); }

/* ---------- Layout ---------- */
.container { width: min(1160px, 92%); margin-inline: auto; }
.container-narrow { width: min(820px, 92%); margin-inline: auto; }
section { padding-block: clamp(4rem, 9vw, 7rem); }
.section-dark { background: var(--teal); color: var(--on-dark); }
.section-deep { background: var(--deep); color: var(--on-dark); }
.section-sand { background: var(--sand); }
.section-white { background: var(--white); }
.grid-2 { display: grid; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::before { display: none; }
.section-head { max-width: 720px; margin: 0 auto var(--space-5); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { display: none; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); }
.section-dark .section-head p, .section-deep .section-head p { color: var(--on-dark-soft); }

/* Padrão de pontos (folder) */
.dots {
  position: absolute; width: 130px; height: 90px; pointer-events: none; opacity: .55;
  background-image: radial-gradient(var(--gold) 2.2px, transparent 2.4px);
  background-size: 32px 30px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .85rem 2rem;
  font-family: var(--font-sans); font-size: .95rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  border-radius: 999px; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease);
  cursor: pointer;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-gold { background: var(--gold); color: var(--deep); box-shadow: 0 8px 22px rgba(213, 166, 72, .35); }
.btn-gold:hover { background: var(--gold-soft); box-shadow: 0 12px 28px rgba(213, 166, 72, .45); }
.btn-outline { border-color: var(--teal-line); color: var(--on-dark); background: transparent; }
.btn-outline:hover { background: rgba(255, 255, 255, .08); border-color: var(--gold-soft); }
.btn-outline-ink { border-color: rgba(34, 51, 47, .35); color: var(--ink); background: transparent; }
.btn-outline-ink:hover { border-color: var(--teal); background: rgba(28, 67, 61, .06); }
.btn-whats { background: #25d366; color: #073b1d; box-shadow: 0 8px 22px rgba(37, 211, 102, .35); }
.btn-whats:hover { background: #3fe07c; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: linear-gradient(rgba(18, 46, 42, .92), rgba(18, 46, 42, .92));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231, 200, 127, .14);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, .25); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .9rem; text-decoration: none; color: var(--on-dark); }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.brand-tag { font-size: .58rem; font-weight: 400; letter-spacing: .42em; text-transform: uppercase; color: var(--gold-soft); }
.main-nav ul { display: flex; gap: clamp(1.1rem, 2.2vw, 2.2rem); list-style: none; margin: 0; padding: 0; }
.main-nav a {
  position: relative; display: inline-block; padding: .5rem 0;
  font-size: .92rem; font-weight: 400; letter-spacing: .06em;
  text-decoration: none; color: var(--on-dark-soft);
  transition: color .25s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--on-dark); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.header-cta { min-height: 44px; padding: .55rem 1.4rem; font-size: .8rem; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 48px; height: 48px; padding: 12px;
  background: none; border: 1px solid rgba(231, 200, 127, .3); border-radius: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--on-dark); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--deep); border-bottom: 1px solid rgba(231, 200, 127, .18);
    padding: 1rem 4% 2rem;
    transform: translateY(-115%); transition: transform .35s var(--ease);
    visibility: hidden;
  }
  .main-nav.is-open { transform: translateY(0); visibility: visible; }
  .main-nav ul { flex-direction: column; gap: .25rem; }
  .main-nav a { display: block; padding: .9rem .5rem; font-size: 1.05rem; border-bottom: 1px solid rgba(255, 255, 255, .07); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(42, 87, 80, .9), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(126, 143, 95, .28), transparent 60%),
    var(--teal);
  color: var(--on-dark);
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem));
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}
.hero-inner { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .hero-inner { grid-template-columns: 1.08fr .92fr; } }
.hero h1 { margin: 0 0 1.4rem; color: var(--white); }
.hero .lead { max-width: 34em; color: var(--cream); }
.page-hero .lead { color: var(--cream); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-note { margin-top: 1.4rem; font-size: .9rem; color: var(--on-dark-soft); display: flex; align-items: center; gap: .5rem; }
.hero-note svg { width: 16px; height: 16px; color: var(--gold-soft); }

.arch-frame { position: relative; width: min(420px, 86%); margin-inline: auto; }
.arch-frame .arch-img {
  border-radius: var(--radius-arch);
  border: 1px solid rgba(231, 200, 127, .35);
  padding: 14px;
  background: linear-gradient(180deg, rgba(231, 200, 127, .12), rgba(231, 200, 127, .02));
}
.arch-frame img { border-radius: var(--radius-arch); width: 100%; height: auto; }
.arch-frame .dots { right: -34px; top: 6%; }
.arch-frame .dots.dots-b { left: -34px; right: auto; top: auto; bottom: 8%; }
.hero-badge {
  position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%);
  white-space: nowrap;
  background: var(--deep); border: 1px solid rgba(231, 200, 127, .4);
  color: var(--on-dark); border-radius: 999px; padding: .65rem 1.5rem;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
}
.hero-badge strong { color: var(--gold-soft); font-weight: 600; }

/* ---------- Barra de confiança ---------- */
.trustbar { background: var(--deep); color: var(--on-dark-soft); padding-block: 1.4rem; }
.trustbar ul {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 3rem;
  list-style: none; margin: 0; padding: 0;
  font-size: .88rem; letter-spacing: .1em; text-transform: uppercase;
}
.trustbar li { display: inline-flex; align-items: center; gap: .6rem; }
.trustbar svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.trustbar a { display: inline-flex; align-items: center; gap: .6rem; color: inherit; text-decoration: none; }
.trustbar a:hover { color: var(--gold-soft); }

/* ---------- Cards "O que trouxe você..." ---------- */
.reasons-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.reason-card {
  position: relative; display: flex; flex-direction: column; gap: .8rem;
  background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 2.2rem 1.9rem 2rem;
  text-decoration: none; box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.reason-card h3 { display: flex; align-items: baseline; gap: .55rem; font-weight: 600; color: var(--teal); }
.reason-card h3 .arrow { color: var(--gold); transition: transform .3s var(--ease); font-family: var(--font-sans); }
.reason-card:hover h3 .arrow { transform: translateX(6px); }
.reason-card p { font-size: .98rem; color: var(--ink-soft); }
.reason-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: linear-gradient(var(--gold), var(--olive));
  opacity: 0; transition: opacity .3s var(--ease);
}
.reason-card:hover::before { opacity: 1; }

/* ---------- Vídeo ---------- */
.video-shell { position: relative; width: min(360px, 88%); margin-inline: auto; }
.video-frame {
  position: relative; overflow: hidden;
  border-radius: var(--radius-arch);
  border: 1px solid rgba(28, 67, 61, .25);
  padding: 12px; background: var(--white);
  box-shadow: var(--shadow-card);
}
.video-frame video { border-radius: var(--radius-arch); width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: var(--deep); }
.video-shell .dots { right: -30px; bottom: 12%; }
.video-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(rgba(18, 46, 42, .18), rgba(18, 46, 42, .4));
  border: 0; border-radius: var(--radius-arch); margin: 12px;
  transition: opacity .3s var(--ease);
}
.video-play .play-circle {
  display: grid; place-items: center; width: 88px; height: 88px;
  background: rgba(246, 241, 231, .95); border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .35);
  transition: transform .3s var(--ease);
}
.video-play:hover .play-circle { transform: scale(1.07); }
.video-play svg { width: 30px; height: 30px; color: var(--teal); margin-left: 5px; }
.video-play.is-hidden { opacity: 0; pointer-events: none; }

/* ---------- Diferenciais ---------- */
.features-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: var(--space-4); }
.feature {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.7rem;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.section-dark .feature, .section-deep .feature {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(231, 200, 127, .16);
  box-shadow: none; color: var(--on-dark);
}
.feature-icon {
  display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 999px 999px 10px 10px;
  background: rgba(213, 166, 72, .16); color: var(--gold);
  margin-bottom: 1.2rem;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.feature p { font-size: .97rem; color: var(--ink-soft); }
.section-dark .feature p, .section-deep .feature p { color: var(--on-dark-soft); }

/* ---------- Especialidades (lista de links) ---------- */
.spec-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.spec-link {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--white); border: 1px solid rgba(28, 67, 61, .12);
  border-radius: 12px; padding: 1.15rem 1.4rem;
  text-decoration: none; color: var(--ink); font-weight: 400;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.spec-link .arrow { color: var(--gold); font-weight: 500; transition: transform .25s var(--ease); }
.spec-link:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.spec-link:hover .arrow { transform: translateX(5px); }

/* ---------- Planos ---------- */
.plans-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border-radius: 18px; padding: 2.4rem 2rem 2.2rem;
  border: 1px solid rgba(28, 67, 61, .12); box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.plan-featured { background: var(--teal); color: var(--on-dark); border-color: rgba(231, 200, 127, .45); }
.plan-flag {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--deep); border-radius: 999px;
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  padding: .35rem 1.1rem; white-space: nowrap;
}
.plan h3 { font-size: 1.45rem; margin-bottom: .3rem; }
.plan-desc { font-size: .95rem; color: var(--ink-soft); min-height: 3em; }
.plan-featured .plan-desc { color: var(--on-dark-soft); }
.plan-price { font-family: var(--font-serif); font-size: 2.7rem; font-weight: 600; color: var(--teal); margin: 1.1rem 0 .2rem; line-height: 1; }
.plan-featured .plan-price { color: var(--gold-soft); }
.plan-price small { font-family: var(--font-sans); font-size: .85rem; font-weight: 400; color: inherit; opacity: .75; letter-spacing: .04em; }
.plan ul { list-style: none; margin: 1.4rem 0 1.8rem; padding: 0; display: grid; gap: .7rem; font-size: .97rem; }
.plan li { display: flex; gap: .7rem; align-items: flex-start; }
.plan li svg { width: 18px; height: 18px; flex: none; margin-top: .28em; color: var(--gold); }
.plan .btn { margin-top: auto; }

/* ---------- Depoimentos (Google) ---------- */
.rating-badge {
  display: inline-flex; align-items: center; gap: .7rem;
  background: rgba(213, 166, 72, .14); border: 1px solid rgba(213, 166, 72, .4);
  border-radius: 999px; padding: .6rem 1.4rem;
  color: var(--on-dark); text-decoration: none;
  font-size: .95rem; letter-spacing: .04em;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.rating-badge:hover { background: rgba(213, 166, 72, .24); transform: translateY(-2px); }
.rating-badge strong { color: var(--gold-soft); font-weight: 600; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.testi-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testi-card {
  display: flex; flex-direction: column; gap: .9rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(231, 200, 127, .16);
  border-radius: var(--radius); padding: 1.9rem 1.7rem;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.testi-card:hover { transform: translateY(-5px); border-color: rgba(231, 200, 127, .4); }
.testi-card p { font-size: .98rem; color: var(--on-dark-soft); font-style: italic; }
.testi-card footer { margin-top: auto; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- Depoimento / quote ---------- */
.quote-block { position: relative; max-width: 760px; margin-inline: auto; text-align: center; }
.quote-block blockquote { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-style: italic; line-height: 1.45; }
.quote-block cite { display: block; margin-top: 1.4rem; font-family: var(--font-sans); font-style: normal; font-size: .85rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }
.quote-mark { font-family: var(--font-serif); font-size: 5.5rem; line-height: 0; color: var(--gold); display: block; margin-bottom: 2rem; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: .9rem; max-width: 820px; margin-inline: auto; }
.faq-item {
  background: var(--white); border: 1px solid rgba(28, 67, 61, .12);
  border-radius: 12px; overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item[open] { border-color: var(--gold); box-shadow: var(--shadow-card); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.5rem; cursor: pointer; list-style: none;
  font-weight: 500; font-size: 1.05rem; color: var(--teal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-serif); font-size: 1.7rem; line-height: 1;
  color: var(--gold); transition: transform .3s var(--ease); flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); font-size: 1rem; }
.section-dark .faq-item, .section-deep .faq-item { background: rgba(255,255,255,.05); border-color: rgba(231,200,127,.18); }
.section-dark .faq-item summary, .section-deep .faq-item summary { color: var(--on-dark); }
.section-dark .faq-item .faq-body, .section-deep .faq-item .faq-body { color: var(--on-dark-soft); }

/* ---------- CTA final ---------- */
.cta-banner {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(900px 420px at 50% -20%, rgba(213, 166, 72, .16), transparent 65%),
    var(--deep);
  color: var(--on-dark);
}
.cta-banner h2 { color: var(--white); max-width: 18em; margin-inline: auto; }
.cta-banner .lead { max-width: 36em; margin: 1.2rem auto 0; }
.cta-banner .hero-ctas { justify-content: center; }
.cta-banner .dots { left: 6%; top: 18%; }
.cta-banner .dots.dots-b { left: auto; right: 6%; top: auto; bottom: 14%; }

/* ---------- Página interna: hero curto ---------- */
.page-hero {
  background:
    radial-gradient(1000px 480px at 80% -30%, rgba(42, 87, 80, .95), transparent 65%),
    var(--teal);
  color: var(--on-dark);
  padding-top: calc(var(--header-h) + clamp(2.6rem, 6vw, 4.5rem));
  padding-bottom: clamp(2.8rem, 6vw, 4.5rem);
}
.page-hero h1 { color: var(--white); max-width: 16em; }
.page-hero .lead { max-width: 40em; margin-top: 1.2rem; }
.breadcrumb { font-size: .85rem; letter-spacing: .04em; color: var(--on-dark-soft); margin-bottom: 1.6rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }
.breadcrumb a { color: var(--gold-soft); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Prosa (blog / especialidades) ---------- */
.prose { max-width: 720px; }
.prose h2 { margin: 2.6rem 0 1rem; color: var(--teal); }
.prose h3 { margin: 2rem 0 .8rem; color: var(--teal); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--gold); }
.prose strong { font-weight: 500; color: var(--teal); }
.prose blockquote {
  margin: 2rem 0; padding: 1.2rem 1.6rem;
  border-left: 3px solid var(--gold); background: var(--white);
  border-radius: 0 12px 12px 0; font-family: var(--font-serif);
  font-size: 1.25rem; font-style: italic; color: var(--teal);
}
.article-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--on-dark-soft); }

/* ---------- Blog cards ---------- */
.post-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.post-card {
  display: flex; flex-direction: column; gap: .9rem;
  background: var(--white); border-radius: var(--radius); padding: 2.1rem 1.9rem;
  border: 1px solid rgba(28, 67, 61, .1); box-shadow: var(--shadow-card);
  text-decoration: none; color: var(--ink);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.post-tag { font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--olive); }
.post-card h3 { color: var(--teal); font-weight: 600; }
.post-card p { font-size: .97rem; color: var(--ink-soft); }
.post-card .post-more { margin-top: auto; font-size: .85rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

/* ---------- Passos (agendamento) ---------- */
.steps { counter-reset: step; display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.step {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: 2.6rem 1.8rem 2rem; box-shadow: var(--shadow-card);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -1.1rem; left: 1.6rem;
  font-family: var(--font-serif); font-size: 3.4rem; font-weight: 600; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--gold);
}
.step h3 { font-size: 1.25rem; margin-bottom: .5rem; color: var(--teal); }
.step p { font-size: .96rem; color: var(--ink-soft); }

/* ---------- Contato ---------- */
.contact-cards { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.contact-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: .5rem;
  background: var(--white); border-radius: var(--radius); padding: 1.8rem 1.6rem;
  border: 1px solid rgba(28, 67, 61, .1); text-decoration: none; color: var(--ink);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-card); }
.contact-card svg { width: 26px; height: 26px; color: var(--teal); }
.contact-card strong { font-weight: 500; color: var(--teal); }
.contact-card span { font-size: .95rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep); color: var(--on-dark-soft); padding: 4.5rem 0 2rem; font-size: .95rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-bottom: 3rem; }
.footer-brand .brand-name { font-size: 1.25rem; color: var(--on-dark); }
.footer-brand p { margin-top: 1rem; max-width: 30em; }
.site-footer h4 { font-family: var(--font-sans); font-size: .8rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer a { color: var(--on-dark-soft); text-decoration: none; transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-social { display: flex; gap: .9rem; margin-top: 1.4rem; }
.footer-social a {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid rgba(231, 200, 127, .25); border-radius: 50%;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); background: rgba(213, 166, 72, .12); }
.footer-social svg { width: 19px; height: 19px; color: var(--on-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09); padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: .8rem 2rem; justify-content: space-between;
  font-size: .82rem;
}
.footer-note { font-size: .82rem; opacity: .8; max-width: 52em; margin-top: 1.2rem; }

/* ---------- WhatsApp flutuante ---------- */
.whats-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 1200;
  display: grid; place-items: center; width: 60px; height: 60px;
  background: #25d366; border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .3);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whats-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 36px rgba(0, 0, 0, .35); }
.whats-float svg { width: 32px; height: 32px; color: #fff; }
.whats-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .6);
  animation: whats-pulse 2.4s ease-out infinite;
}
@keyframes whats-pulse {
  0% { transform: scale(1); opacity: 1; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; } .reveal-d4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilitários ---------- */
.mt-1 { margin-top: var(--space-1); } .mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); } .mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.relative { position: relative; }

@media (max-width: 600px) {
  :root { --header-h: 72px; }
  .brand-name { font-size: 1.1rem; }
  .brand-tag { letter-spacing: .3em; }
  .hero-ctas .btn { width: 100%; }
  .whats-float { right: 14px; bottom: 14px; }
}
