/* =====================================================================
   Billion Bioestética — Prévia visual
   Design System: Tipo 01 (Premium Delicado Editorial) — paleta adaptada
   Paleta extraída das fotos reais: verde esmeralda + dourado + creme
   Sem dependências externas. Abre offline.
   ===================================================================== */

:root {
  /* Verdes (marca) */
  --green-900: #0D2F26;
  --green-800: #123B30;
  --green-700: #1A5040;   /* esmeralda principal */
  --green-600: #2C6552;

  /* Dourado (acento) */
  --gold-600: #B08A2E;
  --gold-500: #C7A24C;
  --gold-300: #E2CB8E;

  /* Papel / creme */
  --paper-100: #FBF8F2;
  --paper-200: #F4EEE1;   /* fundo dominante */
  --paper-300: #ECE3D3;

  /* Tinta / texto */
  --ink-900: #1E2A24;
  --ink-700: #4F5A52;
  --ink-500: #7C857C;

  --white: #ffffff;
  --line: rgba(30, 42, 36, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);

  --shadow-100: 0 1px 2px rgba(13, 47, 38, 0.05);
  --shadow-200: 0 14px 40px -22px rgba(13, 47, 38, 0.35);

  --font-display: 'Cormorant Garamond', 'Hoefler Text', 'Iowan Old Style',
                  'Palatino Linotype', Palatino, Georgia, 'Times New Roman', serif;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1200px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--paper-200);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3 { overflow-wrap: break-word; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ---------- Tipografia auxiliar ---------- */
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-600);
  margin-bottom: 16px;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: var(--gold-300); }

.section-title {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  color: var(--ink-900);
}
.section-title.center { text-align: center; }

.section-sub {
  margin-top: 18px;
  font-size: 19px;
  color: var(--ink-700);
  max-width: 620px;
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

.muted { color: var(--ink-500); }
em { font-style: italic; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 0 28px;
  height: 52px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-sm { height: 44px; padding: 0 22px; font-size: 15px; }
.btn-lg { height: 58px; padding: 0 38px; font-size: 17px; }

.btn-primary { background: var(--green-700); color: var(--white); box-shadow: var(--shadow-100); }
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: var(--shadow-200); }

.btn-ghost { background: transparent; color: var(--green-700); border-color: rgba(26, 80, 64, 0.35); }
.btn-ghost:hover { border-color: var(--green-700); background: rgba(26, 80, 64, 0.05); transform: translateY(-2px); }

.btn-light { background: var(--gold-500); color: var(--green-900); }
.btn-light:hover { background: var(--gold-300); transform: translateY(-2px); box-shadow: 0 14px 40px -22px rgba(199,162,76,.7); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(244, 238, 225, 0.55);
  -webkit-backdrop-filter: saturate(165%) blur(14px);
  backdrop-filter: saturate(165%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(244, 238, 225, 0.82);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px -20px rgba(13, 47, 38, 0.45);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 78px; }

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark { width: 40px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--font-display); font-size: 21px; letter-spacing: 0.16em; color: var(--green-800); }
.brand-text em { font-style: normal; font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-600); margin-top: 3px; }

.nav { display: flex; gap: 30px; }
.nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-700);
  position: relative; padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold-500); transition: width .25s var(--ease);
}
.nav a:hover { color: var(--green-800); }
.nav a:hover::after { width: 100%; }

.header-cta { margin-left: 4px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--green-800); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-color: var(--paper-200);
  background-image:
    linear-gradient(90deg,
      rgba(244, 238, 225, 0.96) 0%,
      rgba(244, 238, 225, 0.88) 26%,
      rgba(244, 238, 225, 0.46) 44%,
      rgba(244, 238, 225, 0.06) 60%,
      rgba(244, 238, 225, 0.00) 72%),
    url("../img/fundo-hero.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
/* Imagem mobile da especialista: oculta no desktop (hero usa background) */
.hero-mobile-img { display: none; }
.hero-inner {
  display: flex;
  align-items: center;
  min-height: 660px;
  padding: 132px 32px 92px;
}
.hero-copy { max-width: 540px; position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green-900);
}
.hero h1 em { color: var(--gold-600); font-style: italic; }
.hero .lead { margin-top: 24px; font-size: 20px; color: var(--ink-700); max-width: 470px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-proofs {
  display: flex; flex-wrap: wrap; gap: 12px 26px;
  margin-top: 32px; padding-top: 26px; border-top: 1px solid rgba(30, 42, 36, 0.18);
  font-size: 14px; color: var(--ink-700);
}
.hero-proofs li { position: relative; padding-left: 18px; }
.hero-proofs li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-500); font-size: 11px; top: 2px; }
.hero-proofs strong { color: var(--green-800); }

/* ---------- Ribbon ---------- */
.ribbon { background: var(--green-800); color: var(--paper-100); }
.ribbon-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px 20px; padding: 18px 32px;
  font-family: var(--font-display); font-size: 19px; font-style: italic;
  letter-spacing: .01em;
}
.ribbon-inner span[aria-hidden] { color: var(--gold-400, var(--gold-500)); opacity: .7; }

/* ---------- Sections base ---------- */
.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 68px 0; } }

/* ---------- Trust ---------- */
.trust {
  background:
    radial-gradient(72% 90% at 100% 0%, rgba(199, 162, 76, 0.07), transparent 58%),
    var(--paper-200);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  margin-top: 52px;
}
.trust-card {
  background: var(--paper-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-100);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-200); }
.trust-num { font-family: var(--font-display); font-size: 46px; line-height: 1; color: var(--green-700); display: block; }
.trust-icon { font-size: 26px; color: var(--gold-500); display: block; margin-bottom: 6px; }
.trust-card h3 { font-size: 20px; margin: 14px 0 8px; color: var(--ink-900); }
.trust-card p { font-size: 15px; color: var(--ink-700); line-height: 1.55; }

/* ---------- Bio split ---------- */
.clinica { background: var(--paper-100); position: relative; overflow: hidden; }
.clinica::before {
  content: '';
  position: absolute;
  top: 50%; right: -96px;
  transform: translateY(-50%);
  width: 460px; height: 460px;
  background: url("../img/logo-verde-favi-billion.png") no-repeat center / contain;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.bio-split {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center;
}
.bio-figure {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 40px 70px -40px rgba(13,47,38,.5);
  aspect-ratio: 3 / 3.6;
}
.bio-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.bio-copy { max-width: 600px; }
.bio-copy > p { margin-top: 18px; color: var(--ink-700); }
.bio-list { margin: 26px 0 30px; display: grid; gap: 12px; }
.bio-list li { position: relative; padding-left: 30px; color: var(--ink-900); font-size: 16px; }
.bio-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; color: var(--green-700); font-weight: 700;
}

/* ---------- Tratamentos (atmosfera verde profunda) ---------- */
.tratamentos {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(85% 120% at 0% 0%, rgba(199, 162, 76, 0.12), transparent 55%),
    linear-gradient(180deg, var(--green-900), var(--green-800));
}
.tratamentos::before {
  content: '';
  position: absolute;
  left: -130px; bottom: -130px;
  width: 520px; height: 520px;
  background: url("../img/logo-verde-favi-billion.png") no-repeat center / contain;
  filter: brightness(0) invert(1);
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}
.tratamentos > .container { position: relative; z-index: 1; }
.tratamentos .eyebrow { color: var(--gold-300); }
.tratamentos .section-title { color: var(--white); }
.tratamentos .section-sub { color: rgba(255, 255, 255, 0.82); }
.service-media {
  margin: 0; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-200); position: relative; aspect-ratio: 16 / 10;
}
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 18px 12px;
  font-size: 12px; letter-spacing: .04em; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(13, 47, 38, .74));
}
.services-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}
.service-feature,
.service-panel,
.service-complements article {
  background: var(--paper-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-100);
}
.service-feature {
  position: relative;
  overflow: hidden;
  padding: 42px;
  min-height: 100%;
}
.service-feature::after {
  content: '';
  position: absolute;
  right: -72px;
  bottom: -96px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  border: 1px solid rgba(199, 162, 76, .3);
  background: radial-gradient(circle, rgba(199,162,76,.12), transparent 64%);
  pointer-events: none;
}
.service-feature > * {
  position: relative;
  z-index: 1;
}
.service-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--paper-300);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-feature h3,
.service-panel h3,
.service-complements h3 {
  color: var(--green-800);
  margin-top: 18px;
}
.service-feature h3 { font-size: clamp(30px, 3.4vw, 42px); line-height: 1.05; }
.service-feature p {
  margin-top: 16px;
  max-width: 620px;
  color: var(--ink-700);
}
.service-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.service-notes div,
.service-meta div {
  border-left: 2px solid var(--gold-500);
  padding-left: 14px;
}
.service-notes strong,
.service-meta dt {
  display: block;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 700;
}
.service-notes span,
.service-meta dd {
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.5;
}
.service-chip-list,
.service-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.service-chip-list li,
.service-mini-list li {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-900);
  background: var(--paper-300);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
}
.service-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--green-700);
  font-weight: 700;
  border-bottom: 1px solid rgba(26,80,64,.28);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.service-link:hover { color: var(--gold-600); border-color: rgba(176,138,46,.55); }
.service-stack { display: grid; gap: 18px; }
.service-panel {
  padding: 30px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service-panel:hover,
.service-complements article:hover { transform: translateY(-4px); box-shadow: var(--shadow-200); border-color: rgba(199,162,76,.38); }
.service-panel p,
.service-complements p { margin-top: 10px; font-size: 15px; color: var(--ink-700); }
.service-meta {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.service-meta dd { margin: 4px 0 0; }
.service-complements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.service-complements article {
  padding: 26px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service-complements span {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-complements h3 { font-size: 22px; }
.service-action {
  background: var(--green-700) !important;
  border: 1px solid rgba(199, 162, 76, 0.42) !important;
}
.service-action span,
.service-action h3 { color: var(--white); }
.service-action p { color: rgba(255,255,255,.82); }
.service-action .btn { margin-top: 18px; }

/* ---------- Estrutura / galeria ---------- */
.estrutura { background: var(--paper-100); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}
.g-item { margin: 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-100); aspect-ratio: 4 / 3; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.g-item:hover img { transform: scale(1.05); }
/* crops padronizados: anula o mosaico antigo (span) para ratio consistente */
.g-tall { grid-row: auto; }
.g-wide { grid-column: auto; }

/* ---------- Experiência (bloco verde) ---------- */
.experiencia {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(199,162,76,0.16), transparent 60%),
    var(--green-800);
  color: var(--paper-100);
}
.exp-grid {
  display: grid; grid-template-columns: 1fr 0.9fr; gap: 56px; align-items: center;
  padding: 96px 32px;
}
.exp-copy { max-width: 520px; }
.exp-copy h2 { font-size: clamp(30px, 4vw, 42px); line-height: 1.12; color: var(--white); }
.exp-copy h2 + p { margin-top: 20px; color: rgba(255,255,255,.82); font-size: 18px; }
.exp-copy .btn { margin-top: 30px; }
.exp-figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 80px -40px rgba(0,0,0,.6); aspect-ratio: 4 / 3.2; }
.exp-figure img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq {
  background:
    radial-gradient(64% 80% at 0% 0%, rgba(26, 80, 64, 0.05), transparent 56%),
    var(--paper-200);
}
.faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.faq-head { position: sticky; top: 100px; }
.faq-head .section-sub { margin-top: 16px; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--paper-100); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 4px 26px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item[open] { border-color: rgba(199,162,76,.45); box-shadow: var(--shadow-100); }
.faq-item summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-size: 21px; color: var(--green-800);
  padding: 22px 36px 22px 0; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--font-sans); font-size: 26px; color: var(--gold-600); transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body { padding: 0 0 22px; }
.faq-body p { color: var(--ink-700); font-size: 16px; }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(199,162,76,0.18), transparent 60%),
    var(--green-900);
  color: var(--paper-100);
  text-align: center;
}
.cta-final::before {
  content: '';
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: 520px; height: 520px;
  background: url("../img/logo-verde-favi-billion.png") no-repeat center / contain;
  filter: brightness(0) invert(1);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.cta-inner { position: relative; z-index: 1; padding: 100px 32px; }
.cta-inner h2 { font-size: clamp(32px, 4.6vw, 50px); line-height: 1.08; color: var(--white); max-width: 760px; margin: 0 auto; }
.cta-inner > p { margin: 20px auto 0; max-width: 540px; color: rgba(255,255,255,.82); font-size: 18px; }
.cta-inner .btn { margin-top: 36px; }
.cta-phone { margin-top: 20px !important; font-size: 15px; color: rgba(255,255,255,.7); letter-spacing: .02em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.78); padding-top: 64px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid var(--line-light);
}
.footer-brand .brand-mark { width: 56px; filter: brightness(0) invert(1); opacity: .92; }
.footer-tag { margin-top: 16px; font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--gold-300); }
.footer-col h4 { font-family: var(--font-sans); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-300); margin-bottom: 14px; }
.footer-col p { font-size: 15px; line-height: 1.7; margin-bottom: 6px; }
.footer-col a:hover { color: var(--gold-300); }
.footer-bottom { padding: 26px 32px 40px; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.55); }
.footer-disclaimer { max-width: 760px; line-height: 1.6; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  background: #1FA855; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(31,168,85,.7);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Prova visual cedo ---------- */
.prova { background: var(--paper-100); }
.prova-split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.prova-figure {
  margin: 0; position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 40px 70px -40px rgba(13, 47, 38, .5); aspect-ratio: 4 / 3.1;
}
.prova-figure img { width: 100%; height: 100%; object-fit: cover; }
.prova-figcap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 20px 14px;
  font-size: 13px; letter-spacing: .04em; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(13, 47, 38, .72));
}
.prova-copy { max-width: 560px; }
.prova-rating { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.prova-stars { color: var(--gold-500); font-size: 22px; letter-spacing: 2px; }
.prova-rating strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--green-800); line-height: 1.1; }
.prova-rating span { font-size: 14px; color: var(--ink-700); }
.prova-credencial {
  margin-top: 22px; padding: 14px 18px; border-left: 2px solid var(--gold-500);
  font-size: 15px; color: var(--ink-900); background: var(--paper-200); border-radius: 0 10px 10px 0;
}
.prova-facts { margin: 24px 0 0; display: grid; gap: 16px; }
.prova-facts li { display: flex; gap: 16px; }
.prova-n { font-family: var(--font-display); font-size: 22px; color: var(--gold-600); line-height: 1; min-width: 30px; }
.prova-facts strong { display: block; color: var(--ink-900); font-size: 15px; margin-bottom: 2px; }
.prova-facts div { font-size: 14px; color: var(--ink-700); line-height: 1.5; }
.prova-disclaimer { margin-top: 24px; font-size: 13px; color: var(--ink-500); line-height: 1.55; max-width: 520px; }

/* ---------- Avaliações (carrossel Google manual) ---------- */
.reviews {
  position: relative; overflow: hidden;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(199, 162, 76, 0.16), transparent 60%),
    linear-gradient(180deg, var(--green-800), var(--green-900));
  color: var(--paper-100);
}
.reviews::before {
  content: ''; position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
  width: 440px; height: 440px;
  background: url("../img/logo-verde-favi-billion.png") no-repeat center / contain;
  filter: brightness(0) invert(1); opacity: 0.05; pointer-events: none; z-index: 0;
}
.reviews-inner { position: relative; z-index: 1; }
.reviews-head { text-align: center; max-width: 720px; margin: 0 auto; }
.reviews-head .eyebrow { color: var(--gold-300); }
.reviews-head h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.12; color: var(--white); }
.reviews-sub { margin: 18px auto 0; font-size: 17px; color: rgba(255, 255, 255, .82); max-width: 580px; }
.reviews-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 24px; margin-top: 26px; }
.reviews-badge { display: inline-flex; align-items: center; gap: 12px; padding: 12px 20px; border-radius: 999px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18); }
.reviews-score { font-family: var(--font-display); font-size: 30px; color: var(--gold-300); line-height: 1; }
.reviews-stars { color: var(--gold-300); letter-spacing: 2px; }
.reviews-count { font-size: 14px; color: rgba(255, 255, 255, .85); }
.reviews-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--paper-100); font-weight: 600; font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .4); padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.reviews-cta:hover { color: var(--gold-300); border-color: var(--gold-300); }

/* Carrossel manual de avaliações */
.reviews-carousel { position: relative; z-index: 1; margin-top: 44px; display: flex; align-items: center; gap: 14px; }
.reviews-track {
  flex: 1; min-width: 0;
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4px;
  padding: 6px 4px 18px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .35) transparent;
  -webkit-overflow-scrolling: touch;
}
.reviews-track::-webkit-scrollbar { height: 6px; }
.reviews-track::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .28); border-radius: 999px; }
.reviews-track::-webkit-scrollbar-track { background: transparent; }
.google-review-card {
  flex: 0 0 clamp(280px, 32%, 360px);
  scroll-snap-align: start;
  background: var(--paper-100);
  border-radius: var(--radius-md);
  padding: 26px 26px 28px;
  box-shadow: 0 20px 50px -34px rgba(0, 0, 0, .5);
  display: flex; flex-direction: column; gap: 14px;
}
.google-review-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.google-review-id { display: flex; align-items: center; gap: 12px; }
.google-review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-700); color: var(--paper-100);
  font-family: var(--font-display); font-size: 20px;
}
.google-review-name { display: block; color: var(--ink-900); font-size: 15px; font-weight: 600; line-height: 1.2; }
.google-review-time { font-size: 12px; color: var(--ink-500); }
.google-review-source {
  font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--green-700); flex-shrink: 0;
  background: var(--paper-300); border-radius: 999px; padding: 5px 12px;
}
.google-review-stars { color: var(--gold-500); letter-spacing: 2px; font-size: 15px; }
.google-review-text { color: var(--ink-700); font-size: 14.5px; line-height: 1.6; }
.reviews-nav {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, .10); border: 1px solid rgba(255, 255, 255, .22); color: var(--paper-100);
  font-size: 24px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.reviews-nav:hover { background: rgba(255, 255, 255, .2); transform: translateY(-1px); }

/* ---------- Localização premium ---------- */
.local { background: linear-gradient(180deg, var(--paper-200), var(--paper-300)); }
.local-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.local-copy { max-width: 520px; }
.local-lead { margin-top: 18px; color: var(--ink-700); }
.local-info { margin: 26px 0 30px; display: grid; gap: 16px; }
.local-info li { display: flex; gap: 16px; }
.local-n { font-family: var(--font-display); font-size: 22px; color: var(--gold-600); min-width: 30px; line-height: 1.2; }
.local-info strong { display: block; color: var(--ink-900); font-size: 15px; margin-bottom: 2px; }
.local-info div { font-size: 14px; color: var(--ink-700); line-height: 1.5; }
.local-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.local-map { position: relative; }
.local-map iframe {
  width: 100%; height: 460px; border: 0; border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -34px rgba(13, 47, 38, .4); display: block;
}
.local-fachada-nota { margin-top: 14px; font-size: 12px; color: var(--ink-500); line-height: 1.5; }

/* =====================================================================
   Responsivo
   ===================================================================== */
@media (max-width: 992px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.menu-open .nav {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--paper-100); border-bottom: 1px solid var(--line);
    padding: 14px 32px 24px; box-shadow: var(--shadow-200);
  }
  .site-header.menu-open .nav a { padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--line); }

  .hero-inner { min-height: 560px; padding: 116px 32px 68px; }
  .hero .lead { max-width: 420px; }

  .bio-split { grid-template-columns: 1fr; gap: 36px; }
  .bio-figure { max-width: 420px; aspect-ratio: 4 / 4.2; }
  .services-editorial { grid-template-columns: 1fr; }
  .service-complements { grid-template-columns: repeat(2, 1fr); }
  .prova-split { grid-template-columns: 1fr; gap: 36px; }
  .prova-figure { max-width: 540px; aspect-ratio: 16 / 11; }
  .local-split { grid-template-columns: 1fr; gap: 34px; }
  .local-map iframe { height: 380px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: 1fr; gap: 36px; padding: 72px 32px; }
  .exp-figure { max-width: 520px; }
  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .faq-head { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ---- Hero mobile: imagem ORIGINAL inteira (sem crop). O topo creme da própria
        imagem encosta no fundo creme do conteúdo = peça contínua, rosto preservado
        e abaixo dos botões. Sem cover, sem background-position, sem faixa. ---- */
@media (max-width: 760px) {
  .hero {
    background: var(--paper-200);   /* creme quente, mesmo tom do topo da imagem */
  }
  .hero-inner {
    align-items: flex-start;
    min-height: 0;
    padding: 100px 24px 16px;
  }
  .hero-mobile-img { display: block; line-height: 0; font-size: 0; margin-top: -2px; }
  .hero-mobile-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  .hero-copy { max-width: 100%; }
  .hero h1 { font-size: 33px; line-height: 1.08; }
  .hero .lead { font-size: 16px; max-width: 100%; margin-top: 18px; }
  .hero-actions { margin-top: 26px; }
  .hero-proofs { display: none; }
}

@media (max-width: 600px) {
  body { font-size: 17px; }
  .container { padding: 0 20px; }
  /* Restaura o padding vertical dos blocos que combinam .container com padding próprio
     (a regra .container acima zerava o respiro vertical no mobile). */
  .ribbon-inner { padding: 15px 20px; }
  .exp-grid { padding: 56px 20px; }
  .cta-inner { padding: 64px 20px; }
  .footer-grid { padding: 0 20px 36px; }
  .footer-bottom { padding: 24px 20px 38px; }
  .hero-inner { padding: 96px 20px 48px; }
  .hero h1 { font-size: 31px; }
  .hero-actions .btn { width: 100%; }
  .services-editorial,
  .service-notes,
  .service-complements { grid-template-columns: 1fr; }
  .service-feature,
  .service-panel,
  .service-complements article { padding: 26px 22px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .local-actions .btn { width: 100%; }
  .local-map iframe { height: 300px; }
  .reviews-nav { display: none; }
  .reviews-carousel { gap: 0; margin-top: 32px; }
  .google-review-card { flex-basis: 84%; }
  .footer-grid { grid-template-columns: 1fr; }
  .ribbon-inner { font-size: 16px; }
  .faq-item summary { font-size: 19px; }
}

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

:focus-visible { outline: 2px solid var(--gold-600); outline-offset: 3px; border-radius: 4px; }
