/* ===== 1. Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, video, svg { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ===== 2. Tokens — Light (default) ===== */
:root {
  --bg: #F7F3EC;
  --bg-elevated: #FFFFFF;
  --bg-muted: #EFEAE0;
  --fg: #111111;
  --fg-muted: #4A4A4A;
  --fg-subtle: #7A7368;
  --border: #E3DCCB;
  --border-strong: #D0C6AE;
  --accent: #111111;
  --accent-fg: #F7F3EC;
  --accent-muted: rgba(17, 17, 17, 0.08);
  --gold: #D4A843;
  --gold-soft: #C29832;
  --gold-muted: rgba(212, 168, 67, 0.16);
  --gold-glow: rgba(212, 168, 67, 0.28);
  --mesh-1: rgba(17, 17, 17, 0.14);
  --mesh-2: rgba(212, 168, 67, 0.12);
  --mesh-3: rgba(17, 17, 17, 0.05);

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --text-xs: clamp(0.72rem, 0.68rem + 0.18vw, 0.78rem);
  --text-sm: clamp(0.85rem, 0.8rem + 0.22vw, 0.92rem);
  --text-base: clamp(1rem, 0.94rem + 0.3vw, 1.1rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.3rem);
  --text-xl: clamp(1.4rem, 1.2rem + 0.9vw, 1.85rem);
  --text-2xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --text-3xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  --text-hero: clamp(3rem, 2rem + 5vw, 5.5rem);

  --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;
  --space-32: clamp(96px, 8vw, 160px);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgb(17 17 17 / 0.05);
  --shadow-md: 0 4px 16px rgb(17 17 17 / 0.08), 0 1px 3px rgb(17 17 17 / 0.04);
  --shadow-lg: 0 20px 60px rgb(17 17 17 / 0.14), 0 4px 12px rgb(17 17 17 / 0.06);
  --shadow-gold: 0 0 60px var(--gold-glow);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.5, 1.5, 0.5, 1);
  --duration-fast: 200ms;
  --duration-base: 400ms;
  --duration-slow: 700ms;
  --duration-hero: 1200ms;

  --container: 1200px;
  --container-narrow: 720px;
  --container-wide: 1440px;
  --gutter: clamp(20px, 5vw, 40px);

  --header-h: 76px;
}

/* ===== Dark Theme Section Class ===== */
.theme-dark {
  background: var(--bg);
  color: var(--fg);
  transition: background var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out);
  --bg: #111111;
  --bg-elevated: #1A1A1A;
  --bg-muted: #161616;
  --fg: #F7F3EC;
  --fg-muted: #B5AFA3;
  --fg-subtle: #6F6A60;
  --border: #2A2A2A;
  --border-strong: #3A3A36;
  --accent: #D4A843;
  --accent-fg: #111111;
  --accent-muted: rgba(212, 168, 67, 0.14);
  --gold: #D4A843;
  --gold-soft: #E0B85A;
  --gold-muted: rgba(212, 168, 67, 0.18);
  --gold-glow: rgba(212, 168, 67, 0.30);
  --mesh-1: rgba(212, 168, 67, 0.10);
  --mesh-2: rgba(17, 17, 17, 0.6);
  --mesh-3: rgba(212, 168, 67, 0.05);

  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.4);
  --shadow-md: 0 6px 18px rgb(0 0 0 / 0.45), 0 2px 4px rgb(0 0 0 / 0.3);
  --shadow-lg: 0 24px 60px rgb(0 0 0 / 0.55), 0 8px 16px rgb(0 0 0 / 0.35);
}

/* ===== 3. Base ===== */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  font-size: var(--text-base);
  font-weight: 400;
  transition: background var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out);
}
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.theme-dark body::after { opacity: 0.06; mix-blend-mode: screen; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  font-variation-settings: 'opsz' 144;
}
h1 { font-size: var(--text-hero); font-weight: 500; letter-spacing: -0.03em; line-height: 0.98; }
h2 { font-size: var(--text-2xl); font-weight: 500; }
h3 { font-size: var(--text-xl); font-weight: 500; letter-spacing: -0.015em; }
p { color: var(--fg-muted); line-height: 1.65; }

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

/* ===== 4. Layout ===== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); position: relative; }
.container-wide { max-width: var(--container-wide); }
.container-narrow { max-width: var(--container-narrow); }
section { padding-block: var(--space-32); position: relative; }
section + section { border-top: 1px solid transparent; }

/* Hairline dourada entre seções-chave */
.hairline { position: relative; }
.hairline::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: 120px; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to right, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
}

/* ===== 5. Eyebrow ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--text-xs);
  color: var(--gold);
  margin-bottom: var(--space-5);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}

/* ===== 6. Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
  will-change: transform;
  position: relative;
  isolation: isolate;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
  border: 1px solid var(--accent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: #111111;
  border: 1px solid var(--gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn svg { width: 18px; height: 18px; }

/* ===== 7. Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: var(--space-4);
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid transparent !important;
  transition: padding var(--duration-base) var(--ease-out),
              background var(--duration-base) var(--ease-out),
              backdrop-filter var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.header[data-scrolled="true"] {
  padding-block: 10px;
  background: color-mix(in srgb, var(--bg) 80%, transparent) !important;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 var(--border), 0 8px 24px rgb(17 17 17 / 0.04) !important;
  border-bottom: 1px solid var(--border) !important;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); }
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border: 1px solid var(--border-strong);
}
.theme-dark .brand-mark { background: var(--bg-elevated); color: var(--gold); border-color: var(--gold-muted); }
.brand-text small { display: block; font-family: var(--font-body); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: -2px; }

.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  position: relative;
  transition: color var(--duration-fast);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }

.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; padding: 10px 18px; font-size: 0.85rem; } }

.menu-btn { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius-full); }
.menu-btn span { display: block; width: 16px; height: 1px; background: var(--fg); position: relative; }
.menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--fg); }
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }

@media (max-width: 860px) {
  .nav { display: none; position: fixed; inset: var(--header-h) 0 auto 0; padding: var(--space-8) var(--gutter); flex-direction: column; gap: var(--space-5); background: var(--bg); border-bottom: 1px solid var(--border); }
  .nav[data-open="true"] { display: flex; }
  .menu-btn { display: inline-flex; }
}

/* ===== 8. Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + var(--space-16));
  padding-bottom: var(--space-24);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.2) contrast(1.05) brightness(0.7);
  transform: scale(1.05);
  transition: transform 6s ease;
}
.theme-dark .hero-video video { filter: grayscale(0.35) contrast(1.1) brightness(0.5); }
.hero[data-loaded="true"] .hero-video video { transform: scale(1.0); }

.hero-video::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(17, 17, 17, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 70%, rgba(212, 168, 67, 0.18) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.78) 60%, var(--bg) 100%);
  z-index: 1;
}
.theme-dark .hero-video::before {
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(17, 17, 17, 0.65) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 70%, rgba(212, 168, 67, 0.22) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(17, 17, 17, 0.6) 0%, rgba(17, 17, 17, 0.85) 60%, var(--bg) 100%);
}

/* Fallback mesh quando vídeo desativado */
.hero[data-video="off"] .hero-video video { display: none; }
.hero[data-video="off"] .hero-video {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, var(--mesh-1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, var(--mesh-2) 0%, transparent 65%),
    radial-gradient(ellipse 100% 80% at 50% 100%, var(--mesh-3) 0%, transparent 70%),
    var(--bg);
}
.hero[data-video="off"] .hero-video::before { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  color: #F7F3EC;
}
.hero-content .eyebrow { color: var(--gold); }
.hero-content h1 {
  color: #F7F3EC;
  max-width: 18ch;
  margin-bottom: var(--space-6);
}
.hero-content h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  display: inline-block;
  transition: font-variation-settings 600ms var(--ease-out);
}
.hero-content h1 .accent:hover { font-variation-settings: 'opsz' 144, 'wght' 600; }
.hero-subhead {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  max-width: 56ch;
  color: rgba(247, 243, 236, 0.82);
  margin-bottom: var(--space-10);
  line-height: 1.55;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-12); }
.hero-ctas .btn-primary { background: var(--gold); color: #111111; border-color: var(--gold); }
.hero-ctas .btn-primary:hover { background: #E0B85A; box-shadow: var(--shadow-gold); }
.hero-ctas .btn-ghost { color: #F7F3EC; border-color: rgba(247, 243, 236, 0.25); }
.hero-ctas .btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(212, 168, 67, 0.05); }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(247, 243, 236, 0.12);
  max-width: 720px;
}
.hero-trust li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--text-sm);
  color: rgba(247, 243, 236, 0.7);
  font-weight: 500;
}
.hero-trust li svg { width: 14px; height: 14px; color: var(--gold); }

.hero-scroll {
  position: absolute; left: 50%; bottom: 28px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(247, 243, 236, 0.6);
  z-index: 3;
}
.hero-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollHint 2s ease-in-out infinite; }
@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); opacity: 1; transform-origin: top; }
  50% { transform: scaleY(0.5); opacity: 0.4; transform-origin: top; }
}

/* ===== 9. Section head ===== */
.section-head { text-align: center; max-width: 760px; margin: 0 auto var(--space-16); }
.section-head .eyebrow { justify-content: center; }
.section-head p { margin-top: var(--space-4); font-size: var(--text-base); }

/* ===== 10. Sobre ===== */
.sobre-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 880px) { .sobre-grid { grid-template-columns: 1fr; gap: var(--space-10); } }

.sobre-text p + p { margin-top: var(--space-4); }
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.theme-dark .stat-num { color: var(--gold); }
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 8px;
  line-height: 1.4;
}

.sobre-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-muted) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.sobre-portrait::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, var(--gold-muted) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, var(--accent-muted) 0%, transparent 60%);
}
.sobre-portrait:not(:has(img))::after {
  content: "Retrato profissional · placeholder";
  position: absolute; left: 24px; bottom: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.sobre-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
}
.sobre-portrait .badge {
  position: absolute; top: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(17, 17, 17, 0.88);
  color: var(--gold);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.sobre-portrait .badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* ===== 11. Áreas ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 880px) { .areas-grid { grid-template-columns: 1fr; } }

.area-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8) var(--space-8);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
  overflow: hidden;
}
.area-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 50%, transparent);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.area-card:hover::before { opacity: 1; }

.area-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--gold-muted);
  color: var(--gold-soft);
  margin-bottom: var(--space-6);
  border: 1px solid var(--gold-muted);
}
.area-icon svg { width: 28px; height: 28px; }
.theme-dark .area-icon { color: var(--gold); }

.area-card h3 { margin-bottom: var(--space-3); }
.area-card > p { margin-bottom: var(--space-5); font-size: var(--text-sm); }
.area-list { display: flex; flex-direction: column; gap: 10px; }
.area-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: var(--text-sm);
  color: var(--fg-muted);
  line-height: 1.5;
}
.area-list li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 8px;
  width: 6px; height: 1px;
  background: var(--gold);
}

/* ===== 12. Diferenciais ===== */
.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
@media (max-width: 1000px) { .dif-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dif-grid { grid-template-columns: 1fr; } }

.dif-card {
  padding: var(--space-8);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}
.dif-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.dif-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--accent-muted);
  color: var(--accent);
  margin-bottom: var(--space-5);
}
.theme-dark .dif-icon { color: var(--gold); background: var(--accent-muted); }
.dif-icon svg { width: 22px; height: 22px; }
.dif-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.dif-card p { font-size: var(--text-sm); }

/* ===== 13. Processo ===== */
.processo { background: var(--bg-muted); }
.processo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.processo-grid::before {
  content: "";
  position: absolute;
  left: 5%; right: 5%; top: 38px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  opacity: 0.4;
}
@media (max-width: 880px) {
  .processo-grid { grid-template-columns: 1fr; }
  .processo-grid::before { display: none; }
}
.step {
  position: relative;
  padding: 0 var(--space-3);
  text-align: center;
}
.step-num {
  position: relative;
  width: 76px; height: 76px;
  display: grid; place-items: center;
  border-radius: var(--radius-full);
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 auto var(--space-5);
  z-index: 1;
}
.step-num::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gold-muted);
}
.step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); }

/* ===== 14. Depoimentos ===== */
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 980px) { .depo-grid { grid-template-columns: 1fr; } }
.depo-card {
  position: relative;
  padding: var(--space-10) var(--space-8) var(--space-8);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.depo-card::before {
  content: "“";
  position: absolute;
  top: -10px; left: 24px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
}
.depo-quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-6);
}
.depo-meta { display: flex; align-items: center; gap: 14px; padding-top: var(--space-4); border-top: 1px solid var(--border); }
.depo-avatar {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.theme-dark .depo-avatar { background: var(--bg-muted); border: 1px solid var(--gold-muted); }
.depo-name { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.depo-role { font-size: 0.78rem; color: var(--fg-subtle); }

/* ===== 15. FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-6) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--fg);
  transition: color var(--duration-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: transform var(--duration-base) var(--ease-out),
              border-color var(--duration-fast),
              background var(--duration-fast);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--fg-muted); transition: color var(--duration-fast); }
.faq-item[open] .faq-icon { transform: rotate(180deg); background: var(--gold); border-color: var(--gold); }
.faq-item[open] .faq-icon svg { color: var(--accent); }
.faq-answer { padding: 0 0 var(--space-6); color: var(--fg-muted); font-size: var(--text-base); line-height: 1.65; max-width: 70ch; }

/* ===== 16. CTA Final (Premium UX Sênior) ===== */
.cta-wrap {
  padding-block: var(--space-16) 0;
}
.cta-card {
  position: relative;
  background: linear-gradient(165deg, #1A1A1A 0%, #0A0A0A 100%);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 60px);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}
.cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% -10%, rgba(212, 168, 67, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 110%, rgba(212, 168, 67, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card::after {
  content: "";
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.cta-card-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-card h2 {
  color: #F7F3EC;
  font-size: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  margin-bottom: var(--space-5);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-card p {
  color: rgba(247, 243, 236, 0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-10);
  line-height: 1.6;
}
.cta-card .eyebrow { color: var(--gold); justify-content: center; }
.cta-card .eyebrow::before { background: var(--gold); }
.cta-actions {
  display: flex; justify-content: center; align-items: center; gap: var(--space-4);
}
@media (max-width: 640px) {
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ===== 17. Contato ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}
@media (max-width: 880px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: var(--space-8) var(--space-6);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.contact-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--gold-muted);
  color: var(--gold-soft);
}
.theme-dark .contact-icon { color: var(--gold); }
.contact-icon svg { width: 22px; height: 22px; }
.contact-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-subtle); font-weight: 600; margin-bottom: 4px; }
.contact-value { color: var(--fg); font-weight: 500; font-size: 0.95rem; line-height: 1.4; }
.contact-value a:hover { color: var(--gold); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/9;
  background: var(--bg-muted);
  border: 1px solid var(--border);
}
@media (max-width: 768px) { .map-wrap { aspect-ratio: 16/9; } }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(180deg) contrast(1.05) brightness(0.95) grayscale(0.2); }

/* ===== 18. Footer ===== */
.footer {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  padding-block: var(--space-20) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-16);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { margin-top: var(--space-4); font-size: 0.9rem; max-width: 36ch; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: var(--space-4);
  font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: var(--fg-muted); transition: color var(--duration-fast); }
.footer-links a:hover { color: var(--gold); }

.oab-seal {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1px solid var(--gold-muted);
  display: grid; place-items: center;
  text-align: center;
  padding: 14px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.3;
  margin-top: var(--space-4);
  position: relative;
}
.oab-seal::before {
  content: "";
  position: absolute; inset: 6px;
  border-radius: 50%;
  border: 1px dashed var(--gold-muted);
}
.oab-seal strong { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--fg-subtle);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-ethics {
  max-width: var(--container);
  margin: var(--space-6) auto 0;
  padding-inline: var(--gutter);
  font-size: 0.72rem;
  color: var(--fg-subtle);
  line-height: 1.5;
  text-align: center;
  font-style: italic;
}

/* ===== 19. Floating UI ===== */
.float-wa {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35), 0 2px 6px rgb(0 0 0 / 0.15);
  transition: transform var(--duration-fast) var(--ease-spring);
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 28px; height: 28px; }
.float-wa::after {
  content: "Fale agora";
  position: absolute;
  right: 70px;
  top: 50%; transform: translateY(-50%);
  background: var(--accent); color: var(--accent-fg);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--duration-fast);
}
.float-wa:hover::after { opacity: 1; }

.to-top {
  position: fixed;
  right: 22px; bottom: 90px;
  z-index: 89;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--fg);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity var(--duration-base), transform var(--duration-base);
}
.to-top[data-show="true"] { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { color: var(--gold); border-color: var(--gold); }
.to-top svg { width: 18px; height: 18px; }

/* ===== 20. LGPD Banner ===== */
.lgpd {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 95;
  max-width: 460px;
  margin: 0 auto;
  padding: var(--space-5);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  transition: transform var(--duration-slow) var(--ease-out);
}
.lgpd[data-show="true"] { transform: translateY(0); }
.lgpd p { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: var(--space-4); }
.lgpd-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.lgpd-actions button {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
  transition: all var(--duration-fast);
}
.lgpd-actions .accept { background: var(--accent); color: var(--accent-fg); border-color: var(--accent); }
.lgpd-actions .accept:hover { background: var(--gold); color: var(--accent); border-color: var(--gold); }
.lgpd-actions .essential:hover { border-color: var(--gold); color: var(--gold); }
@media (min-width: 600px) { .lgpd { left: auto; right: 22px; bottom: 22px; } }

/* ===== 21. Reveals ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== 22. Custom cursor ===== */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  will-change: transform;
  transition: opacity var(--duration-fast);
  opacity: 0;
}
.cursor-dot { width: 6px; height: 6px; border-radius: 50%; background: #F7F3EC; transform: translate(-50%, -50%); }
.cursor-ring { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #F7F3EC; transform: translate(-50%, -50%); transition: width 200ms, height 200ms, opacity var(--duration-fast); }
body[data-cursor="on"] .cursor-dot, body[data-cursor="on"] .cursor-ring { opacity: 1; }
body[data-cursor="on"][data-cursor-hover="true"] .cursor-ring { width: 56px; height: 56px; }

/* ===== 23. Skip & focus ===== */
.skip {
  position: absolute; top: -100px; left: 16px;
  background: var(--accent); color: var(--accent-fg);
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  z-index: 1000;
  transition: top var(--duration-fast);
}
.skip:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ===== 24. Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-scroll-line { animation: none; }
  .hero-video video { display: none; }
}

/* ===== 25. Print ===== */
@media print {
  .header, .float-wa, .to-top, .lgpd, .hero-video, .theme-toggle, .menu-btn { display: none !important; }
  body { background: #fff; color: #000; }
  section { padding-block: 24px; }
  .hero { min-height: auto; padding-top: 24px; }
  .hero-content h1, .hero-content .eyebrow, .hero-subhead, .hero-trust li { color: #000 !important; }
}
