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

:root {
  --navy:        #0D1C30;
  --navy-mid:    #152540;
  --navy-lite:   #1C3050;
  --accent:      #ff4000;
  --accent-dim:  rgba(255,64,0,.12);
  --accent-glow: rgba(255,64,0,.22);
  --white:       #FFFFFF;
  --bg:          #F4F6FA;
  --border:      #E5E7EB;
  --tx1:         #111827;
  --tx2:         #4B5563;
  --tx3:         #9CA3AF;
  --r:           14px;
  --r-sm:        8px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--tx1);
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 24px 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  width: 100%;
  gap: 0;
}

/* Logo */
.hero-logo-wrap {
  margin-bottom: 36px;
  animation: fadeDown .6s ease both;
}
.hero-logo {
  width: 200px;
  max-width: 80vw;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .92;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
  animation: fadeUp .55s .1s ease both;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent-glow);
}

/* Title */
.hero-copy {
  animation: fadeUp .6s .15s ease both;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 800;
}

/* Description */
.hero-desc {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,.70);
  line-height: 1.70;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-desc strong {
  color: rgba(255,255,255,.90);
  font-weight: 600;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,64,0,.40);
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: #e63900;
  box-shadow: 0 6px 28px rgba(255,64,0,.55);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.28);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 100px;
  padding: 14px 32px;
  gap: 28px;
  animation: fadeUp .6s .3s ease both;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-plus {
  font-size: 18px;
  color: var(--accent);
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.40);
  font-weight: 500;
  white-space: nowrap;
}
.stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.10);
  flex-shrink: 0;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bounceDown 1s 1.5s ease infinite;
}
.scroll-hint svg { width: 18px; height: 18px; }

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}


/* ═══════════════════════════════
   BENEFITS
═══════════════════════════════ */
.benefits {
  background: var(--white);
  padding: 80px 24px 100px;
}

.benefits-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.benefits-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--accent-dim);
}
.benefits-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 600;
  color: var(--tx1);
  line-height: 1.35;
}
.benefits-title strong { color: var(--navy); font-weight: 800; }
.br-desktop { display: block; }

/* ═══════════════════════════════
   PLANS GRID
═══════════════════════════════ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
  align-items: start;
}

/* Plan card base */
.plan-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  animation: fadeUp .5s ease both;
}
.plan-card:nth-child(1) { animation-delay: .05s; }
.plan-card:nth-child(2) { animation-delay: .12s; }
.plan-card:nth-child(3) { animation-delay: .19s; }

/* Featured (Ouro) */
.plan-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
  transform: translateY(-6px);
}
.plan-card--featured:hover { transform: translateY(-9px); box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg); }

/* Escolas */
.plan-card--escolas {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-lite) 100%);
  border-color: transparent;
}
.plan-card--escolas:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Popular badge */
.plan-popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(255,64,0,.35);
}

/* Plan head */
.plan-head { display: flex; flex-direction: column; gap: 10px; }

.plan-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}
.plan-badge--prata  { background: rgba(148,163,184,.15); color: #64748b; }
.plan-badge--ouro   { background: rgba(180,130,0,.12);   color: #92650a; }
.plan-badge--escolas { background: rgba(255,255,255,.12); color: rgba(255,255,255,.75); }

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.plan-currency {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--tx2);
  padding-top: 6px;
}
.plan-card--escolas .plan-currency { color: rgba(255,255,255,.55); }
.plan-card--featured .plan-currency { color: var(--accent); }

.plan-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--tx1);
  letter-spacing: -.02em;
  line-height: 1;
}
.plan-card--escolas .plan-amount { color: var(--white); }
.plan-card--featured .plan-amount { color: var(--accent); }

.plan-period {
  font-size: 13px;
  font-weight: 500;
  color: var(--tx3);
  padding-top: 10px;
  line-height: 1.4;
}
.plan-card--escolas .plan-period { color: rgba(255,255,255,.40); }

.plan-tagline {
  font-size: 12.5px;
  color: var(--tx2);
  line-height: 1.5;
  padding-top: 2px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.plan-card--escolas .plan-tagline { color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.10); }

/* Features list */
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pf {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.45;
}
.pf svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.pf span { color: var(--tx2); }
.pf span strong { color: var(--tx1); font-weight: 600; }

.pf--yes svg { color: #2EA44F; }
.pf--no  svg { color: #D1D5DB; }
.pf--no  span { color: var(--tx3); }

.plan-card--escolas .pf span       { color: rgba(255,255,255,.65); }
.plan-card--escolas .pf span strong { color: rgba(255,255,255,.90); }
.plan-card--escolas .pf--yes svg   { color: #4ade80; }
.plan-card--escolas .pf--no svg    { color: rgba(255,255,255,.15); }
.plan-card--escolas .pf--no span   { color: rgba(255,255,255,.25); }

/* Plan button */
.plan-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  margin-top: auto;
}
.plan-btn--outline {
  border: 2px solid var(--border);
  color: var(--tx1);
  background: transparent;
}
.plan-btn--outline:hover { border-color: var(--navy); background: var(--navy); color: white; }

.plan-btn--featured {
  background: var(--accent);
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(255,64,0,.35);
}
.plan-btn--featured:hover { background: #e63900; box-shadow: 0 6px 24px rgba(255,64,0,.50); transform: translateY(-1px); }

.plan-btn--escolas {
  background: rgba(255,255,255,.12);
  color: white;
  border: 1px solid rgba(255,255,255,.20);
}
.plan-btn--escolas:hover { background: rgba(255,255,255,.20); border-color: rgba(255,255,255,.40); }

/* Bottom CTA */
.benefits-cta {
  text-align: center;
  background: var(--bg);
  border-radius: var(--r);
  padding: 44px 32px;
  border: 1px solid var(--border);
}
.bcta-text {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--tx1);
  margin-bottom: 24px;
}
.bcta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-text-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--tx2);
  text-decoration: none;
  transition: color .15s;
}
.btn-text-link:hover { color: var(--navy); }


/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 36px 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  width: 120px;
  filter: brightness(0) invert(1);
  opacity: .55;
  display: block;
}
.footer-copy {
  text-align: center;
  flex: 1;
  min-width: 180px;
}
.footer-initiative {
  font-size: 13px;
  color: rgba(255,255,255,.50);
  margin-bottom: 4px;
}
.footer-initiative strong { color: rgba(255,255,255,.75); font-weight: 600; }
.footer-cr { font-size: 11px; color: rgba(255,255,255,.28); }
.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,.30);
  text-decoration: none;
  transition: color .14s;
}
.footer-links a:hover { color: rgba(255,255,255,.65); }


/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 980px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .plan-card--featured { transform: none; }
  .br-desktop { display: none; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 18px; padding: 14px 20px; }
  .stat-sep { display: none; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-logo-wrap { order: 1; }
  .footer-copy { order: 2; }
  .footer-links { order: 3; justify-content: center; }
  .bcta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 420px) {
  .hero-stats { flex-direction: column; border-radius: 16px; gap: 14px; }
}
