*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cyan:        #00E5D1;
  --cyan-dark:   #00C4B4;
  --cyan-glow:   rgba(0,229,209,.15);
  --cyan-border: rgba(0,229,209,.28);
  --navy:        #0A1828;
  --navy2:       #0D1F35;
  --navy3:       #112038;
  --navy4:       #162A44;
  --cream:       #F0E5D0;
  --white:       #FFFFFF;
  --light-bg:    #F7F7F7;
  --dark-text:   #0A1828;
  --text-dim:    rgba(255,255,255,.62);
  --text-muted:  rgba(255,255,255,.38);
  --border:      rgba(255,255,255,.1);
  --border-dark: rgba(0,0,0,.08);
  --radius:      12px;
  --shadow:      0 4px 24px rgba(0,0,0,.25);
  --shadow-lg:   0 16px 56px rgba(0,0,0,.38);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; font-size: 16px; color: var(--white); background: var(--navy); }

/* ─────────────── NAV ─────────────── */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,24,40,.94); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0 40px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 800; color: var(--white);
  text-decoration: none; letter-spacing: -.4px;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px; background: var(--cyan); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo span { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--cyan); }
.nav-cta {
  background: var(--cyan) !important; color: var(--navy) !important;
  padding: 9px 22px; border-radius: 8px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--cyan-dark) !important; }
.nav-mobile { display: none; background: none; border: none; cursor: pointer; }

/* ─────────────── HERO (white bg) ─────────────── */
.hero {
  background: #FFFFFF;
  min-height: 100vh;
  padding-top: 68px;
  display: flex; align-items: center;
}
.hero-content {
  max-width: 1200px; margin: 0 auto; padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center;
}
.hero-text {}
.hero h1 {
  font-size: clamp(42px, 5.5vw, 74px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--dark-text);
  margin-bottom: 36px;
}
.hero h1 .cyan { color: var(--cyan); }
.hero-sub {
  font-size: 17px; color: rgba(10,24,40,.55); line-height: 1.65; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Ben+ App Icon */
.hero-icon-wrap {
  display: flex; align-items: center; justify-content: center;
}
.benplus-icon {
  position: relative; width: min(380px, 88vw);
}
.benplus-icon .app-icon {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(145deg, #1fd9ca 0%, #00b8a9 60%, #009990 100%);
  border-radius: 28%; /* iOS-style rounding */
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 32px 80px rgba(0,180,168,.35), 0 8px 20px rgba(0,0,0,.15);
  position: relative;
}
.benplus-icon .app-icon svg { width: 58%; height: 58%; }
.benplus-icon .badge {
  position: absolute; top: -5%; right: -5%;
  width: 22%; aspect-ratio: 1;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: clamp(18px, 2.2vw, 32px); font-weight: 800;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

/* ─────────────── TICKER ─────────────── */
.ticker-bar {
  background: var(--cyan); padding: 18px 40px;
  display: flex; gap: 48px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.ticker-item {
  font-size: 18px; font-weight: 900; color: var(--dark-text);
  white-space: nowrap; display: flex; align-items: center; gap: 2px;
  letter-spacing: -.3px;
}

/* ─────────────── SOBRE (dark + huge text) ─────────────── */
.sobre {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, #0f2844 100%);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.sobre::after {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,100,140,.2) 0%, transparent 65%);
  pointer-events: none;
}
.sobre-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
}
.sobre h2 {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 900; line-height: 1.05; letter-spacing: -2px;
  margin-bottom: 40px;
}
.sobre h2 .cyan { color: var(--cyan); display: block; }
.sobre h2 .cream { color: var(--cream); display: block; }
.sobre-sub {
  font-size: 18px; color: var(--text-dim); line-height: 1.7;
  max-width: 560px;
}

/* ─────────────── NÚMEROS ─────────────── */
.numeros {
  background: var(--navy3);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 72px 0;
}
.numeros-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.numero-val { font-size: 50px; font-weight: 900; color: var(--cyan); line-height: 1; letter-spacing: -1px; }
.numero-label { font-size: 14px; color: var(--text-dim); margin-top: 10px; line-height: 1.4; }

/* ─────────────── PITCH "5 VENDAS" ─────────────── */
.pitch {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, #0f2844 100%);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
.pitch-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.pitch h2 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.05; letter-spacing: -2px;
}
.pitch h2 .white { color: var(--white); display: block; }
.pitch h2 .cyan  { color: var(--cyan);  display: block; }
.pitch-art {
  display: flex; align-items: center; justify-content: center;
}
.pitch-art svg { width: min(340px, 90%); height: auto; opacity: .85; }

/* ─────────────── PRODUTO / PLANOS ─────────────── */
.planos-produto { background: var(--navy2); padding: 96px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-tag {
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
}
.section-title {
  text-align: center; font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  color: var(--white); margin-bottom: 16px; line-height: 1.12; letter-spacing: -.4px;
}
.section-sub {
  text-align: center; font-size: 17px; color: var(--text-dim);
  max-width: 540px; margin: 0 auto 56px; line-height: 1.6;
}
.planos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.plano-card {
  background: var(--navy3); border: 1px solid rgba(255,255,255,.09); border-radius: 20px;
  padding: 36px 32px; transition: all .25s; position: relative; overflow: hidden;
}
.plano-card:hover { border-color: var(--cyan-border); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,229,209,.12); }
.plano-card.destaque { border-color: var(--cyan); background: var(--navy4); }
.plano-card.destaque::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--cyan);
}
.chip-destaque {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: var(--navy); font-size: 10px; font-weight: 800;
  padding: 4px 18px; border-radius: 0 0 10px 10px; white-space: nowrap; letter-spacing: .06em;
}
.plano-nome { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--cyan); margin-bottom: 12px; }
.plano-preco { font-size: 44px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 4px; letter-spacing: -1px; }
.plano-preco small { font-size: 18px; font-weight: 400; color: var(--text-dim); }
.plano-periodo { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.plano-features { list-style: none; }
.plano-feature {
  padding: 11px 0; font-size: 14px; color: var(--text-dim);
  border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: flex-start; gap: 10px;
}
.plano-feature:last-child { border-bottom: none; }
.plano-feature svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }


/* ─────────────── MENTORIA BENEFICIOS ─────────────── */
.mentoria-beneficios {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 8px;
}
.beneficio-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--navy3); border: 1px solid rgba(255,255,255,.09); border-radius: 14px;
  padding: 20px 24px; font-size: 16px; font-weight: 600; color: var(--white);
  transition: all .22s;
}
.beneficio-item:hover { border-color: var(--cyan-border); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,229,209,.1); }
.beneficio-item svg { color: var(--cyan); flex-shrink: 0; }
/* ─────────────── COMO FUNCIONA ─────────────── */
.como-funciona { background: var(--navy); padding: 96px 0; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.step { text-align: center; }
.step-num {
  width: 52px; height: 52px; background: var(--cyan); color: var(--navy);
  font-size: 20px; font-weight: 900; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  box-shadow: 0 0 28px rgba(0,229,209,.32);
}
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.step p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* ─────────────── AGENDA ─────────────── */
.agenda-section { background: var(--navy2); padding: 96px 0; }
.slots-container {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px; margin-bottom: 32px; min-height: 120px;
}
.slot {
  background: var(--navy3); border: 1.5px solid rgba(255,255,255,.09); border-radius: 12px;
  padding: 18px; cursor: pointer; transition: all .2s; text-align: center;
}
.slot:hover { border-color: var(--cyan); background: var(--cyan-glow); }
.slot.selected { border-color: var(--cyan); background: var(--cyan-glow); box-shadow: 0 0 0 3px rgba(0,229,209,.18); }
.slot-dia { font-size: 12px; color: var(--text-dim); margin-bottom: 4px; text-transform: capitalize; }
.slot-hr { font-size: 24px; font-weight: 800; color: var(--white); }
.slot-dur { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.agenda-form {
  background: var(--navy3); border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 36px; max-width: 560px; margin: 0 auto;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: rgba(255,255,255,.82); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--navy2); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 8px; font-size: 15px; font-family: inherit;
  color: var(--white); transition: border-color .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--navy2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--cyan); }

/* ─────────────── COMPRA ─────────────── */
.compra { background: var(--navy); padding: 96px 0; }
.checkout-box {
  background: var(--navy3); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 44px; max-width: 520px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.payment-methods { display: flex; gap: 10px; margin-bottom: 20px; }
.pay-opt {
  flex: 1; padding: 11px; border: 1.5px solid rgba(255,255,255,.1); border-radius: 8px;
  text-align: center; cursor: pointer; font-size: 13px; font-weight: 600;
  color: var(--text-dim); transition: all .2s; background: var(--navy2);
}
.pay-opt.active,
.pay-opt:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-glow); }

/* ─────────────── BUTTONS ─────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 10px; font-size: 15px;
  font-weight: 700; cursor: pointer; border: none; transition: all .2s;
  text-decoration: none; font-family: inherit; letter-spacing: -.1px;
}
.btn-cyan  { background: var(--cyan); color: var(--navy); }
.btn-cyan:hover { background: var(--cyan-dark); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(0,229,209,.32); }
/* alias */
.btn-green { background: var(--cyan); color: var(--navy); }
.btn-green:hover { background: var(--cyan-dark); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--dark-text); border: 2px solid rgba(10,24,40,.2); }
.btn-outline-dark:hover { border-color: var(--dark-text); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,.3); }
.btn-outline-white:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-sm  { padding: 10px 20px; font-size: 14px; }
.btn-lg  { padding: 17px 38px; font-size: 17px; }

/* ─────────────── CTA FINAL ─────────────── */
.cta-final {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  text-align: center; padding: 112px 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cta-final h2 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 900; margin-bottom: 16px; letter-spacing: -1px; }
.cta-final h2 span { color: var(--cyan); }
.cta-final p { font-size: 18px; color: var(--text-dim); margin-bottom: 44px; }

/* ─────────────── FOOTER ─────────────── */
footer {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.07);
  color: var(--text-muted); text-align: center; padding: 36px; font-size: 14px;
}
footer a { color: var(--cyan); text-decoration: none; }

/* ─────────────── MODAL ─────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.72); z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--navy3); border: 1px solid rgba(255,255,255,.09); border-radius: 18px;
  width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  transform: translateY(-20px); transition: transform .2s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header { padding: 24px 28px 20px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; }
.modal-title { font-size: 18px; font-weight: 700; color: var(--white); }
.modal-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-dim); }
.modal-body { padding: 24px 28px; }
.modal-footer { padding: 16px 28px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: flex-end; gap: 12px; }

/* ─────────────── WHATSAPP FLUTUANTE ─────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 150;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 32px rgba(37,211,102,.6); }
@media (max-width: 600px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

/* ─────────────── TOAST ─────────────── */
#toasts { position: fixed; bottom: 96px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast { padding: 14px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--navy); background: var(--cyan); box-shadow: var(--shadow); animation: slideIn .25s ease; max-width: 320px; }
.toast.error { background: #ef4444; color: white; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ─────────────── UTILS ─────────────── */
.text-cyan  { color: var(--cyan); }
.text-green { color: var(--cyan); }
.hidden { display: none !important; }
.error-box { background: rgba(239,68,68,.12); color: #fca5a5; border: 1px solid rgba(239,68,68,.3); border-radius: 8px; padding: 12px 16px; font-size: 14px; margin-top: 12px; }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-icon-wrap { order: -1; }
  .benplus-icon { width: min(260px, 70vw); }
  .pitch-inner { grid-template-columns: 1fr; }
  .pitch-art { display: none; }
  .numeros-grid { grid-template-columns: repeat(2,1fr); }
  .planos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .mentoria-beneficios { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .nav-links { display: none; }
  .nav-mobile { display: block; }
}
@media (max-width: 600px) {
  .hero-content { padding: 60px 24px; }
  .topnav { padding: 0 24px; }
  .ticker-bar { gap: 20px; padding: 16px 24px; flex-wrap: wrap; justify-content: flex-start; }
  .ticker-item { font-size: 16px; }
  .sobre-inner, .pitch-inner, .container { padding: 0 24px; }
  .sobre { padding: 80px 0; }
  .pitch { padding: 80px 0; }
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .mentoria-beneficios { grid-template-columns: 1fr; }
}

