/* ================================================
   AC ODONTO CLINIC — style.css
   Design System: Premium Dental · Creme + Dourado
   ================================================ */

/* ─── TOKENS ───────────────────────────────────── */
:root {
  --bg:         #f7f2ea;
  --bg-2:       #ede8df;
  --bg-card:    #ffffff;
  --bg-dark:    #1c140a;
  --bg-dark-2:  #251c10;
  --gold:       #b8912e;
  --gold-light: #d4af57;
  --gold-pale:  #e8d49a;
  --gold-soft:  rgba(184,145,46,.1);
  --gold-glow:  rgba(184,145,46,.22);
  --ink:        #1c140a;
  --ink-70:     rgba(28,20,10,.7);
  --ink-45:     rgba(28,20,10,.45);
  --ink-20:     rgba(28,20,10,.12);
  --border:     rgba(28,20,10,.1);
  --shadow:     rgba(28,20,10,.1);
  --white:      #ffffff;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --radius:     16px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  /* FIX: overflow-x: clip não funciona em browsers antigos */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }
.hide-mob { display: inline; }

/* tap targets mínimos 44px */
a, button { min-height: 44px; display: inline-flex; align-items: center; }
nav a, footer a { display: inline-flex; }
.drawer-link, .footer-nav-col a { min-height: 44px; }

/* ─── PROGRESS BAR ──────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%; z-index: 9999;
  transition: width .1s linear;
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ─── CUSTOM CURSOR ─────────────────────────────── */
#cursor, #cursor-follower {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
}
#cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  top: 0; left: 0;
  transition: transform .05s, background .2s;
}
#cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold-glow);
  top: 0; left: 0;
  transition: transform .15s ease, width .2s, height .2s, border-color .2s;
}
body.cursor-hover #cursor { transform: translate(-50%,-50%) scale(2.5); background: var(--gold-light); }
body.cursor-hover #cursor-follower { width: 52px; height: 52px; border-color: var(--gold); }
@media (pointer: coarse) { #cursor, #cursor-follower { display: none; } }

/* ─── NAVBAR ────────────────────────────────────── */
#navbar {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 1000;
  display: flex; align-items: center; gap: 2rem;
  padding: 0 24px;
  height: 64px;
  width: calc(100% - 48px);
  max-width: 1100px;
  background: var(--bg-dark);
  border-radius: 100px;
  box-shadow: 0 4px 32px rgba(28,20,10,.25);
  transition: background var(--transition), box-shadow var(--transition), top var(--transition);
  /* FIX: position: relative necessário para o ::before funcionar */
  position: fixed;
}
#navbar.scrolled {
  background: var(--bg-dark);
  box-shadow: 0 6px 40px rgba(28,20,10,.35);
  top: 10px;
}

/*
  FIX: @property --ba (border spin no navbar) não funciona em
  Android antes do Chrome 111. Substituímos por uma borda
  dourada estática com glow — sem @property, sem conic-gradient
  com variável custom. Funciona em 100% dos Android.
*/
#navbar::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 102px;
  border: 1px solid rgba(184,145,46,.35);
  pointer-events: none;
  z-index: -1;
  /* Animação simples que funciona em qualquer browser */
  animation: navbar-border-pulse 3s ease-in-out infinite;
}
@keyframes navbar-border-pulse {
  0%, 100% { border-color: rgba(184,145,46,.2); box-shadow: 0 0 0 0 rgba(184,145,46,0); }
  50%       { border-color: rgba(184,145,46,.55); box-shadow: 0 0 12px 2px rgba(184,145,46,.12); }
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 1.15rem;
  flex-shrink: 0;
}
.nav-logo img { height: 58px; width: auto; margin-left: -14px; }
.nav-logo-text { color: var(--white); }
.nav-logo-text strong { color: var(--gold-light); }
.nav-mob-title { display: none; }
.nav-links { display: flex; gap: 2rem; margin-left: auto; }
.nav-link {
  font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.7);
  letter-spacing: .02em; position: relative; padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  margin-left: 2rem; flex-shrink: 0;
  background: var(--gold);
  color: var(--white);
  font-size: .85rem; font-weight: 700;
  letter-spacing: .04em;
  padding: 10px 22px; border-radius: 100px;
  transition: var(--transition);
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center;
  box-shadow: 0 4px 16px var(--gold-glow);
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.25) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform .5s ease;
}
.nav-cta:hover::before { transform: translateX(100%); }
.nav-cta:hover { background: var(--gold-light); box-shadow: 0 6px 24px var(--gold-glow); }

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; padding: 8px; margin-left: auto;
  padding-top: 14px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gold-light); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE DRAWER ─────────────────────────────── */
#mob-overlay {
  position: fixed; inset: 0; z-index: 1001;
  background: rgba(28,20,10,.5);
  /* FIX: backdrop-filter pode travar em Android fraco — removido do overlay */
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
#mob-overlay.visible { opacity: 1; pointer-events: all; }
#mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw); z-index: 1002;
  background: var(--bg-card);
  /* FIX: borda pulsante simples sem @property */
  border-left: 2px solid rgba(184,145,46,.25);
  animation: border-pulse 3s ease-in-out infinite;
  animation-delay: -.5s;
  padding: 80px 32px 40px;
  display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px var(--shadow);
}
#mobile-drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--ink-45); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.drawer-close:hover { background: var(--bg-2); color: var(--ink); }
.drawer-logo { font-family: var(--font-head); font-size: 1.2rem; color: var(--gold); margin-bottom: 24px; }
.drawer-link {
  padding: 12px 0; font-size: .95rem; font-weight: 500;
  color: var(--ink-70); border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding var(--transition);
}
.drawer-link:hover { color: var(--gold); padding-left: 8px; }
.drawer-wa {
  margin-top: auto; background: #25d366; color: #fff;
  text-align: center; padding: 14px; border-radius: 12px;
  font-weight: 600; font-size: .9rem; transition: var(--transition);
}
.drawer-wa:hover { filter: brightness(1.08); }

/* ─── CONTAINER ─────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 5%; }

/* ─── SECTIONS ──────────────────────────────────── */
.section { padding: 100px 0; }
.section-eyebrow {
  display: table;
  margin: 0 auto 1.2rem auto;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid var(--gold-glow);
  padding: 5px 18px;
  border-radius: 100px;
}
.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600; line-height: 1.15; margin-bottom: 1.2rem; color: var(--ink);
}
.section-h2 em { color: var(--gold); font-style: italic; }
.section-p {
  font-size: 1rem; line-height: 1.75; color: var(--ink-70);
  max-width: 580px; margin-bottom: 2rem;
}
.text-center { text-align: center; }
.text-center .section-p,
.section-p.text-center { margin-left: auto; margin-right: auto; }

/* ─── REVEAL ─────────────────────────────────────── */
.reveal-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left {
  opacity: 0; transform: translateX(-48px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-right {
  opacity: 0; transform: translateX(48px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}

/* ─── HERO ──────────────────────────────────────── */
#hero {
  position: relative;
  /* FIX: 100svh não funciona antes Chrome 108 — cascata com fallback */
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(150deg, #f7f2ea 0%, #ede8df 60%, #e5ddd0 100%);
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 65% 45%, rgba(184,145,46,.12) 0%, transparent 65%);
  pointer-events: none;
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1100px; margin: 0 auto;
  padding: 130px 5% 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-soft); border: 1px solid var(--gold-glow);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 1.5rem;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,145,46,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(184,145,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,145,46,0); }
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600; line-height: 1.08; color: var(--ink); margin-bottom: 1.4rem;
  text-align: center;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold-pale) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; line-height: 1.75; color: var(--ink-70);
  margin-bottom: 2.2rem; max-width: 440px;
  text-align: center; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* ─── BUTTONS ────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-size: .9rem; font-weight: 700; letter-spacing: .04em;
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: var(--transition); position: relative; overflow: hidden; cursor: pointer;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.2) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform .5s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px); background: var(--gold-light); box-shadow: 0 8px 32px var(--gold-glow); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-size: .9rem; font-weight: 700; letter-spacing: .04em;
  background: var(--gold); color: var(--white);
  box-shadow: 0 4px 20px var(--gold-glow);
  transition: var(--transition); cursor: pointer;
}
.btn-gold:hover { transform: translateY(-2px); background: var(--gold-light); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 100px;
  font-size: .9rem; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--ink-70);
  transition: var(--transition); cursor: pointer;
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }

.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 100px;
  font-size: .9rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,.4); color: var(--white);
  transition: var(--transition); cursor: pointer;
}
.btn-ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,.12); }

/* hero trust */
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-badge { display: flex; flex-direction: column; gap: 2px; }
.trust-stars { color: #d4a017; font-size: .85rem; letter-spacing: 2px; }
.trust-info { display: flex; align-items: baseline; gap: 5px; }
.trust-info strong { font-size: 1.1rem; color: var(--ink); font-weight: 700; }
.trust-info span { font-size: .75rem; color: var(--ink-45); }
.trust-num { font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.trust-label { font-size: .75rem; color: var(--ink-45); }
.trust-sep { width: 1px; height: 32px; background: var(--border); }

/* hero visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-blob {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,145,46,.14) 0%, transparent 70%);
  animation: blob-pulse 4s ease-in-out infinite;
}
@keyframes blob-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.hero-img-wrap { position: relative; z-index: 1; width: 380px; height: 380px; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%; border: 3px solid rgba(184,145,46,.3);
  box-shadow: 0 16px 60px var(--shadow);
}
.hero-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: ring-spin linear infinite;
}
.hero-ring-1 { inset: -20px; border-color: rgba(184,145,46,.2); animation-duration: 20s; }
.hero-ring-2 { inset: -44px; border-color: rgba(184,145,46,.1); animation-duration: 35s; animation-direction: reverse; }
@keyframes ring-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hcard {
  position: absolute; z-index: 2;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  white-space: nowrap; box-shadow: 0 8px 32px var(--shadow);
  animation: float 3.5s ease-in-out infinite;
}
.hcard-top { top: 10%; right: -10%; animation-delay: 0s; }
.hcard-bot { bottom: 12%; left: -10%; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hcard-icon { font-size: 1.4rem; }
.hcard-num { font-size: .95rem; font-weight: 700; color: var(--ink); }
.hcard-sub { font-size: .72rem; color: var(--ink-45); }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--ink-45); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; z-index: 1; transition: opacity .3s;
}
.scroll-mouse {
  width: 22px; height: 36px; border: 1.5px solid var(--ink-20);
  border-radius: 11px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px; background: var(--ink-20); border-radius: 2px;
  animation: scroll-anim 1.6s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─── STATS ──────────────────────────────────────── */
.stats-section {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(184,145,46,.06), transparent);
  pointer-events: none;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 36px 24px 28px;
  text-align: center;
  position: relative; overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  cursor: default;
}
.stat-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.1);
  border-color: var(--gold-glow);
}
.stat-item:hover::before { opacity: 1; }
.stat-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 8px var(--gold-glow));
  animation: stat-icon-float 3s ease-in-out infinite;
}
.stat-item:nth-child(2) .stat-icon { animation-delay: .4s; }
.stat-item:nth-child(3) .stat-icon { animation-delay: .8s; }
.stat-item:nth-child(4) .stat-icon { animation-delay: 1.2s; }
@keyframes stat-icon-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.stat-n {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--gold-light); line-height: 1; margin-bottom: .5rem;
}
.stat-label {
  font-size: .78rem; color: rgba(255,255,255,.5);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.stat-bar {
  height: 3px; background: rgba(255,255,255,.08);
  border-radius: 100px; overflow: hidden;
}
.stat-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.stat-item.visible .stat-bar-fill { width: var(--w); }
.stat-divider { display: none; }

/* ─── SOBRE ──────────────────────────────────────── */
.section-sobre { background: var(--bg); }
.sobre-grid { display: grid; grid-template-columns: 400px 1fr; gap: 80px; align-items: start; }
.sobre-img-frame { position: relative; border-radius: var(--radius); overflow: visible; }
.sobre-img-frame img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--border); position: relative; z-index: 1;
  box-shadow: 0 12px 40px var(--shadow);
}
.sobre-cro {
  position: absolute; bottom: -16px; right: -16px; z-index: 2;
  background: var(--gold); color: var(--white);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 8px 16px; border-radius: 100px;
  box-shadow: 0 4px 16px var(--gold-glow);
}
.sobre-deco-ring {
  position: absolute; inset: -20px; z-index: 0;
  border: 1px dashed rgba(184,145,46,.25); border-radius: var(--radius);
  animation: ring-spin 30s linear infinite;
}
.tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  background: var(--gold-soft); border: 1px solid var(--gold-glow); color: var(--gold);
}
.accordion { margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 0; font-size: .9rem; font-weight: 600;
  color: var(--ink-70); border-bottom: 1px solid var(--border);
  transition: color var(--transition);
  pointer-events: none;
}
.acc-btn:hover { color: var(--gold); }
.acc-icon { display: none; }
.acc-btn[aria-expanded="true"] .acc-icon { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.acc-panel.open { max-height: 400px; padding-top: 16px; }
.acc-panel ul { display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
.acc-panel li { font-size: .88rem; color: var(--ink-70); padding: 0; position: relative; line-height: 1.5; }
.acc-panel li::before { content: none; }
.sobre-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── TRATAMENTOS ────────────────────────────────── */
.section-tratamentos { background: var(--bg-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 3rem; }
.svc-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(circle at top left, var(--gold-soft), transparent 55%);
  transition: opacity var(--transition);
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--gold-glow); box-shadow: 0 12px 40px var(--shadow); }
.svc-card:hover::before { opacity: 1; }
.svc-icon-wrap { width: 52px; height: 52px; color: var(--gold); margin-bottom: 1.2rem; }
.svc-icon-wrap svg { width: 100%; height: 100%; }
.svc-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: .7rem; }
.svc-card p { font-size: .88rem; color: var(--ink-70); line-height: 1.65; margin-bottom: 1.4rem; }
.svc-link {
  font-size: .85rem; font-weight: 600; color: var(--gold); letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--transition);
}
.svc-link:hover { gap: 10px; }
.svc-cta { background: linear-gradient(135deg, var(--gold-soft), rgba(184,145,46,.04)); border-color: var(--gold-glow); }

/* ─── PROCESSO ───────────────────────────────────── */
.section-processo {
  background: var(--bg-dark-2);
  position: relative;
  overflow: hidden;
  /* FIX: bordas pulsantes sem @property */
  border-top:    2px solid rgba(184,145,46,.25);
  border-bottom: 2px solid rgba(184,145,46,.25);
  animation: border-pulse 3s ease-in-out infinite;
}
.section-processo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(184,145,46,.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(184,145,46,.05) 0%, transparent 65%);
  pointer-events: none;
  animation: processo-glow 6s ease-in-out infinite alternate;
}
@keyframes processo-glow {
  0%   { opacity: .6; transform: scale(1); }
  100% { opacity: 1;  transform: scale(1.08); }
}

/* FIX: border-pulse simples, sem @property */
@keyframes border-pulse {
  0%, 100% { border-color: rgba(184,145,46,.2); }
  50%       { border-color: rgba(212,175,87,.6); }
}

.section-processo .section-eyebrow { color: var(--gold-light); background: rgba(184,145,46,.15); border-color: rgba(184,145,46,.3); }
.section-processo .section-h2 { color: var(--white); }

.section-processo .process-card {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}
.section-processo .process-card::before {
  content: '';
  position: absolute; top: 0; left: -100%; right: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transition: left .6s ease, right .6s ease;
}
.section-processo .process-card.visible::before,
.section-processo .process-card:hover::before {
  left: 0; right: 0;
}
.section-processo .process-card:hover {
  background: rgba(255,255,255,.15) !important;
  border-color: var(--gold-glow) !important;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.section-processo .process-num {
  color: var(--gold-light);
  opacity: .5;
  animation: num-pulse 3s ease-in-out infinite;
}
@keyframes num-pulse {
  0%, 100% { opacity: .4; }
  50%       { opacity: .75; }
}
.section-processo .process-card h3 { color: var(--white); }
.section-processo .process-card p { color: rgba(255,255,255,.65); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem; }
.process-card {
  padding: 40px 28px; background: var(--bg-card);
  border: 1px solid var(--border); position: relative; transition: var(--transition);
}
.process-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.process-card:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.process-card:not(:last-child) { border-right: none; }
.process-card:hover { background: var(--bg-card); transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); z-index: 1; border-color: var(--gold-glow); border-right: 1px solid var(--gold-glow) !important; }
.process-num { font-family: var(--font-head); font-size: 3rem; font-weight: 600; color: var(--gold); opacity: .3; line-height: 1; margin-bottom: 1rem; }
.process-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: .7rem; }
.process-card p { font-size: .85rem; color: var(--ink-70); line-height: 1.65; }

/* ─── DEPOIMENTOS ────────────────────────────────── */
.section-depoimentos { background: var(--bg-2); }
.rating-headline { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 2.5rem; }
.stars-big { color: #d4a017; font-size: 1.3rem; letter-spacing: 3px; }
.rating-txt { font-size: .9rem; color: var(--ink-45); }
.testi-carousel { position: relative; }
.testi-track { display: grid; grid-template-columns: 1fr; }
.testi-slide { grid-row: 1; grid-column: 1; opacity: 0; pointer-events: none; transition: opacity .5s ease, transform .5s ease; transform: translateX(40px); }
.testi-slide.active { opacity: 1; pointer-events: all; transform: translateX(0); }
.testi-slide.exit { opacity: 0; transform: translateX(-40px); }
.testi-card {
  max-width: 720px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px; position: relative; overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
}
.testi-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.tc-quote { font-family: var(--font-head); font-size: 6rem; line-height: .7; color: var(--gold); opacity: .2; margin-bottom: .5rem; }
.tc-text { font-size: 1.05rem; line-height: 1.75; color: var(--ink-70); font-style: italic; margin-bottom: 2rem; }
.tc-author { display: flex; align-items: center; gap: 14px; }
.tc-av { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--white); font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tc-info { flex: 1; }
.tc-info strong { display: block; font-size: .9rem; color: var(--ink); }
.tc-info span { font-size: .8rem; color: var(--ink-45); }
.tc-stars { color: #d4a017; font-size: .9rem; letter-spacing: 2px; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 2rem; }
.testi-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border); color: var(--ink-45); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.testi-btn:hover { border-color: var(--gold); color: var(--gold); }
.testi-dots { display: flex; gap: 8px; }
.tdot { width: 8px; height: 8px; border-radius: 100px; background: var(--border); border: none; transition: var(--transition); cursor: pointer; }
.tdot.active { background: var(--gold); width: 24px; }

/* ─── CTA BANNER ─────────────────────────────────── */
.section-cta-banner {
  position: relative; overflow: hidden; padding: 100px 0;
  background: var(--bg-dark);
  /* FIX: borda pulsante sem @property */
  border-top:    2px solid rgba(184,145,46,.25);
  border-bottom: 2px solid rgba(184,145,46,.25);
  animation: border-pulse 3s ease-in-out infinite;
  animation-delay: -1.5s;
}
.section-cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(184,145,46,.1), transparent);
}
.cta-particles { position: absolute; inset: 0; pointer-events: none; }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-ornament { font-size: .72rem; letter-spacing: .25em; color: var(--gold-light); text-transform: uppercase; margin-bottom: 1.5rem; }
.cta-h2 { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
.cta-h2 em { color: var(--gold-light); font-style: italic; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.6; max-width: 480px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 3rem; }
.contact-strip { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.cs-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.cs-item:hover { color: rgba(255,255,255,.9); }
.cs-item img { width: 18px; height: 18px; object-fit: contain; filter: brightness(0) invert(1); opacity: .65; }

/* ─── UNIDADES ───────────────────────────────────── */
.section-unidades { background: var(--bg); }
.units-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 3rem; }
.unit-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); box-shadow: 0 2px 12px var(--shadow); }
.unit-card:hover { border-color: var(--gold-glow); transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); }
.unit-badge { background: var(--gold-soft); border-bottom: 1px solid var(--gold-glow); color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 12px 24px; }
.unit-info { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.unit-row { display: flex; align-items: flex-start; gap: 14px; }
.unit-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.unit-row strong { font-size: .8rem; font-weight: 600; color: var(--ink); display: block; margin-bottom: 2px; }
.unit-row p { font-size: .82rem; color: var(--ink-70); line-height: 1.5; }
.unit-map { height: 200px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.unit-map iframe { width: 100%; height: 100%; border: none; }
.unit-btn { display: block; text-align: center; padding: 14px; font-size: .85rem; font-weight: 600; color: var(--gold); transition: background var(--transition); }
.unit-btn:hover { background: var(--gold-soft); }

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--bg-dark-2); padding: 60px 0 0;
  position: relative;
  border-top: 2px solid rgba(184,145,46,.25);
  animation: border-pulse 3s ease-in-out infinite;
  animation-delay: -1s;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .8; }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 8px; }
.footer-cro { color: var(--gold-light) !important; font-size: .8rem !important; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { border-color: var(--gold); background: var(--gold-soft); }
.footer-social img { width: 18px; height: 18px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-nav-col h4, .footer-contact-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 16px; }
.footer-nav-col nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-nav-col a:hover { color: var(--gold-light); }
.footer-contact-col p { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; padding: 20px 0; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-bottom strong { color: var(--gold-light); }

/* ─── WHATSAPP FLOAT ─────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25d366; color: #fff;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.wa-ripple { position: absolute; inset: 0; border-radius: 50%; background: #25d366; z-index: -1; animation: wa-ripple 2s ease-out infinite; }
@keyframes wa-ripple { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.7); opacity: 0; } }
.wa-label {
  position: absolute; right: 70px;
  background: var(--bg-card); color: var(--ink);
  font-size: .78rem; font-weight: 600; padding: 6px 12px; border-radius: 8px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transform: translateX(8px); transition: opacity .2s, transform .2s;
  border: 1px solid var(--border); box-shadow: 0 4px 16px var(--shadow);
}
.wa-label::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 5px solid var(--bg-card); }
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }

/* ─── RESPONSIVE ─────────────────────────────────── */

/* TABLET LARGO */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-img-col { display: block; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card { border: 1px solid var(--border) !important; }
  .process-card:nth-child(1) { border-radius: var(--radius) 0 0 0; }
  .process-card:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
  .process-card:nth-child(3) { border-radius: 0 0 0 var(--radius); border-top: none !important; }
  .process-card:nth-child(4) { border-radius: 0 0 var(--radius) 0; border-top: none !important; }
  .process-card:nth-child(1),
  .process-card:nth-child(3) { border-right: none !important; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hcard-top { right: -4%; }
  .hcard-bot { left: -4%; }
}

/* TABLET / MOBILE GRANDE */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #navbar { padding: 0 18px; height: 58px; width: calc(100% - 24px); top: 12px; }
  #navbar.scrolled { top: 8px; }
  .nav-logo img { height: 44px; margin-left: -18px; }
  .nav-mob-title {
    display: block;
    position: absolute; left: 50%; transform: translateX(-50%);
    font-family: var(--font-head); font-size: 1.05rem;
    color: var(--white); pointer-events: none;
  }
  .nav-mob-title strong { color: var(--gold-light); }

  /* Sections */
  .section { padding: 72px 0; }

  /* Hero */
  /* FIX: 100svh → fallback com --vh calculado pelo JS */
  #hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    align-items: flex-start;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 90px 5% 60px;
    gap: 36px;
    text-align: center;
  }
  .hero-content { order: 1; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-sub { font-size: .95rem; margin-left: auto; margin-right: auto; max-width: 100%; }
  .hero-btns { justify-content: center; gap: 12px; }
  .hero-trust {
    justify-content: center; gap: 12px;
    background: rgba(255,255,255,.6);
    /* FIX: backdrop-filter removido — causa repaint pesado e bug visual em Android fraco */
    border: 1px solid var(--border);
    border-radius: 12px; padding: 10px 16px;
  }
  .trust-sep { height: 20px; }
  .trust-stars { font-size: .78rem; }
  .trust-info strong, .trust-num { font-size: .95rem; }
  .trust-info span, .trust-label { font-size: .7rem; }

  .hero-visual {
    display: flex; order: 2;
    justify-content: center; align-items: center;
    position: relative;
    min-height: 340px;
  }
  .hero-blob { width: 380px; height: 380px; }
  .hero-img-wrap { width: 340px; height: 340px; }
  .hero-ring-1 { inset: -14px; }
  .hero-ring-2 { inset: -30px; }

  .hcard {
    display: flex;
    padding: 10px 14px; gap: 8px;
    border-radius: 12px;
  }
  .hcard-top { top: 0; right: 0; left: auto; }
  .hcard-bot { bottom: 0; left: 0; right: auto; }
  .hcard-num { font-size: .85rem; }
  .hcard-sub { font-size: .68rem; }
  .hcard-icon { font-size: 1.1rem; }

  .hero-scroll-hint { bottom: 20px; }
  .hide-mob { display: none; }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 4%; }
  .stat-item { padding: 28px 16px 20px; }
  .stat-icon { font-size: 1.3rem; margin-bottom: 10px; }
  .stat-label { margin-bottom: 12px; }

  /* Sobre */
  .section-sobre .container { text-align: center; }
  .sobre-img-col { display: flex; justify-content: center; }
  .sobre-img-frame { max-width: 280px; width: 100%; margin: 0 auto; }
  .tags-row { justify-content: center; }
  .sobre-btns { justify-content: center; }
  .acc-btn { text-align: left; }

  /* Serviços */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .svc-card { padding: 24px 20px; }

  /* Processo */
  .process-grid { grid-template-columns: 1fr !important; }
  .process-card {
    border: 1px solid var(--border) !important;
    border-top: none !important;
    border-radius: 0 !important;
    padding: 28px 24px;
  }
  .process-card:first-child {
    border-top: 1px solid var(--border) !important;
    border-radius: var(--radius) var(--radius) 0 0 !important;
  }
  .process-card:last-child {
    border-radius: 0 0 var(--radius) var(--radius) !important;
  }
  .process-num { font-size: 2.2rem; }

  /* Depoimentos */
  .testi-card { padding: 32px 24px; }
  .tc-quote { font-size: 4rem; }
  .tc-text { font-size: .95rem; }
  .rating-headline { flex-direction: column; gap: 6px; }

  /* CTA */
  .section-cta-banner { padding: 72px 0; }
  .cta-h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .cta-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-btns a { justify-content: center; }
  .contact-strip { flex-direction: column; gap: 14px; align-items: flex-start; padding: 0 5%; }

  /* Unidades */
  .units-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 4px; }

  /* WhatsApp */
  .wa-float { bottom: 20px; right: 16px; width: 54px; height: 54px; }
  .wa-label { display: none; }
}

/* MOBILE PEQUENO */
@media (max-width: 480px) {
  #navbar { padding: 0 16px; }
  .container { padding: 0 4%; }

  .hero-inner { padding: 88px 4% 52px; }
  .hero-h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero-eyebrow { font-size: .7rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { justify-content: center; width: 100%; text-align: center; }
  .hero-trust { flex-direction: row; gap: 10px; padding: 10px 12px; }
  .trust-sep { width: 1px; height: 20px; display: block; }
  .trust-stars { font-size: .7rem; letter-spacing: 1px; }
  .trust-info strong, .trust-num { font-size: .82rem; }
  .trust-info span, .trust-label { font-size: .65rem; }
  .hero-img-wrap { width: 290px; height: 290px; }
  .hcard { padding: 8px 10px; gap: 6px; border-radius: 10px; }
  .hcard-num { font-size: .78rem; }
  .hcard-sub { font-size: .62rem; }
  .hcard-icon { font-size: .95rem; }

  .section { padding: 56px 0; }
  .section-h2 { font-size: clamp(1.7rem, 8vw, 2.4rem); }

  .stat-n { font-size: 2rem; }
  .stat-label { font-size: .7rem; }

  .services-grid { gap: 12px; }
  .svc-card { padding: 20px 18px; }
  .svc-card h3 { font-size: 1.05rem; }

  .testi-card { padding: 24px 18px; }
  .tc-quote { font-size: 3rem; }
  .tc-text { font-size: .9rem; }
  .testi-controls { gap: 12px; margin-top: 1.4rem; }

  .section-cta-banner { padding: 56px 0; }
  .cta-ornament { font-size: .68rem; letter-spacing: .15em; }

  .unit-info { padding: 18px; }

  .footer { padding: 44px 0 0; }
  .footer-top { gap: 24px; padding-bottom: 32px; }
  .footer-nav-col, .footer-contact-col { display: none; }

  .wa-float { width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* MOBILE MUITO PEQUENO */
@media (max-width: 360px) {
  .hero-h1 { font-size: 1.9rem; }
  .btn-primary, .btn-ghost, .btn-gold { padding: 13px 20px; font-size: .85rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ─── TOUCH FEEDBACK ─────────────────────────────── */
@media (hover: none) {
  .svc-card:active { transform: translateY(-6px); border-color: var(--gold-glow); box-shadow: 0 12px 40px var(--shadow); }
  .svc-card:active::before { opacity: 1; }
  .process-card:active { background: var(--bg-card); transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); border-color: var(--gold-glow) !important; }
  .unit-card:active { border-color: var(--gold-glow); transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); }
  .btn-primary:active { transform: translateY(-2px); box-shadow: 0 8px 32px var(--gold-glow); }
  .btn-ghost:active   { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
  .btn-gold:active    { transform: translateY(-2px); }
  .nav-cta:active     { background: var(--gold-light); }
  .svc-link:active { gap: 10px; }
  .testi-btn:active { border-color: var(--gold); color: var(--gold); }
  .wa-float:active { transform: scale(1.12); }
}

/* ─── FORMULÁRIO DE CADASTRO ─────────────────────── */
.section-cadastro { background: var(--bg-2); padding: 100px 0; }
.cadastro-form {
  max-width: 760px; margin: 48px auto 0;
  background: var(--white); border: 1px solid var(--gold-glow);
  border-radius: 20px; padding: 48px 44px;
  box-shadow: 0 8px 40px var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font-body); font-size: .95rem;
  color: var(--ink); background: var(--bg);
  outline: none; transition: border-color .25s, box-shadow .25s;
  box-sizing: border-box;
  /* FIX: evita zoom automático ao focar input no iOS/Android */
  font-size: max(.95rem, 16px);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23b8912e'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}
.form-submit-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 8px; }
.form-btn { width: 100%; justify-content: center; padding: 16px 32px; font-size: 1rem; gap: 10px; }
.form-privacy { font-size: .78rem; color: var(--ink-45); text-align: center; }

.form-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; height: 0; overflow: hidden; }

.captcha-wrap { margin-bottom: 0; }
.captcha-row { display: flex; align-items: center; gap: 16px; }
.captcha-row input { width: 120px; flex-shrink: 0; }
.captcha-question {
  font-size: 1rem; font-weight: 600; color: var(--ink);
  background: var(--bg-2); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 11px 18px;
  white-space: nowrap; letter-spacing: .02em;
}
.captcha-error { display: block; min-height: 1.2em; font-size: .8rem; font-weight: 500; color: #c0392b; margin-top: 4px; }

@media (max-width: 480px) { .captcha-row { flex-wrap: wrap; } .captcha-row input { width: 100%; } }
@media (max-width: 640px) { .cadastro-form { padding: 32px 20px; } .form-row { grid-template-columns: 1fr; } }
