/* ══════════════════════════════════════════════════════════════
   Imã de Lead — Vetor da Decisão
   Portado de "Aprovado - Imã de Lead - Vetor da Decisão.dc.html"
   (claude.ai/design) para HTML/CSS vanilla.
   ══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: "Space Grotesk";
  src: url("SpaceGrotesk-VariableFont_wght.ttf") format("truetype-variations"),
       url("SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  overflow-x: hidden;
  background: #08124A;
}

/* Hero two-column */
.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 40px min(56px, 6vw) 80px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.form-col { width: 420px; flex: none; }
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 44px; padding: 32px 24px 64px; }
  .form-col { width: 100%; }
}

/* Primary button (agora é um link <a>) */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #0529F6;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 8px;
  padding: 17px 24px;
  font: 700 15px/1 'Space Grotesk', sans-serif;
  cursor: pointer;
  letter-spacing: -.01em;
  transition: background .15s, transform .1s;
}
.btn-primary:hover { background: #0320D4; }
.btn-primary:active { transform: scale(.98); }
.btn-primary:focus-visible { outline: 3px solid #08124A; outline-offset: 3px; }

/* Final CTA button (agora é um link <a>) */
.btn-cta2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0529F6;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  padding: 18px 32px;
  font: 700 16px/1 'Space Grotesk', sans-serif;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.btn-cta2:hover { background: #0320D4; }
.btn-cta2:active { transform: scale(.98); }
.btn-cta2:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

/* Section padding responsive */
.sec-pad { padding: 88px min(56px, 6vw); }
@media (max-width: 600px) { .sec-pad { padding: 64px 24px; } }

/* Social-proof two-column */
.proof-grid {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  min-height: 600px;
  display: flex;
}
.proof-img { position: absolute; left: 50%; margin-left: -50vw; top: 0; bottom: 0; width: 36vw; }
.proof-text { margin-left: auto; width: 54%; align-self: center; padding: 96px min(56px, 6vw) 96px 56px; }
@media (max-width: 860px) {
  .proof-grid { flex-direction: column; min-height: 0; }
  .proof-img { position: relative; left: auto; margin-left: 0; width: 100%; height: 260px; }
  .proof-text { width: 100%; padding: 52px 24px 64px; }
}

.foot-pad { padding: 28px min(56px, 6vw); }
@media (max-width: 600px) { .foot-pad { padding: 24px; } }

/* Respeita usuários que pedem menos movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
