/* ── VARIABLES ── */
:root {
  --fnq-navy:  #1B2A4A;
  --fnq-blue:  #4AACE8;
  --fnq-gold:  #F5B731;
  --fnq-green: #3BAE7A;
  --fnq-bg:    #F4F7FF;
  --fnq-white: #FFFFFF;
  --fnq-muted: #6B7F9E;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--fnq-bg);
  color: var(--fnq-navy);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Nunito', sans-serif; }

/* ── NAV ── */
.fnq-nav {
  background: var(--fnq-white);
  border-bottom: 1px solid rgba(27,42,74,.08);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: .9rem 0;
}

.nav-cta {
  background: var(--fnq-gold);
  color: var(--fnq-navy);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  border-radius: 8px;
  padding: .45rem 1.1rem;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245,183,49,.4);
  color: var(--fnq-navy);
}

/* ── HERO ── */
.fnq-hero {
  background: #0A1424;
  padding: 4.5rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.fnq-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: -5%; right: -5%;
  height: 80px;
  background: #F4F7FF;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-glow {
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,172,232,.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow-gold {
  position: absolute;
  bottom: -60px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,183,49,.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-logo {
  width: 75%;
  max-width: 560px;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
}

.fnq-hero h1 {
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  color: #fff;
  letter-spacing: -.02em;
}

.fnq-hero h1 em {
  font-style: normal;
  color: var(--fnq-gold);
}

.hero-sub {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.hero-bullet {
  display: inline-flex;
  align-items: center;
  padding: .4rem .8rem;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 700;
  color: #D6E8F9;
  border: 1px solid rgba(214,232,249,.2);
  background: rgba(214,232,249,.08);
  letter-spacing: .02em;
}

/* ── PILLS & TAGS ── */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,183,49,.15);
  border: 1px solid rgba(245,183,49,.3);
  color: var(--fnq-gold);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .9rem;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fnq-gold);
  animation: blink 2s infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.score-ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,174,122,.15);
  border: 1px solid rgba(59,174,122,.3);
  color: #5DD69A;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .78rem;
  padding: .3rem .85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.fnq-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,183,49,.15);
  border: 1px solid rgba(245,183,49,.3);
  color: var(--fnq-gold);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .78rem;
  padding: .3rem .85rem;
  border-radius: 100px;
}

.pill-special {
  display: inline-block;
  background: rgba(59,174,122,.12);
  border: 1px solid rgba(59,174,122,.25);
  color: #2A9B68;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .72rem;
  padding: .25rem .75rem;
  border-radius: 100px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── FORM CARD ── */
.fnq-form-card {
  background: var(--fnq-white);
  border-radius: 20px;
  padding: 2rem 1.75rem 2.25rem;
  box-shadow: 0 24px 64px rgba(27,42,74,.22);
  position: relative;
  z-index: 2;
}

.form-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--fnq-navy);
  text-align: center;
  margin-bottom: .25rem;
}

.form-hint {
  font-size: .78rem;
  color: var(--fnq-muted);
  text-align: center;
  margin-bottom: 1.35rem;
}

.fnq-label {
  font-size: .78rem;
  font-weight: 700;
  color: #3A4F72;
  margin-bottom: .3rem;
  display: block;
}

.fnq-input {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid #DDE4EF;
  border-radius: 10px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: .9rem;
  color: var(--fnq-navy);
  background: #F9FBFF;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.fnq-input:focus {
  border-color: var(--fnq-blue);
  box-shadow: 0 0 0 3px rgba(74,172,232,.12);
  background: #fff;
}

.fnq-input::placeholder { color: #B0BCCF; }
.fnq-input.is-invalid   { border-color: #E24B4A !important; }

/* ── CHECKBOXES ── */
.concurso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.concurso-check {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #F4F7FF;
  border: 1.5px solid #DDE4EF;
  border-radius: 8px;
  padding: .5rem .7rem;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  font-size: .8rem;
  font-weight: 600;
  color: var(--fnq-navy);
  user-select: none;
}

.concurso-check:hover,
.concurso-check.checked {
  border-color: var(--fnq-blue);
  background: #EBF6FD;
  color: #1670A0;
}

.concurso-check input[type="checkbox"] {
  accent-color: var(--fnq-blue);
  width: 15px; height: 15px;
  flex-shrink: 0;
  cursor: pointer;
}

#outro-input-wrap { display: none; margin-top: .5rem; }

/* ── BUTTONS ── */
.fnq-btn-primary {
  width: 100%;
  padding: .85rem;
  background: linear-gradient(135deg, #4AACE8 0%, #2D8EC8 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(74,172,232,.38);
  transition: transform .15s, box-shadow .2s;
}

.fnq-btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(74,172,232,.48); }
.fnq-btn-primary:active { transform: translateY(0); }

.btn-gold {
  display: inline-block;
  background: var(--fnq-gold);
  color: var(--fnq-navy);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: .95rem;
  border: none;
  border-radius: 12px;
  padding: .85rem 2rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(245,183,49,.38);
  transition: transform .15s, box-shadow .2s;
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245,183,49,.48); color: var(--fnq-navy); }

/* ── PRIVACY NOTE ── */
.privacy-note {
  font-size: .7rem;
  color: #A0AEBF;
  text-align: center;
  margin-top: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ── SUCCESS ── */
.success-area { display: none; text-align: center; padding: .5rem 0; }

.success-icon {
  width: 60px; height: 60px;
  background: #EAF7F0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 1rem;
}

.success-area h3 { font-weight: 900; font-size: 1.1rem; color: var(--fnq-navy); margin-bottom: .35rem; }
.success-area p  { font-size: .82rem; color: var(--fnq-muted); line-height: 1.6; }

/* ── SECTIONS ── */
.section-py     { padding: 4.5rem 0; }
.section-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fnq-blue);
  margin-bottom: .5rem;
}
.section-title {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--fnq-navy);
  letter-spacing: -.02em;
  line-height: 1.15;
}

.section-subtitle {
  max-width: 760px;
  margin-top: .9rem;
  color: var(--fnq-muted);
  font-size: .96rem;
  line-height: 1.8;
}

/* ── STEP CARDS ── */
.step-card {
  background: var(--fnq-white);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  border: 1.5px solid #EAF0FA;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
}

.step-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(27,42,74,.1); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.num-blue  { background: #4AACE8; }
.num-gold  { background: #F5B731; color: #1B2A4A; }
.num-green { background: #3BAE7A; }
.num-navy  { background: #1B2A4A; }

.step-card h4 { font-weight: 800; font-size: .95rem; color: var(--fnq-navy); margin-bottom: .4rem; }
.step-card p  { font-size: .82rem; color: var(--fnq-muted); line-height: 1.65; margin: 0; }

/* ── FEAT CARDS ── */
.feat-card {
  background: var(--fnq-white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1.5px solid #EAF0FA;
  height: 100%;
  transition: transform .2s, box-shadow .2s;
}

.feat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(27,42,74,.09); }

.feat-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: .9rem;
}

.fi-blue   { background: #E8F5FD; }
.fi-gold   { background: #FFF8E6; }
.fi-green  { background: #EAF7F0; }
.fi-purple { background: #F0EEFF; }
.fi-coral  { background: #FEF0EA; }
.fi-teal   { background: #E5F8F4; }

.feat-card h4 { font-weight: 800; font-size: .92rem; color: var(--fnq-navy); margin-bottom: .35rem; }
.feat-card p  { font-size: .8rem; color: var(--fnq-muted); line-height: 1.65; margin: 0; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--fnq-navy) 0%, #243660 100%);
  border-radius: 20px;
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 250px;
  background: radial-gradient(ellipse, rgba(74,172,232,.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 { font-weight: 900; color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -.02em; }
.cta-section p  { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ── FOOTER ── */
.fnq-footer { border-top: 1px solid rgba(27,42,74,.08); padding: 1.75rem 0; }

/* ── MODULES ── */
.module-groups {
  display: grid;
  gap: 1.25rem;
}

.module-group-card {
  background: var(--fnq-white);
  border: 1.5px solid #E6EDF9;
  border-radius: 20px;
  padding: 1.35rem;
  box-shadow: 0 16px 38px rgba(27,42,74,.06);
}

.module-group-head {
  margin-bottom: .95rem;
}

.module-group-head h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.12rem;
  color: var(--fnq-navy);
  margin: .45rem 0 0;
}

.group-badge {
  display: inline-flex;
  align-items: center;
  background: #EAF4FD;
  color: #1B7CB8;
  border: 1px solid #D4E8FA;
  border-radius: 999px;
  padding: .25rem .7rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .69rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.badge-green {
  background: #EAF7F0;
  border-color: #D5EFDF;
  color: #2C8B5E;
}

.badge-gold {
  background: #FFF8E8;
  border-color: #FBE8BB;
  color: #A5790F;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}

.module-card {
  border: 1px solid #E9EEF7;
  border-radius: 14px;
  background: #FBFDFF;
  padding: .95rem;
  height: 100%;
}

.module-card h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .91rem;
  color: var(--fnq-navy);
  margin-bottom: .35rem;
}

.module-card p {
  margin: 0;
  font-size: .79rem;
  color: var(--fnq-muted);
  line-height: 1.62;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.value-item {
  background: linear-gradient(135deg, #F7FAFF 0%, #EEF5FF 100%);
  border: 1px solid #E2ECFA;
  border-radius: 16px;
  padding: 1.25rem;
}

.value-item h4 {
  font-family: 'Nunito', sans-serif;
  font-size: .98rem;
  font-weight: 900;
  color: var(--fnq-navy);
  margin-bottom: .35rem;
}

.value-item p {
  margin: 0;
  font-size: .84rem;
  color: var(--fnq-muted);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .concurso-grid { grid-template-columns: 1fr; }

  .hero-bullets {
    gap: .45rem;
  }

  .hero-bullet {
    font-size: .7rem;
  }

  .module-grid {
    grid-template-columns: 1fr;
  }
}