@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');

/* ============================================================= */
/* VARIÁVEIS                                                     */
/* ============================================================= */
:root {
  --bg-main: #08090D;
  --bg-card: #0F1014;
  --bg-card-dark: #0A0B0F;
  --bg-card-gradient: linear-gradient(180deg, #1A1C22 0%, #111318 100%);
  --bg-tool-card: linear-gradient(160deg, #0D1A2E 0%, #060C18 100%);
  --border-color: rgba(64, 64, 64, 0.43);
  --border-glow: rgba(30, 120, 255, 0.3);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.63);
  --text-muted: rgba(255, 255, 255, 0.45);
  --accent-blue: #1E78FF;
  --accent-blue-glow: rgba(30, 120, 255, 0.15);
  --accent-green: #00C851;
  --gradient-hero-top: linear-gradient(#08090D 1%, transparent 20%);
  --gradient-hero-bottom: linear-gradient(to top, #08090D 5%, transparent 60%);
  --gradient-btn-primary: linear-gradient(135deg, #1E78FF 0%, #0A4FCC 100%);
  --gradient-btn-cta: radial-gradient(at center bottom, #1E78FF 0%, #0A3A9E 54%);
  --shadow-card: rgba(0, 0, 0, 0.82) 0px 18px 41px 0px;
  --radius-card: 20px;
  --radius-pill: 100px;
  --radius-sm: 10px;
  --radius-hero-mobile: 49px 49px 0 0;
}

/* ============================================================= */
/* RESET / BASE                                                  */
/* ============================================================= */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img, svg, video { display: block; max-width: 100%; }

/* ============================================================= */
/* SEÇÃO 1 — HERO                                                */
/* ============================================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  background-color: #08090D;
  background-image:
    radial-gradient(120% 80% at 50% -10%, rgba(30, 120, 255, 0.18), transparent 60%),
    radial-gradient(80% 60% at 85% 5%, rgba(10, 79, 204, 0.14), transparent 55%);
}

/* Brilho animado de fundo (fallback caso não haja vídeo) */
.hero-glow {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(40% 40% at 30% 25%, rgba(30, 120, 255, 0.22), transparent 60%),
    radial-gradient(45% 45% at 75% 35%, rgba(10, 79, 204, 0.18), transparent 60%);
  filter: blur(10px);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1); }
  100% { transform: translate3d(4%, 3%, 0) scale(1.12); }
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  background: transparent;
  filter: brightness(0.65) saturate(0.8);
}

/* Overlay topo */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(#08090D 1%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Overlay rodapé */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, #08090D 5%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Logo */
.hero-logo {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-link {
  display: inline-flex;
  align-items: center;
}
.hero-logo-link img {
  height: 40px;
  width: auto;
  display: block;
  /* Logo já é clara (texto branco + símbolo azul) — sem filtro de brilho. */
}

/* Conteúdo */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 80px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================================= */
/* LABEL DE SEÇÃO                                                */
/* ============================================================= */
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 40px 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label svg { width: 14px; height: 14px; color: var(--accent-blue); }

/* ============================================================= */
/* SEÇÃO 2 — FERRAMENTAS                                         */
/* ============================================================= */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.tool-card {
  position: relative;
  background: var(--bg-tool-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(30, 120, 255, 0.2) 0px 24px 48px 0px;
  border-color: rgba(30, 120, 255, 0.4);
}
.tool-card:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
}

.tool-card-header {
  padding: 28px 28px 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.tool-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-blue-glow);
  border: 1px solid var(--border-glow);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent-blue);
}
.tool-icon svg { width: 24px; height: 24px; }

.tool-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.tool-badge-free {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-green);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(0, 200, 81, 0.1);
  border: 1px solid rgba(0, 200, 81, 0.3);
}

.tool-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  padding: 14px 28px 8px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.tool-description {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 28px 24px;
  line-height: 1.6;
}

.tool-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 56px);
  margin: 0 28px 28px;
  padding: 14px 24px;
  background: var(--gradient-btn-cta);
  border: none;
  border-radius: 200px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.tool-card:hover .tool-btn { opacity: 0.92; }
.tool-btn:hover { opacity: 0.85; transform: scale(1.02); }
.tool-btn:active { transform: scale(0.98); }
.tool-btn svg { width: 16px; height: 16px; }

/* ============================================================= */
/* SEÇÃO 3 — REDES SOCIAIS                                       */
/* ============================================================= */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card-gradient);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.social-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: #fff;
}
.social-icon svg { width: 22px; height: 22px; }
.social-text { display: flex; flex-direction: column; gap: 2px; }
.social-network { font-size: 16px; font-weight: 600; color: #fff; }
.social-handle { font-size: 13px; font-weight: 300; color: var(--text-muted); }
.social-arrow {
  width: 18px; height: 18px;
  margin-left: auto;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-btn:hover { transform: translateY(-4px); }
.social-btn:hover .social-arrow { transform: translate(3px, -3px); color: #fff; }

.social-btn--tiktok:hover,
.social-btn--instagram:hover {
  border-color: rgba(30, 120, 255, 0.45);
  box-shadow: rgba(30, 120, 255, 0.18) 0px 24px 48px 0px;
}

/* ============================================================= */
/* FOOTER                                                        */
/* ============================================================= */
.footer {
  text-align: center;
  padding: 40px 24px 56px;
  border-top: 1px solid var(--border-color);
  max-width: 700px;
  margin: 0 auto;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-social a { color: var(--text-secondary); transition: color 0.2s; }
.footer-social a:hover { color: var(--accent-blue); }
.footer-social span { color: var(--text-muted); }
.footer-copy { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.footer-note { font-size: 11px; font-weight: 300; color: rgba(255, 255, 255, 0.3); line-height: 1.6; }

/* ============================================================= */
/* MODAL                                                         */
/* ============================================================= */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-card {
  background: linear-gradient(180deg, #13161E 0%, #0A0C12 100%);
  border: 1px solid rgba(64, 64, 64, 0.5);
  border-radius: var(--radius-card);
  padding: 32px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  position: relative;
}
.modal-overlay.active .modal-card { transform: translateY(0) scale(1); }

/* scrollbar */
.modal-card::-webkit-scrollbar { width: 8px; }
.modal-card::-webkit-scrollbar-track { background: transparent; }
.modal-card::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.12); border-radius: 8px; }

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.12); color: #fff; transform: rotate(90deg); }
.modal-close svg { width: 18px; height: 18px; }

.modal-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-right: 40px;
}
.modal-icon { width: 52px; height: 52px; }
.modal-icon svg { width: 26px; height: 26px; }
.modal-title { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.modal-subtitle { font-size: 13px; font-weight: 300; color: var(--text-muted); line-height: 1.5; margin-top: 4px; }

/* Inputs */
.calc-form { display: block; }
.calc-input-group { margin-bottom: 16px; }
.calc-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.calc-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(64, 64, 64, 0.5);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.calc-input:focus { border-color: rgba(30, 120, 255, 0.6); background: rgba(30, 120, 255, 0.05); }
.calc-input::placeholder { color: rgba(255, 255, 255, 0.2); }

.modal-calc-btn {
  width: 100%;
  margin-top: 8px;
  padding: 15px 24px;
  background: var(--gradient-btn-cta);
  border: none;
  border-radius: 200px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.modal-calc-btn:hover { opacity: 0.88; transform: scale(1.01); }
.modal-calc-btn:active { transform: scale(0.98); }

/* Resultado */
.calc-result {
  margin-top: 20px;
  padding: 24px 20px;
  background: rgba(30, 120, 255, 0.08);
  border: 1px solid rgba(30, 120, 255, 0.25);
  border-radius: 14px;
  text-align: center;
  display: none;
}
.calc-result.visible { display: block; animation: resultIn 0.4s ease; }
@keyframes resultIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.calc-result-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.calc-result-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.calc-result-value.is-negative { color: #FF5C5C; }
.calc-result-value.is-positive { color: var(--accent-green); }

.calc-result-breakdown {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.calc-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.calc-result-row:last-child { border-bottom: none; padding-bottom: 0; }
.calc-result-row span { color: var(--text-muted); }
.calc-result-row strong { color: #fff; font-weight: 600; }

.calc-result-note {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}
.calc-result-note.error { color: #FF8A8A; }

/* ============================================================= */
/* MOBILE (max-width: 767px)                                     */
/* ============================================================= */
@media (max-width: 767px) {
  .hero {
    min-height: auto;
    border-radius: 0;
    justify-content: flex-start; /* vídeo no topo, card flui abaixo */
    background: var(--bg-main);
  }
  .hero-glow { display: none; }   /* desnecessário com o vídeo em cover */
  .hero::after { display: none; } /* o card de vidro já faz a transição */
  .hero::before {                 /* escurece só o topo p/ a logo aparecer */
    height: 130px;
    background: linear-gradient(#08090D 8%, transparent 100%);
  }

  /* Vídeo PREENCHE o topo (cover), enquadrando a pessoa como na referência.
     Ajuste o enquadramento mudando a altura (mais alto = mais zoom). */
  .hero-video {
    position: relative;
    top: auto; left: auto;
    width: 100%;
    height: 58vh;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.82) saturate(0.92);
  }

  .hero-logo { padding: 18px 24px; }
  .hero-logo-link img { height: 30px; }

  /* Card de VIDRO LÍQUIDO que "sobe" por cima do vídeo (bottom-sheet) */
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    margin-top: -52px;            /* sobreposição = efeito de card subindo */
    padding: 36px 26px 24px;
    border-radius: var(--radius-hero-mobile); /* 49px 49px 0 0 */
    background: linear-gradient(to bottom,
        rgba(16, 18, 24, 0.22) 0%,
        rgba(11, 12, 16, 0.85) 44%,
        var(--bg-main) 100%);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    backdrop-filter: blur(20px) saturate(1.4);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
  }
  /* Puxador (grabber) no topo do card */
  .hero-content::before {
    content: '';
    position: absolute;
    top: 16px; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 5px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.22);
  }
  /* Divisor antes da próxima seção */
  .hero-content::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.1);
  }
  .hero-badge {
    margin-bottom: 18px;
    padding: 7px 18px;
    font-size: 12px;
  }
  .hero-title {
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -0.6px;
    margin-bottom: 14px;
  }
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.55;
    max-width: 300px;
  }

  .section-label { padding: 22px 20px 16px; }

  .tools-grid {
    grid-template-columns: 1fr;
    padding: 0 16px 40px;
    gap: 16px;
  }
  .tool-card-header { padding: 24px 22px 0; }
  .tool-title { padding: 12px 22px 8px; font-size: 22px; }
  .tool-description { padding: 0 22px 22px; }
  .tool-btn { width: calc(100% - 44px); margin: 0 22px 24px; }

  .social-grid {
    grid-template-columns: 1fr;
    padding: 0 16px 40px;
    gap: 14px;
  }

  .modal-card { padding: 24px 22px; }
  .modal-title { font-size: 20px; }
  .calc-result-value { font-size: 32px; }
}

/* ============================================================= */
/* ACESSIBILIDADE — movimento reduzido                           */
/* ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-glow { animation: none; }
}

/* ============================================================= */
/* RESULTADO COMPLETO                                            */
/* ============================================================= */
.result-wrapper { margin-top: 24px; }

.result-content {
  transition: filter 0.5s ease;
}
.result-locked {
  filter: blur(7px);
  pointer-events: none;
  user-select: none;
  border-radius: 14px;
  overflow: hidden;
}
.result-unlocked { filter: none; pointer-events: auto; }

/* Headline */
.result-headline {
  text-align: center;
  padding: 22px 20px;
  background: rgba(30, 120, 255, 0.08);
  border: 1px solid rgba(30, 120, 255, 0.2);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}
.result-headline-value {
  display: block;
  font-size: 44px; /* máximo — o JS reduz para caber (fitText) */
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: -1.5px;
  line-height: 1;
  max-width: 100%;
  white-space: nowrap;
}
.result-headline-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* Métricas */
.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.result-metric-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.result-metric-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.result-metric-value {
  font-size: 17px; /* máximo — o JS reduz para caber (fitText) */
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}
.result-metric-note {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.4;
}

/* Gráficos */
.result-charts-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.result-chart-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 18px 16px 14px;
}
.result-chart-title {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 14px;
}
.result-chart-canvas-wrap {
  position: relative;
  height: 200px;
}
.result-chart-canvas-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

/* ============================================================= */
/* CTA DE DESBLOQUEIO (em evidência, acima do resultado borrado) */
/* ============================================================= */
.unlock-cta {
  text-align: center;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(30, 120, 255, 0.14), transparent 60%),
    linear-gradient(160deg, #0D1A2E 0%, #060C18 100%);
  border: 1px solid var(--border-glow);
  border-radius: 18px;
  padding: 28px 24px 24px;
  margin-bottom: 18px;
  box-shadow: rgba(30, 120, 255, 0.15) 0px 18px 44px 0px;
}
.unlock-cta-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: var(--accent-blue-glow);
  border: 1px solid var(--border-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 16px;
}
.unlock-cta-icon svg { width: 26px; height: 26px; }
.unlock-cta-title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.2px;
  margin: 0 0 8px;
}
.unlock-cta-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 auto 20px;
  max-width: 320px;
}
.unlock-btn {
  font-size: 14px;
  line-height: 1.35;
}

/* ============================================================= */
/* LEAD MODAL (abre por cima da calculadora)                     */
/* ============================================================= */
.lead-modal-overlay { z-index: 1010; } /* acima do calcModal (1000) */

.lead-modal-card {
  background:
    radial-gradient(110% 70% at 50% 0%, rgba(30, 120, 255, 0.14), transparent 55%),
    linear-gradient(180deg, #13161E 0%, #0A0C12 100%) !important;
  border-color: rgba(30, 120, 255, 0.3) !important;
  box-shadow: rgba(30, 120, 255, 0.18) 0px 24px 64px 0px, rgba(0, 0, 0, 0.85) 0px 18px 41px 0px !important;
  text-align: center;
  max-width: 460px;
}

.lead-modal-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: var(--accent-blue-glow);
  border: 1px solid var(--border-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-blue);
  margin: 4px auto 18px;
}
.lead-modal-icon svg { width: 26px; height: 26px; }

.lead-modal-title {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  margin: 0 0 10px;
}

.lead-modal-sub {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 auto 24px;
  max-width: 340px;
}

.lead-form { text-align: left; }
.lead-form .calc-input-group { margin-bottom: 14px; }
.lead-form .modal-calc-btn { margin-top: 6px; }

/* ============================================================= */
/* SHAKE                                                         */
/* ============================================================= */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  18%      { transform: translateX(-7px); }
  36%      { transform: translateX(7px); }
  54%      { transform: translateX(-4px); }
  72%      { transform: translateX(4px); }
}
.shake { animation: shake 0.42s ease; }
