/* =================================================================
   RENEW ESTÉTICA AVANÇADA — Sistema de Design compartilhado (V2)
   Hub + páginas dedicadas · preto profundo + dourado metálico
   Tokens conforme CLAUDE.md §4. Carregado pelas 4 páginas.
   ================================================================= */

:root {
  --ink: #0E0C0A;
  --ink-soft: #1A1614;
  --gold: #C8A14E;
  --gold-bright: #E4C97A;
  --champagne: #EDE3D4;
  --sand: #F6F1E8;
  --text-dark: #2B2622;
  --text-light: #EFE9DF;
  --muted: #8A8178;

  --border-gold: rgba(200, 161, 78, 0.28);
  --border-soft: rgba(43, 38, 34, 0.12);

  --radius: 14px;
  --radius-lg: 22px;

  --maxw: 76rem;        /* ~1216px */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 72px;

  /* Display: Cormorant (editorial, leve — conversa com o logo delicado).
     Em peso 500/600 nos títulos pra não sumir no mobile. */
  --font-display: 'Cormorant', Georgia, serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- Tipografia ---------- */
.font-display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  /* tracking levemente aberto pra ecoar o espaçamento largo do logo */
  letter-spacing: 0.012em;
  line-height: 1.12;
  /* Cormorant é mais leve que Fraunces — 600 mantém presença até 380px */
  font-weight: 600;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.section-dark .eyebrow { color: var(--gold-bright); }

/* Palavra-chave em ouro + serif dentro de headlines */
.gold-word {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}
.section-dark .gold-word { color: var(--gold-bright); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: clamp(4rem, 9vw, 7.5rem);
  position: relative;
}

.section-dark {
  background: var(--ink);
  color: var(--text-light);
}
.section-darker { background: #0A0807; color: var(--text-light); }
.section-light { background: var(--sand); color: var(--text-dark); }
.section-cream { background: var(--champagne); color: var(--text-dark); }

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-darker h2,
.section-darker h3 { color: var(--text-light); }

.lead { color: var(--muted); max-width: 46ch; }
.section-dark .lead,
.section-darker .lead { color: rgba(239, 233, 223, 0.72); }

/* ---------- Grão / noise (só nas seções escuras) ---------- */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.grain > * { position: relative; z-index: 2; }

/* =================================================================
   O TRAÇO RENEW — elemento assinatura
   Grafismo dourado fluido recriado da fachada. Sutil, fino, presente.
   ================================================================= */

/* Divisor horizontal: filete com gradiente que nasce e morre transparente */
.trace-divider {
  border: 0;
  height: 1px;
  margin: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 161, 78, 0.05) 18%,
    rgba(200, 161, 78, 0.55) 50%,
    rgba(200, 161, 78, 0.05) 82%,
    transparent 100%
  );
}

/* Marca-d'água vertical do traço fluido (hero e laterais) */
.trace-mark {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--gold);
}
.trace-mark svg { width: 100%; height: 100%; overflow: visible; }

.trace-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.22;
  /* animação de "desenhar" controlada por JS (GSAP) */
}
.section-light .trace-stroke { opacity: 0.16; }

/* Pequeno floreio do traço usado como bullet / acento inline */
.trace-leaf {
  display: inline-block;
  width: 26px;
  height: 26px;
  color: var(--gold);
  flex: none;
}

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(14, 12, 10, 0.55);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(200, 161, 78, 0.14);
  transition: background 0.4s var(--ease);
}
.site-header.is-solid { background: rgba(14, 12, 10, 0.92); }

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ---------- Logo em TEXTO (Cormorant) — header + footer ----------
   Recriação do logo da marca: "RENEW" dourado + "Estética Avançada" miúdo
   por baixo, tracking largo pra ecoar o logo real. Delicado e editorial. */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-family: var(--font-display);
  color: var(--gold);
}
.logo-name {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 0.22em; /* compensa o tracking → centraliza opticamente */
}
.logo-sub {
  margin-top: 0.42em;
  font-size: 0.5rem;            /* ~33% de RENEW */
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(200, 161, 78, 0.62); /* dourado mais apagado/suave */
  padding-left: 0.3em;         /* compensa o tracking */
}
/* Header: compacto. Footer: um pouco maior, centralizado. */
.logo--footer .logo-name { font-size: 1.85rem; letter-spacing: 0.24em; padding-left: 0.24em; }
.logo--footer .logo-sub { font-size: 0.6rem; letter-spacing: 0.32em; padding-left: 0.32em; }

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.92rem;
  color: rgba(239, 233, 223, 0.82);
}
.nav-links a { position: relative; padding-block: 0.4rem; transition: color 0.25s var(--ease); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { width: 100%; }

.back-link {
  font-size: 0.9rem;
  color: rgba(239, 233, 223, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s var(--ease);
}
.back-link:hover { color: var(--gold-bright); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text-light);
  padding: 0.4rem;
}

/* Menu mobile (drawer simples) */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 49;
  background: rgba(10, 8, 7, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 161, 78, 0.14);
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem 1.5rem;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.85rem 0.25rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1rem;
}
.mobile-menu a:last-of-type { border-bottom: 0; }

/* =================================================================
   BOTÕES
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1A1207;
  box-shadow: 0 10px 30px -12px rgba(200, 161, 78, 0.65);
}
.btn-gold:hover {
  box-shadow: 0 16px 40px -12px rgba(228, 201, 122, 0.75);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--border-gold);
}
.section-dark .btn-ghost,
.section-darker .btn-ghost { color: var(--gold-bright); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(200, 161, 78, 0.08); }

.btn-header {
  padding: 0.6rem 1.15rem;
  font-size: 0.88rem;
}

.btn-lg { padding: 1.05rem 2rem; font-size: 1.02rem; }

/* =================================================================
   HERO (foto de fundo + overlay + grão)
   ================================================================= */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 820px);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--ink);
  color: var(--text-light);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,12,10,0.55) 0%, rgba(14,12,10,0.30) 35%, rgba(14,12,10,0.80) 100%),
    linear-gradient(90deg, rgba(14,12,10,0.88) 0%, rgba(14,12,10,0.45) 55%, rgba(14,12,10,0.30) 100%);
}
/* brilho dourado estático — só no hero (regra Chanel: sem pulso em loop) */
.hero-glow {
  position: absolute;
  inset: -20%;
  z-index: 1;
  background: radial-gradient(40% 50% at 78% 18%, rgba(200,161,78,0.18), transparent 70%);
}
.hero .wrap { position: relative; z-index: 3; }

.hero-content { max-width: 40rem; }

.hero h1 {
  font-size: clamp(2.4rem, 6.2vw, 4.2rem);
  margin: 1rem 0 1.25rem;
}
.hero p.sub {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: rgba(239, 233, 223, 0.86);
  max-width: 34ch;
  margin: 0 0 2rem;
}

/* Selo Google ★ 5,0 */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 161, 78, 0.22);
  font-size: 0.86rem;
  color: var(--text-light);
  backdrop-filter: blur(6px);
}
.google-badge .stars { color: var(--gold-bright); letter-spacing: 0.1em; }
.google-badge strong { color: #fff; font-weight: 600; }

/* =================================================================
   VITRINE — 3 blocos do hub
   ================================================================= */
.vitrine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.specialist-card {
  display: flex;
  flex-direction: column;
  background: var(--ink-soft);
  border: 1px solid rgba(200, 161, 78, 0.14);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.specialist-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 161, 78, 0.4);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
}
/* foto circular — tamanho padrão; Gleice usa modificador menor */
.spec-photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(200, 161, 78, 0.35);
  margin-bottom: 1.25rem;
}
.spec-photo--sm { width: 104px; height: 104px; } /* Gleice: menor (pedido dela) */

/* enquadramento do rosto no círculo — ajustado por foto */
.spec-photo--gleice  { object-position: center 32%; }
.spec-photo--eliane  { object-position: center top; }
.spec-photo--tatiana { object-position: center 28%; }

.spec-name {
  font-size: 1.5rem;
  color: var(--text-light);
  margin: 0 0 0.2rem;
}
.spec-role { font-size: 0.92rem; color: var(--gold-bright); margin: 0 0 0.3rem; }
.spec-reg {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 0.9rem;
}
.spec-desc { font-size: 0.96rem; color: rgba(239,233,223,0.74); margin: 0 0 1.1rem; }

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.tag {
  font-size: 0.75rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 161, 78, 0.22);
  color: var(--champagne);
  background: rgba(200, 161, 78, 0.05);
}
.specialist-card .btn { margin-top: auto; }

/* =================================================================
   CARDS GENÉRICOS (tratamentos, institucional)
   ================================================================= */
.card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.section-dark .card,
.section-darker .card {
  background: var(--ink-soft);
  border-color: rgba(200, 161, 78, 0.14);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.35);
  border-color: rgba(200, 161, 78, 0.35);
}
.card .ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(200, 161, 78, 0.12);
  color: var(--gold);
  margin-bottom: 1rem;
}
.card .ico svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.25rem; margin: 0 0 0.5rem; }
.card p { margin: 0; font-size: 0.95rem; color: var(--muted); }
.section-dark .card p { color: rgba(239,233,223,0.7); }

.treatment-card.highlight {
  background: linear-gradient(165deg, #221C15, var(--ink-soft));
  border-color: rgba(200, 161, 78, 0.45);
  box-shadow: 0 30px 70px -40px rgba(200,161,78,0.35);
}

/* grid utilitário */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* =================================================================
   SEÇÃO "VOCÊ JÁ PASSOU POR ISSO?" (espelho da dor)
   ================================================================= */
.pain-list { display: grid; gap: 1rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.pain-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-light);
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid var(--gold);
  border-radius: 0 12px 12px 0;
}
.pain-list li svg { color: var(--gold); flex: none; margin-top: 3px; width: 20px; height: 20px; }

/* =================================================================
   JORNADA EM FASES (só onde é sequência real)
   ================================================================= */
.journey { display: grid; gap: 1.25rem; counter-reset: step; }
.journey-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 1.6rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}
.section-dark .journey-step { background: var(--ink-soft); border-color: rgba(200,161,78,0.14); }
.journey-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  color: var(--gold);
}
.journey-step h3 { margin: 0 0 0.35rem; font-size: 1.2rem; }

/* =================================================================
   ANTES / DEPOIS
   ================================================================= */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.ba-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--ink-soft);
  position: relative;
}
.ba-item.feature { grid-column: span 3; }
.ba-item.feature img { width: 100%; }
.ba-figure { position: relative; }
.ba-figure img { width: 100%; height: auto; }
.ba-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  display: flex;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
}
.ba-badge span { padding: 0.28rem 0.7rem; background: rgba(14,12,10,0.78); color: var(--text-light); }
.ba-badge span.after { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #1A1207; }
.ba-caption {
  padding: 0.85rem 1rem;
  font-size: 0.86rem;
  color: rgba(239,233,223,0.78);
}
.ba-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.ba-note svg { width: 16px; height: 16px; flex: none; }

/* placeholder elegante (gleice/tatiana) */
.ba-placeholder {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  background:
    repeating-linear-gradient(45deg, rgba(200,161,78,0.05) 0 10px, transparent 10px 20px),
    var(--ink-soft);
  border: 1px dashed rgba(200,161,78,0.3);
  border-radius: var(--radius);
}
.ba-placeholder .ico { color: var(--gold); margin-bottom: 0.5rem; }
.ba-placeholder small { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; }

/* =================================================================
   VÍDEO (YouTube facade — thumbnail clicável, iframe lazy)
   ================================================================= */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--ink-soft) center/cover no-repeat;
  cursor: pointer;
}
.video-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,12,10,0.1), rgba(14,12,10,0.6));
  transition: background 0.3s var(--ease);
}
.video-card:hover::before { background: linear-gradient(180deg, rgba(14,12,10,0.05), rgba(14,12,10,0.45)); }
.video-play {
  position: absolute;
  inset: 0; margin: auto;
  width: 66px; height: 66px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1A1207;
  z-index: 2;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.6);
  transition: transform 0.3s var(--ease);
}
.video-card:hover .video-play { transform: scale(1.08); }
.video-play svg { width: 26px; height: 26px; margin-left: 3px; }
.video-label {
  position: absolute;
  left: 1rem; bottom: 0.9rem;
  z-index: 2;
  font-size: 0.85rem;
  color: var(--text-light);
}
.video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }

/* Vídeo VERTICAL (Shorts/Reels 9:16) — único, centralizado, largura controlada */
.video-solo { max-width: 360px; margin-inline: auto; }
.video-card--vertical { aspect-ratio: 9 / 16; }
.video-caption {
  margin: 1.1rem auto 0;
  max-width: 40ch;
  text-align: center;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--muted);
}

/* =================================================================
   DEPOIMENTOS
   ================================================================= */
.review-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background: rgba(200,161,78,0.06);
  text-align: center;
}
.review-strip .score { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.review-strip .stars { color: var(--gold-bright); font-size: 1.1rem; letter-spacing: 0.12em; }

.testimonial {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.section-dark .testimonial { background: var(--ink-soft); border-color: rgba(200,161,78,0.14); }
.testimonial .stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.testimonial p { font-style: italic; color: var(--text-dark); }
.section-dark .testimonial p { color: rgba(239,233,223,0.85); }
.testimonial .who { margin-top: 1rem; font-size: 0.85rem; color: var(--muted); }
.placeholder-note {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* =================================================================
   FAQ (acordeão)
   ================================================================= */
.faq { max-width: 48rem; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.section-dark .faq-item { border-color: rgba(255,255,255,0.08); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0.25rem;
  background: none;
  border: 0;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 500;
  color: inherit;
  font-family: var(--font-display);
}
.faq-q .chev { color: var(--gold); flex: none; transition: transform 0.35s var(--ease); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a-inner { padding: 0 0.25rem 1.35rem; color: var(--muted); }
.section-dark .faq-a-inner { color: rgba(239,233,223,0.72); }

/* =================================================================
   LOCALIZAÇÃO
   ================================================================= */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  min-height: 320px;
  background: var(--ink-soft);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.address-line { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; }
.address-line svg { color: var(--gold); flex: none; margin-top: 3px; }

/* =================================================================
   FOOTER (compliance)
   ================================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(239,233,223,0.72);
  padding-block: 3.5rem 2.5rem;
  font-size: 0.88rem;
  border-top: 1px solid rgba(200,161,78,0.14);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; }
.site-footer h4 { color: var(--text-light); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 1rem; }
.site-footer a:hover { color: var(--gold-bright); }
.compliance {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.7;
}
.seals { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.seal {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: var(--champagne);
}
.seal svg { width: 14px; height: 14px; color: var(--gold); }

/* =================================================================
   WHATSAPP FLUTUANTE
   ================================================================= */
.wa-float {
  position: fixed;
  right: 1.1rem; bottom: 1.1rem;
  z-index: 60;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1A1207;
  border: 0;
  box-shadow: 0 12px 34px -8px rgba(200,161,78,0.6);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 44px -8px rgba(228,201,122,0.7); }
.wa-float svg { width: 28px; height: 28px; }

/* =================================================================
   SECTION HEADERS / utilitários
   ================================================================= */
.section-head { max-width: 52rem; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin: 0.75rem 0 1rem; }
.mt-sm { margin-top: 0.75rem; }
.mt { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.text-center { text-align: center; }
.divider-wrap { display: flex; justify-content: center; padding-block: 0.5rem; }

/* =================================================================
   ANIMAÇÃO DE ENTRADA (reveal) — usada via JS
   ================================================================= */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

/* =================================================================
   FOCO DE TECLADO VISÍVEL
   ================================================================= */
:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =================================================================
   RESPONSIVO
   ================================================================= */
@media (max-width: 960px) {
  .vitrine { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-item.feature { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .journey-step { grid-template-columns: 1fr; gap: 0.75rem; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
}

@media (max-width: 380px) {
  .wrap { padding-inline: 1rem; }
  .specialist-card { padding: 1.5rem 1.25rem; }
}

/* =================================================================
   PREFERS-REDUCED-MOTION
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-glow { animation: none; }
}
