@font-face {
  font-family: "Inter";
  src: url("/fonts/inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-900: #07111f;
  --navy-800: #0a1a2f;
  --navy-700: #0f2440;
  --cyan: #3ec6f0;
  --cyan-bright: #5fd6ff;
  --blue: #2b7fd0;
  --text: #eaf2fb;
  --text-dim: #9fb3c9;
  --line: rgba(255, 255, 255, 0.1);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, #12365e 0%, transparent 55%),
    radial-gradient(900px 500px at 0% 110%, #0b2748 0%, transparent 50%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800) 60%, var(--navy-900));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Orbs de fundo */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; }
.orb-1 { width: 480px; height: 480px; background: var(--cyan); top: -120px; right: -80px; }
.orb-2 { width: 420px; height: 420px; background: var(--blue); bottom: -140px; left: -100px; }

/* Layout */
.shell {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px) 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

/* Intro */
.logos { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.logo { height: 38px; width: auto; object-fit: contain; }
.logo-novaia { height: 44px; }
.logo-sep { width: 1px; height: 30px; background: var(--line); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.grad {
  background: linear-gradient(100deg, var(--cyan-bright), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin-top: 20px;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 460px;
}

.bullets { list-style: none; margin-top: 28px; display: grid; gap: 12px; }
.bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text);
}
.bullets svg {
  width: 20px; height: 20px; flex-shrink: 0;
  fill: none; stroke: var(--cyan); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
  background: rgba(62, 198, 240, 0.12);
  border-radius: 50%; padding: 3px;
}

/* Card */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3.5vw, 40px);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(140deg, rgba(95, 214, 255, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

.card h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; }
.card-sub { margin-top: 6px; color: var(--text-dim); font-size: 14px; }

form { margin-top: 24px; display: grid; gap: 16px; }

.field { display: grid; gap: 7px; }
.field span { font-size: 13px; font-weight: 500; color: var(--text-dim); }
.field input {
  width: 100%;
  padding: 13px 15px;
  font-size: 15px;
  color: var(--text);
  background: rgba(7, 17, 31, 0.6);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.field input::placeholder { color: rgba(159, 179, 201, 0.5); }
.field input:focus {
  border-color: var(--cyan);
  background: rgba(7, 17, 31, 0.85);
  box-shadow: 0 0 0 3px rgba(62, 198, 240, 0.18);
}

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; line-height: 1.45; color: var(--text-dim);
  cursor: pointer; margin-top: 2px;
}
.consent input {
  margin-top: 2px; width: 16px; height: 16px;
  accent-color: var(--cyan); flex-shrink: 0; cursor: pointer;
}

.form-error {
  color: #ff8585; font-size: 13px; min-height: 0;
  display: none;
}
.form-error.show { display: block; }

.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 15px 20px;
  margin-top: 4px;
  font-family: inherit; font-size: 16px; font-weight: 700;
  color: #06121f;
  background: linear-gradient(100deg, var(--cyan-bright), var(--cyan) 55%, var(--blue));
  border: none; border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.2s ease, filter 0.2s;
  box-shadow: 0 14px 30px -10px rgba(62, 198, 240, 0.6);
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.dl-icon { width: 20px; height: 20px; fill: none; stroke: #06121f; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* Spinner */
.spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(6, 18, 31, 0.35);
  border-top-color: #06121f;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn.loading .btn-label { visibility: hidden; }
.btn.loading .spinner { display: block; position: absolute; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Sucesso */
.success { text-align: center; display: grid; justify-items: center; }
.check-circle {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(62, 198, 240, 0.14);
  border: 1px solid rgba(62, 198, 240, 0.4);
  margin-bottom: 18px;
  animation: pop 0.4s cubic-bezier(0.2, 1.4, 0.4, 1);
}
.check-circle svg {
  width: 32px; height: 32px; fill: none;
  stroke: var(--cyan-bright); stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
}
@keyframes pop { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success .btn { margin-top: 22px; }
.resend { margin-top: 16px; font-size: 13px; color: var(--text-dim); }
.resend a { color: var(--cyan); }

/* Footer */
.foot {
  position: relative; z-index: 1;
  text-align: center; padding: 22px;
  font-size: 13px; color: var(--text-dim);
  border-top: 1px solid var(--line);
}

/* Responsivo */
@media (max-width: 860px) {
  .shell { grid-template-columns: 1fr; gap: 36px; }
  .intro { text-align: center; }
  .logos { justify-content: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .bullets { justify-items: center; }
  .bullets li { justify-content: center; }
}
