/* ============================================================
   ADVVITOR – Vitor Cruz Ferreira Advocacia
   Paleta: Gold #C7A56B · Dark #141A15 · Beige #E6D2A8
   ============================================================ */

/* ─── TOKENS ─── */
:root {
  --gold:        #C7A56B;
  --gold-lt:     #E6D2A8;
  --gold-dk:     #9A7A48;
  --gold-glow:   rgba(199,165,107,.22);
  --bg:          #0D1410;
  --bg2:         #141A15;
  --bg3:         #1B2420;
  --bg4:         #222E25;
  --border:      #1E2B20;
  --border2:     #28382B;
  --text:        #EDE7D5;
  --muted:       #7A8C7C;
  --muted2:      #5A6B5C;
  --wa:          #25D366;
  --wa-dk:       #1aad52;
  --red:         #C0392B;
  --red-soft:    rgba(192,57,43,.12);
  --ff-h:        'Cormorant Garamond', Georgia, serif;
  --ff-b:        'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --r-sm:        10px;
  --r-md:        16px;
  --r-lg:        24px;
  --r-xl:        32px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-b);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── CONTAINER ─── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── TIPOGRAFIA COMPARTILHADA ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--ff-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--gold-lt);
  line-height: 1.15;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head .section-label::before { display: none; }

.gold-bar {
  width: 52px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0 22px;
}

/* ─── BOTÕES ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 16px 32px;
  border-radius: var(--r-md);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 4px 28px rgba(37,211,102,.3);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--wa-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(37,211,102,.42);
}
.btn-primary.btn-lg { padding: 19px 44px; font-size: 1.05rem; }
.btn-primary.btn-wa-full { width: 100%; justify-content: center; }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold-lt);
  font-weight: 600;
  font-size: .93rem;
  padding: 15px 30px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(199,165,107,.35);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s;
  white-space: nowrap;
}
.btn-outline-gold:hover {
  background: rgba(199,165,107,.08);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-tel-alt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold-lt);
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 34px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(230,210,168,.25);
  transition: background .25s var(--ease), border-color .25s;
}
.btn-tel-alt:hover { background: rgba(230,210,168,.07); border-color: var(--gold-lt); }

/* ======================================================
   NAVBAR
====================================================== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all .35s var(--ease);
}
#nav::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13,20,16,.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all .35s var(--ease);
}
#nav.scrolled::before {
  background: rgba(13,20,16,.92);
  backdrop-filter: blur(24px);
  border-bottom-color: rgba(199,165,107,.12);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}

.nav-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  font-size: .95rem;
  box-shadow: 0 4px 16px rgba(199,165,107,.32);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-size: .95rem; font-weight: 700; color: var(--gold-lt); letter-spacing: .04em; }
.logo-text em { font-style: normal; font-size: .65rem; font-weight: 400; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }

/* Links nav */
#nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 16px;
}
#nav-links a {
  font-size: .84rem;
  font-weight: 500;
  color: rgba(230,210,168,.65);
  padding: 8px 13px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
#nav-links a:hover { color: var(--gold-lt); background: rgba(199,165,107,.07); }
#nav-links a.active { color: var(--gold); }

/* CTA nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  transition: background .2s, transform .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--wa-dk); transform: translateY(-1px); }
.nav-cta span { display: block; }

/* Burger */
#burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px 6px;
  margin-left: 12px;
  flex-shrink: 0;
}
#burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease), width .3s;
}
#burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#burger.open span:nth-child(2) { opacity: 0; width: 0; }
#burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================================
   HERO
====================================================== */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 75% at 70% 50%, #172619 0%, transparent 65%),
    radial-gradient(ellipse 60% 55% at 15% 80%, #101e12 0%, transparent 60%),
    var(--bg);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: .4;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(199,165,107,.08) 0%, transparent 70%);
  top: -100px; right: 10%;
}
.hero-glow-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(37,211,102,.05) 0%, transparent 70%);
  bottom: 60px; left: 5%;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}

/* ── Hero esquerda ── */
.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(199,165,107,.08);
  border: 1px solid rgba(199,165,107,.22);
  border-radius: 99px;
  padding: 7px 18px 7px 10px;
  margin-bottom: 30px;
}
.badge-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--wa);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37,211,102,.22);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100%{ box-shadow:0 0 0 3px rgba(37,211,102,.22); }
  50%{ box-shadow:0 0 0 7px rgba(37,211,102,.05); }
}

.hero-title {
  font-family: var(--ff-h);
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 600;
  color: var(--gold-lt);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.title-em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.82;
  max-width: 510px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  background: rgba(199,165,107,.05);
  border: 1px solid rgba(199,165,107,.14);
  border-radius: var(--r-lg);
  padding: 20px 0;
}
.stat {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: var(--ff-h);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-label {
  font-size: .68rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(199,165,107,.18);
  flex-shrink: 0;
}

/* ── Hero direita: card urgência ── */
.hero-right { display: flex; justify-content: center; }

.urgency-card {
  background: var(--bg2);
  border: 1px solid rgba(199,165,107,.18);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
  box-shadow:
    0 32px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(199,165,107,.06) inset;
  position: relative;
  overflow: hidden;
}
.urgency-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-dk));
}

.urgency-header {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(192,57,43,.1);
  border: 1px solid rgba(192,57,43,.28);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin-bottom: 22px;
}
.urgency-icon-wrap {
  width: 38px; height: 38px;
  background: rgba(192,57,43,.15);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #e74c3c; font-size: 1rem;
  flex-shrink: 0;
  animation: shake 3s ease-in-out infinite;
}
@keyframes shake {
  0%,90%,100%{ transform: rotate(0); }
  92%{ transform: rotate(-8deg); }
  94%{ transform: rotate(8deg); }
  96%{ transform: rotate(-5deg); }
  98%{ transform: rotate(3deg); }
}
.urgency-label {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #e74c3c;
  margin-bottom: 2px;
}
.urgency-title {
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.urgency-text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}
.urgency-text strong { color: var(--text); }

.btn-wa-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 16px;
  border-radius: var(--r-md);
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 4px 22px rgba(37,211,102,.3);
  margin-bottom: 18px;
}
.btn-wa-card:hover {
  background: var(--wa-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.44);
}

.card-checks {
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 16px;
}
.card-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: var(--muted);
}
.card-checks i { color: var(--wa); font-size: .78rem; flex-shrink: 0; }

.card-footer-note {
  font-size: .73rem;
  color: var(--muted2);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.card-footer-note i { color: var(--gold); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: .5;
}
.scroll-line {
  width: 1.5px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%{ transform: scaleY(0); transform-origin: top; }
  50%{ transform: scaleY(1); transform-origin: top; }
  51%{ transform: scaleY(1); transform-origin: bottom; }
  100%{ transform: scaleY(0); transform-origin: bottom; }
}
.scroll-indicator span {
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted2);
}

/* ======================================================
   ALERTA BAR
====================================================== */
.alert-bar {
  background: linear-gradient(90deg, #6b0f0f, #941515, #6b0f0f);
  padding: 14px 0;
  position: relative;
  z-index: 2;
}
.alert-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.alert-bar-left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.alert-bar-left i {
  color: #FFD700;
  font-size: 1rem;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }
.alert-bar-left p { font-size: .85rem; color: rgba(255,255,255,.9); }
.alert-bar-left strong { color: #fff; }
.alert-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.95);
  color: #941515;
  font-size: .78rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 7px;
  white-space: nowrap;
  transition: transform .2s, background .2s;
  flex-shrink: 0;
}
.alert-bar-btn:hover { transform: scale(1.04); background: #fff; }

/* ======================================================
   SEÇÃO SOBRE
====================================================== */
.section-sobre {
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.section-sobre::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(199,165,107,.04) 0%, transparent 65%);
  pointer-events: none;
}

.sobre-layout {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: center;
}

/* Foto */
.sobre-foto { position: relative; }
.foto-outer {
  position: relative;
  width: 100%;
}
.foto-inner {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,.65);
}
.foto-inner::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-xl);
  box-shadow: inset 0 0 0 1.5px rgba(199,165,107,.25);
  pointer-events: none;
}
.foto-inner img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  filter: brightness(.88) contrast(1.05) saturate(.9);
  display: block;
}

.foto-accent {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.foto-accent-1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(199,165,107,.12) 0%, transparent 70%);
  top: -30px; right: -30px;
  filter: blur(20px);
}
.foto-accent-2 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(37,211,102,.08) 0%, transparent 70%);
  bottom: 20px; left: -20px;
  filter: blur(20px);
}

.foto-credencial {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border: 1px solid rgba(199,165,107,.22);
  border-radius: var(--r-md);
  padding: 14px 20px;
  margin-top: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.foto-credencial > i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.foto-credencial strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold-lt);
}
.foto-credencial span {
  font-size: .75rem;
  color: var(--muted);
}

/* Conteúdo sobre */
.sobre-content {}
.sobre-destaque {
  font-size: 1.08rem;
  color: var(--gold-lt);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
}
.sobre-destaque strong { color: var(--gold); font-style: normal; }
.sobre-content p {
  font-size: .96rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.sobre-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(199,165,107,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  transition: border-color .25s, background .25s;
}
.feature-item:hover { border-color: rgba(199,165,107,.25); background: rgba(199,165,107,.07); }
.feature-ico {
  width: 36px; height: 36px;
  background: rgba(199,165,107,.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .85rem;
  flex-shrink: 0;
}
.feature-item strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.feature-item span { font-size: .78rem; color: var(--muted); }

.sobre-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ======================================================
   SEÇÃO DIFERENCIAIS
====================================================== */
.section-diferenciais {
  padding: 110px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diff-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  padding: 44px 36px 36px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.diff-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-dk));
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
  border-color: rgba(199,165,107,.35);
}
.diff-card:hover::after { transform: scaleX(1); }

.diff-card-featured {
  background: linear-gradient(160deg, #182619, #1E3020);
  border-color: rgba(199,165,107,.32);
}
.diff-featured-label {
  position: absolute;
  top: 22px; right: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--bg);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
}

.diff-num {
  font-family: var(--ff-h);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(199,165,107,.07);
  line-height: 1;
  margin-bottom: -10px;
  pointer-events: none;
}
.diff-card-featured .diff-num { color: rgba(199,165,107,.12); }

.diff-ico {
  width: 56px; height: 56px;
  background: rgba(199,165,107,.1);
  border: 1px solid rgba(199,165,107,.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: 20px;
  transition: background .3s;
}
.diff-card:hover .diff-ico { background: rgba(199,165,107,.18); }

.diff-card h3 {
  font-family: var(--ff-h);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-lt);
  line-height: 1.25;
  margin-bottom: 14px;
}
.diff-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.78;
}
.diff-line {
  width: 32px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 22px;
}

/* ======================================================
   SEÇÃO BENEFÍCIOS
====================================================== */
.section-beneficios {
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.benef-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benef-card {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  cursor: default;
}
.benef-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.benef-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199,165,107,.3);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.benef-card:hover::before { opacity: 1; }

.benef-ico-wrap {
  width: 52px; height: 52px;
  background: rgba(199,165,107,.1);
  border: 1px solid rgba(199,165,107,.18);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--gold);
  margin-bottom: 18px;
  transition: background .3s, transform .3s var(--ease-spring);
}
.benef-card:hover .benef-ico-wrap {
  background: rgba(199,165,107,.18);
  transform: scale(1.1) rotate(-5deg);
}

.benef-card h4 {
  font-family: var(--ff-h);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: 10px;
}
.benef-card p { font-size: .875rem; color: var(--muted); line-height: 1.78; }

/* ======================================================
   CTA MID
====================================================== */
.section-cta-mid {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-mid-bg {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, #0e1d11 0%, #162818 45%, #0e1d11 100%);
  border-top: 1px solid rgba(199,165,107,.18);
  border-bottom: 1px solid rgba(199,165,107,.18);
}
.cta-mid-grain {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(199,165,107,.018) 2px,
    rgba(199,165,107,.018) 4px
  );
}

.cta-mid-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 72px;
  flex-wrap: wrap;
}
.cta-mid-text { flex: 1; min-width: 280px; }
.cta-mid-text h2 {
  font-family: var(--ff-h);
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: 14px;
  line-height: 1.2;
}
.cta-mid-text p { font-size: 1rem; color: var(--muted); line-height: 1.75; }
.cta-mid-text strong { color: var(--text); }
.cta-mid-text .section-label { margin-bottom: 12px; }

.cta-mid-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
}
.cta-priv {
  font-size: .76rem;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-priv i { color: var(--gold); }

/* ======================================================
   SEÇÃO PROCESSO
====================================================== */
.section-processo {
  padding: 110px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.steps-track { position: relative; }
.steps-line {
  position: absolute;
  top: 32px; left: calc(12.5% + 0px); right: calc(12.5% + 0px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(199,165,107,.3) 15%,
    rgba(199,165,107,.3) 85%,
    transparent 100%
  );
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 64px; height: 64px;
  background: var(--bg2);
  border: 2px solid rgba(199,165,107,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  position: relative;
  flex-shrink: 0;
  transition: border-color .3s, background .3s;
}
.step-number span {
  font-family: var(--ff-h);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
}
.step:hover .step-number {
  border-color: var(--gold);
  background: rgba(199,165,107,.08);
}

.step-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  width: 100%;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.step:hover .step-card {
  transform: translateY(-4px);
  border-color: rgba(199,165,107,.28);
  box-shadow: 0 16px 45px rgba(0,0,0,.3);
}

.step-ico {
  width: 52px; height: 52px;
  background: rgba(199,165,107,.1);
  border: 1px solid rgba(199,165,107,.18);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold);
  margin: 0 auto 16px;
}
.step-card h4 {
  font-family: var(--ff-h);
  font-size: 1.1rem; font-weight: 600;
  color: var(--gold-lt); margin-bottom: 10px;
}
.step-card p { font-size: .86rem; color: var(--muted); line-height: 1.72; }

/* ======================================================
   SEÇÃO FAQ
====================================================== */
.section-faq {
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar .section-title { font-size: clamp(1.8rem,3vw,2.6rem); }
.faq-sidebar p { font-size: .93rem; color: var(--muted); line-height: 1.75; margin: 16px 0 28px; }
.faq-btn-wa { width: 100%; justify-content: center; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item:hover { border-color: rgba(199,165,107,.28); }
.faq-item.open { border-color: rgba(199,165,107,.35); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px;
  text-align: left;
  color: var(--text);
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}
.faq-q:hover { color: var(--gold-lt); }
.faq-q[aria-expanded="true"] span { color: var(--gold); }
.faq-icon {
  color: var(--gold);
  flex-shrink: 0;
  font-size: .85rem;
  transition: transform .35s var(--ease);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-a strong { color: var(--text); }

/* ======================================================
   CTA FINAL
====================================================== */
.section-cta-final {
  padding: 120px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.cta-final-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(199,165,107,.08);
  animation: expandRing 4s ease-out infinite;
}
.ring-1 { width: 300px; height: 300px; animation-delay: 0s; }
.ring-2 { width: 500px; height: 500px; animation-delay: 1.2s; }
.ring-3 { width: 700px; height: 700px; animation-delay: 2.4s; }
@keyframes expandRing {
  0%   { opacity: .5; transform: translate(-50%,-50%) scale(.8); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.3); }
}

.cta-final-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
.cta-final-badge {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(199,165,107,.15), rgba(199,165,107,.06));
  border: 1px solid rgba(199,165,107,.25);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--gold);
  margin-bottom: 28px;
  box-shadow: 0 8px 30px rgba(199,165,107,.12);
}
.cta-final-inner h2 {
  font-family: var(--ff-h);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: var(--gold-lt);
  line-height: 1.15;
  margin-bottom: 18px;
}
.cta-final-inner h2 em { font-style: italic; color: var(--gold); }
.cta-final-inner > p {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 44px;
}
.cta-final-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-final-note {
  margin-top: 26px;
  font-size: .76rem; color: var(--muted2);
  display: flex; align-items: center; gap: 6px;
}
.cta-final-note i { color: var(--gold); }

/* ======================================================
   SEÇÃO CONTATO
====================================================== */
.section-contato {
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contato-info .section-title { font-size: clamp(1.75rem,3vw,2.4rem); }
.contato-info > p { font-size: .94rem; color: var(--muted); line-height: 1.75; margin-bottom: 36px; }

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.info-ico {
  width: 44px; height: 44px;
  background: rgba(199,165,107,.08);
  border: 1px solid rgba(199,165,107,.18);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .95rem;
  flex-shrink: 0;
}
.info-ico-wa {
  background: rgba(37,211,102,.1);
  border-color: rgba(37,211,102,.25);
  color: var(--wa);
}
.info-text strong {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted2);
  margin-bottom: 3px;
}
.info-text a {
  font-size: .92rem;
  color: var(--gold-lt);
  transition: color .2s;
}
.info-text a:hover { color: var(--gold); }
.info-text span { font-size: .88rem; color: var(--text); line-height: 1.65; }

/* Form box */
.contato-form-box {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.contato-form-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-dk));
}

.form-header {
  margin-bottom: 30px;
}
.form-header h3 {
  font-family: var(--ff-h);
  font-size: 1.75rem; font-weight: 600;
  color: var(--gold-lt); line-height: 1.2; margin-bottom: 8px;
}
.form-header p { font-size: .86rem; color: var(--muted); }
.form-header strong { color: var(--text); }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .13em;
  color: var(--muted2); margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: .92rem;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(199,165,107,.5);
  box-shadow: 0 0 0 3px rgba(199,165,107,.07);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted2); }
.field select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C7A56B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field select option { background: var(--bg2); }
.field textarea { resize: vertical; min-height: 90px; }

.form-privacy {
  text-align: center; margin-top: 14px;
  font-size: .75rem; color: var(--muted2);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.form-privacy i { color: var(--gold); }

/* ======================================================
   FOOTER
====================================================== */
#footer {
  background: #08100A;
  border-top: 1px solid rgba(199,165,107,.1);
}

.footer-main { padding: 70px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.3fr;
  gap: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .875rem; color: var(--muted);
  line-height: 1.75; max-width: 280px; margin-bottom: 20px;
}
.footer-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.25);
  color: var(--wa);
  font-size: .82rem; font-weight: 700;
  padding: 9px 18px; border-radius: var(--r-sm);
  transition: background .2s;
}
.footer-wa-link:hover { background: rgba(37,211,102,.18); }

.footer-nav h5,
.footer-contact h5 {
  font-family: var(--ff-h);
  font-size: 1rem; font-weight: 600;
  color: var(--gold-lt); margin-bottom: 18px;
}
.footer-nav a {
  display: block;
  font-size: .875rem; color: var(--muted);
  margin-bottom: 11px;
  transition: color .2s, padding-left .2s;
}
.footer-nav a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .875rem; color: var(--muted);
  margin-bottom: 11px;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact i { color: var(--gold); font-size: .8rem; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .76rem; color: var(--muted2); }

/* ======================================================
   FLUTUANTES
====================================================== */
#float-wa {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 998;
  width: 62px; height: 62px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}
#float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 38px rgba(37,211,102,.6);
}
#float-wa::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: var(--wa);
  opacity: .18;
  animation: ring-pulse 2.8s ease-in-out infinite;
}
@keyframes ring-pulse { 0%,100%{transform:scale(1);opacity:.18} 50%{transform:scale(1.4);opacity:0} }

.float-tooltip {
  position: absolute;
  right: 74px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  color: var(--text); font-size: .76rem; font-weight: 600;
  white-space: nowrap; padding: 7px 14px; border-radius: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  transform: translateX(6px);
}
#float-wa:hover .float-tooltip { opacity: 1; transform: translateX(0); }

#back-top {
  position: fixed;
  bottom: 104px; right: 34px;
  z-index: 997;
  width: 44px; height: 44px;
  background: rgba(199,165,107,.1);
  border: 1px solid rgba(199,165,107,.25);
  border-radius: 50%;
  color: var(--gold); font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .25s, background .25s;
}
#back-top.visible { opacity: 1; pointer-events: auto; }
#back-top:hover { background: rgba(199,165,107,.2); transform: translateY(-2px); }

/* ======================================================
   REVEAL ANIMATIONS
====================================================== */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal         { transform: translateY(32px); }
.reveal-left    { transform: translateX(-40px); }
.reveal-right   { transform: translateX(40px); }

.reveal.in,
.reveal-left.in,
.reveal-right.in { opacity: 1; transform: none; }

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }
.delay-5 { transition-delay: .60s; }

/* ======================================================
   RESPONSIVO
====================================================== */
@media (max-width: 1100px) {
  .hero-wrap { grid-template-columns: 1fr 400px; gap: 48px; }
  .sobre-layout { grid-template-columns: 400px 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1.2fr; gap: 40px; }
}

@media (max-width: 960px) {
  .diff-grid  { grid-template-columns: 1fr 1fr; }
  .benef-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-line { display: none; }
  .contato-grid { grid-template-columns: 1fr; gap: 56px; }
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Navbar mobile */
  #nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(8,16,10,.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch; gap: 0;
    padding: 10px 0 16px;
    border-bottom: 1px solid rgba(199,165,107,.14);
    transform: translateY(-110%);
    transition: transform .35s var(--ease);
    z-index: 999;
    margin-right: 0;
  }
  #nav-links.open { transform: translateY(0); }
  #nav-links a { padding: 14px 28px; font-size: 1rem; border-radius: 0; }
  .nav-cta { display: none; }
  #burger { display: flex; }

  .hero-wrap {
    grid-template-columns: 1fr;
    padding: 40px 28px 80px;
    gap: 36px;
  }
  .hero-right { order: -1; }
  .urgency-card { max-width: 100%; }
  .hero-stats { width: 100%; }
  .stat { padding: 0 20px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline-gold { width: 100%; justify-content: center; }

  .sobre-layout { grid-template-columns: 1fr; gap: 48px; }
  .foto-inner img { height: 400px; }

  .cta-mid-content { flex-direction: column; gap: 36px; }
  .cta-mid-action { align-items: stretch; width: 100%; }
  .cta-mid-action .btn-primary { justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .container    { padding: 0 22px; }
  .nav-wrap     { padding: 0 22px; }
  .alert-bar-inner { padding: 0 22px; }
  .hero-wrap    { padding: 36px 22px 72px; }
  .section-sobre,
  .section-diferenciais,
  .section-beneficios,
  .section-processo,
  .section-faq,
  .section-cta-final,
  .section-contato { padding: 72px 0; }

  .diff-grid  { grid-template-columns: 1fr; }
  .benef-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }

  .hero-stats { flex-direction: column; gap: 14px; padding: 22px 20px; }
  .stat-divider { width: 60px; height: 1px; }

  .cta-final-btns { flex-direction: column; align-items: stretch; }
  .cta-final-btns .btn-tel-alt { justify-content: center; }

  .contato-form-box { padding: 34px 26px; }
  .sobre-btns { flex-direction: column; }
  .sobre-btns a { justify-content: center; }
}
