/* ─────────────────────────────────────────
    DESIGN TOKENS — PREMIUM DARK THEME
───────────────────────────────────────── */
:root {
  --bg-deep: #030105;
  --brand-purple: #8b5cf6;
  --brand-orange: #f97316;
  --glass-bg: rgba(20, 10, 30, 0.3);
  --glass-border: rgba(139, 92, 246, 0.15);
  --glass-hover: rgba(139, 92, 246, 0.25);
  --white: #f8f8f8;
  --muted: rgba(248, 248, 248, 0.65);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg-deep);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── GLOBAL BG & EFEITOS DE VIDRO ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 60% 55% at 50% -5%,
      rgba(139, 92, 246, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 45% at 95% 75%,
      rgba(249, 115, 22, 0.08) 0%,
      transparent 55%
    );
}

.wrap {
  position: relative;
  z-index: 1;
}

/* ── UTILITÁRIOS PREMIUM ── */
.text-glow {
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}
.hl-purple {
  color: var(--brand-purple);
}
.hl-orange {
  color: var(--brand-orange);
}
.gradient-text {
  background: linear-gradient(
    to right,
    var(--brand-purple),
    var(--brand-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-center {
  text-align: center;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-purple);
  border-radius: 3px;
}

/* ─────────────────────────────────────────
    NAV (HEADER)
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 0;
  background: linear-gradient(
    to bottom,
    rgba(3, 1, 5, 0.95) 0%,
    transparent 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  /* AJUSTE IMAGEM 4: Forçar uma linha e evitar quebras */
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--brand-orange);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}
.nav-link:hover {
  color: var(--brand-orange);
}
.nav-btn {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-purple), #a78bfa);
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  border: 1px solid rgba(139, 92, 246, 0.5);
  transition: all 0.3s ease;
  /* AJUSTE IMAGEM 4: Garantir que seta e texto fiquem juntos */
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.nav-btn:hover {
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────
    HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 80px;
  position: relative;
}
.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 246, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 32px;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 900px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 48px;
}
.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), #ea580c);
  padding: 20px 44px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(249, 115, 22, 0.4);
  transition: all 0.35s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--glass-border);
  padding: 20px 36px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  border-color: var(--brand-purple);
  color: var(--white);
  background: rgba(139, 92, 246, 0.1);
}

/* HERO STATS (DESKTOP) */
.hero-stats {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.h-stat {
  flex: 1;
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.h-stat:last-child {
  border-right: none;
}
.h-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--brand-orange);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.h-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
    SEÇÕES GENÉRICAS
───────────────────────────────────────── */
.s-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
.sec {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.sec-dark {
  background: rgba(3, 1, 5, 0.4);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.sec-head {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 64px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.pill-purple {
  color: var(--brand-purple);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
}
.pill-orange {
  color: var(--brand-orange);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
}
.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.sec-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto;
}

/* BENTO CARD BASE */
.bento-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
  border-color: rgba(249, 115, 22, 0.4);
}

/* ─────────────────────────────────────────
    GRIDS GERAIS
───────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ─────────────────────────────────────────
    COMPONENTES DE CARDS
───────────────────────────────────────── */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--brand-purple);
}
.icon-box.orange {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.2);
  color: var(--brand-orange);
}
.icon-box.purple {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
  color: var(--brand-purple);
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--white);
  line-height: 1.3;
}
.card-sub {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--brand-orange);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}
.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-list li {
  font-size: 0.95rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-list li i {
  width: 18px;
  color: var(--brand-purple);
  flex-shrink: 0;
}

/* CTA BAR */
.cta-bar {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  margin-top: 56px;
}
.cta-bar p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--muted);
}
.cta-bar p strong {
  color: var(--brand-orange);
  font-weight: 500;
  display: block;
  margin-top: 12px;
}

/* PLATAFORMAS STRIP */
.plat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.plat-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--white);
}
.plat-badge i,
.plat-badge svg {
  width: 20px;
  color: var(--brand-purple);
}

.highlight-card {
  padding: 40px;
}
.highlight-card h4 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-weight: 500;
}
.highlight-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
    RESULTADOS NUMÉRICOS (CASOS DE SUCESSO)
───────────────────────────────────────── */
.numbers-grid {
  margin-bottom: 48px;
}
.num-box {
  text-align: center;
  padding: 40px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.num-box:hover {
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-3px);
}
.num-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;
  /* AJUSTE IMAGEM 2 e 3: Impedir quebra de linha no valor */
  white-space: nowrap;
}
.num-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.num-box p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 200px;
}

/* DEPOIMENTOS */
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--brand-orange);
}
.stars i {
  width: 18px;
}
.dep-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  font-style: italic;
}
.dep-author {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dep-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}
.dep-role {
  font-size: 0.85rem;
  color: var(--brand-purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ─────────────────────────────────────────
    SOBRE (FOTO E TAGS)
───────────────────────────────────────── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.image-box {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 4/5;
}
.sobre-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
}
.sobre-content em {
  color: var(--white);
  font-style: normal;
  display: block;
  padding-left: 24px;
  border-left: 2px solid var(--brand-purple);
  margin: 32px 0;
}
.sobre-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.sobre-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.05rem;
  color: var(--muted);
}
.sobre-list li i {
  width: 22px;
  color: var(--brand-purple);
  flex-shrink: 0;
  margin-top: 2px;
}

.sobre-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.s-tag {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 20px;
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-weight: 500;
}
.s-tag i {
  width: 24px;
  height: 24px;
  color: var(--brand-orange);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
    PROCESSO
───────────────────────────────────────── */
.step-num {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-orange);
  margin-bottom: 16px;
  font-weight: 600;
}
.duration {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 6px;
  margin: 24px 0;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
    🔥 CTA FINAL (ÚLTIMA DESKTOP) PERFEITAMENTE ALINHADO
───────────────────────────────────────── */
.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  border-color: rgba(249, 115, 22, 0.3);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.cta-box .sec-sub {
  text-align: center;
  margin: 0 auto 40px auto;
}
.cta-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  width: 100%;
}
.cta-badges span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--white);
}
.cta-badges span i {
  width: 22px;
  color: var(--brand-purple);
}

.expert-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  border-radius: 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  margin: 0 auto 32px auto;
  text-align: center;
}
.expert-badge p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}
.expert-badge strong {
  color: var(--white);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 4px;
}

.cta-button-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 16px 0 32px 0;
}
.cta-footer {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  justify-content: center;
  /* AJUSTE IMAGEM 1: Alinhamento em linha e espaçamento */
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

/* ─────────────────────────────────────────
    FOOTER
───────────────────────────────────────── */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
  background: rgba(3, 1, 5, 0.8);
}
.bible-verse {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--brand-purple);
  margin-bottom: 80px;
  opacity: 0.9;
}
.bible-ref {
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-top: 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}
.f-title {
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.f-title-passos {
  color: var(--brand-orange);
}
.f-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 400px;
}
.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.f-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  transition: 0.3s;
}
.f-links a:hover {
  color: var(--brand-orange);
}
.f-socials {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.f-socials a {
  color: var(--muted);
  transition: 0.3s;
}
.f-socials a:hover {
  color: var(--brand-orange);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 40px;
  text-align: center;
}
.f-copy {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
    ANIMAÇÕES GERAIS
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
    🔥 ALINHAMENTO MOBILE ABSOLUTO
───────────────────────────────────────── */

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .f-text {
    margin: 0 auto;
  }
  .f-socials {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .s-inner,
  .nav-inner {
    padding: 0 24px;
  }
  .sec {
    padding: 80px 0;
  }

  nav {
    padding: 16px 0;
  }
  .nav-links {
    display: none;
  }
  .nav-inner {
    /* AJUSTE IMAGEM 4: Garantir que no mobile o logo e botão fiquem bem distribuídos */
    justify-content: space-between;
    gap: 10px;
  }
  .nav-logo {
    /* AJUSTE IMAGEM 4: Diminuir um pouco o tamanho para caber tudo em uma linha */
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  .nav-btn {
    padding: 10px 16px;
    font-size: 0.65rem;
  }

  .hero {
    padding: 140px 24px 60px;
  }
  .hero-title {
    font-size: 2.3rem;
    margin-bottom: 24px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  /* 🔥 1. AS 3 CAIXAS INICIAIS (HERO STATS) 100% LADO A LADO */
  .hero-stats {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    padding: 0 !important;
    border-radius: 12px;
  }
  .h-stat {
    flex: 1 !important;
    padding: 16px 4px !important;
    border-right: 1px solid var(--glass-border) !important;
    border-bottom: none !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  .h-stat:last-child {
    border-right: none !important;
  }
  .h-stat-num {
    font-size: 1.35rem !important;
    margin-bottom: 6px !important;
  }
  .h-stat-label {
    font-size: 0.55rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
  }

  .sec-title {
    font-size: 2.1rem;
  }
  .sec-head {
    margin-bottom: 40px;
  }
  .card-title {
    font-size: 1.4rem;
  }
  .bento-card {
    padding: 32px 24px;
  }

  .grid-2,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* 🔥 2. RESULTADOS (CASOS DE SUCESSO) EM 2x2 NO MOBILE */
  .numbers-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .num-box {
    padding: 24px 12px !important;
    border-radius: 16px;
  }
  .num-val {
    /* AJUSTE IMAGEM 2 e 3: Garantir que não quebre no mobile */
    font-size: 1.6rem !important;
    margin-bottom: 8px;
    white-space: nowrap;
  }
  .num-label {
    font-size: 0.65rem !important;
    margin-bottom: 8px;
  }
  .num-box p {
    font-size: 0.75rem !important;
    line-height: 1.4;
  }

  /* 🔥 3. SOBRE O ESPECIALISTA (TAGS EM 2x2 NO MOBILE) */
  .sobre-tags {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .s-tag {
    flex-direction: column !important;
    text-align: center !important;
    padding: 16px 8px !important;
    font-size: 0.7rem !important;
    gap: 10px !important;
    justify-content: center !important;
  }
  .s-tag i {
    margin: 0 !important;
  }

  /* CTA FINAL MOBILE */
  .cta-box {
    padding: 48px 24px;
  }
  .cta-badges {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .expert-badge {
    padding: 20px;
    width: 100%;
  }
  .expert-badge p {
    font-size: 0.9rem;
  }
  .cta-footer {
    /* AJUSTE IMAGEM 1 MOBILE: Garantir 2x2 ou linha única flexível */
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
}
/* ─────────────────────────────────────────
    LEAD POPUP (MODAL)
───────────────────────────────────────── */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.lead-modal.is-open {
  display: block;
}

.lead-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 1, 5, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lead-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 10px)) scale(0.98);
  width: min(680px, calc(100% - 32px));
  max-height: 86vh;
  overflow: auto;
  background: var(--glass-bg);
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 24px;
  padding: 36px 34px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  position: relative;
}
.lead-modal.is-open .lead-modal__dialog {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.lead-modal__dialog::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(
      ellipse 60% 50% at 20% 0%,
      rgba(139, 92, 246, 0.22) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 50% at 90% 85%,
      rgba(249, 115, 22, 0.16) 0%,
      transparent 55%
    );
  pointer-events: none;
}
.lead-modal__dialog > * {
  position: relative;
  z-index: 1;
}

.lead-modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  z-index: 2;
}
.lead-modal__close i {
  width: 18px;
  height: 18px;
}
.lead-modal__close:hover {
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-1px);
}

.lead-modal__head {
  text-align: center;
  margin-bottom: 24px;
}
.lead-modal__head .pill {
  margin-bottom: 18px;
}
.lead-modal__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--white);
}
.lead-modal__sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 52ch;
  margin: 0 auto;
}

.lead-form {
  width: 100%;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.lead-field--full {
  grid-column: 1 / -1;
}

.lead-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.72);
  margin-bottom: 8px;
}
.lead-field input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: 0.25s ease;
}
.lead-field input::placeholder {
  color: rgba(248, 248, 248, 0.45);
}
.lead-field input:focus {
  border-color: rgba(139, 92, 246, 0.55);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
}

.lead-actions {
  text-align: center;
  margin-top: 6px;
}
.lead-submit {
  width: 100%;
  justify-content: center;
}
.lead-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(248, 248, 248, 0.6);
  line-height: 1.6;
}
.lead-status {
  margin-top: 14px;
  min-height: 22px;
  font-size: 0.95rem;
  color: rgba(248, 248, 248, 0.75);
}

/* Mobile */
@media (max-width: 768px) {
  .lead-modal__dialog {
    padding: 26px 20px;
    border-radius: 20px;
  }
  .lead-modal__title {
    font-size: 1.85rem;
  }
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .lead-field--full {
    grid-column: auto;
  }
}
