/* ============================================================
   PLUGOU STATION — DESIGN SYSTEM
   Cores: Azul #0164f1 | Escuro #0E1A3A | Branco #FFFFFF
============================================================ */

/* ---- VARIÁVEIS ----------------------------------------- */
:root {
  --blue:          #0164f1;
  --blue-dark:     #0055d6;
  --blue-mid:      #0164f1;
  --blue-deep:     #0047c0;
  --blue-light:    #3b8af5;
  --blue-glow:     rgba(1, 100, 241, 0.35);
  --blue-glow-sm:  rgba(1, 100, 241, 0.18);
  --green-ok:      #00d084;
  --white:         #FFFFFF;
  --text-100:      #FFFFFF;
  --text-200:      #FFFFFF;
  --text-300:      #d4e8ff;
  --text-400:      #a8ccf5;
  --glass:         rgba(255,255,255,0.1);
  --glass-2:       rgba(255,255,255,0.07);
  --glass-border:  rgba(255,255,255,0.15);
  --glass-border-2:rgba(255,255,255,0.35);
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 36px;
  --r-pill:100px;
  --t:     0.28s ease;
  --t-slow:0.5s ease;
  --shadow-blue:    0 8px 40px rgba(1, 100, 241, 0.45);
  --shadow-blue-sm: 0 4px 20px rgba(1, 100, 241, 0.3);
  --shadow-card:    0 4px 24px rgba(0, 0, 0, 0.2);
  --shadow-heavy:   0 16px 64px rgba(0, 0, 0, 0.35);
}

/* ---- RESET --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--blue-dark);
  color: var(--text-200);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ---- LAYOUT -------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; overflow: hidden; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 72px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: #ffffff;
  border-radius: 50%;
  animation: blink 1.6s infinite;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-100);
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-300);
  max-width: 640px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ---- ACCENT TEXT (sem degradê) ------------------------- */
.gradient-text {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

/* ---- BUTTONS ------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  transition: var(--t);
  box-shadow: var(--shadow-blue-sm);
  border: 1.5px solid transparent;
}
.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-200);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--glass-border);
  transition: var(--t);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(1,100,241,0.08);
  transform: translateY(-2px);
}
.btn-large { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- GLASS CARD --------------------------------------- */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  transition: var(--t);
}
.glass-card:hover {
  border-color: var(--glass-border-2);
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   HEADER
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(1,100,241,0.1);
  transition: var(--t);
}
.header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 24px rgba(1,100,241,0.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(1,100,241,0.4);
}
.logo-icon svg { width: 20px; height: 20px; }
.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-100);
  letter-spacing: -0.02em;
}
.logo-name span { color: var(--blue); }
.header__nav {
  display: none;
  align-items: center;
  gap: 6px;
}
.header__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3d5494;
  padding: 8px 14px;
  border-radius: var(--r-md);
  transition: var(--t);
}
.header__nav a:hover { color: #0E1A3A; background: rgba(1,100,241,0.06); }
.btn-header-cta {
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: var(--r-pill) !important;
  box-shadow: var(--shadow-blue-sm);
  margin-left: 8px;
}
.btn-header-cta:hover {
  background: var(--blue-light) !important;
  box-shadow: var(--shadow-blue) !important;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--t);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #3d5494;
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE NAV --------------------------------------- */
.mobile-nav {
  position: fixed;
  top: 68px; right: 0;
  width: 100%;
  max-width: 360px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(1,100,241,0.1);
  border-bottom: 1px solid rgba(1,100,241,0.1);
  border-radius: 0 0 0 var(--r-xl);
  padding: 24px;
  z-index: 999;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-nav__links a {
  font-size: 1rem;
  font-weight: 500;
  color: #3d5494;
  padding: 12px 16px;
  border-radius: var(--r-md);
  transition: var(--t);
}
.mobile-nav__links a:hover { color: #0E1A3A; background: rgba(1,100,241,0.06); }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.nav-overlay.show { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, var(--blue-deep) 0%, var(--blue-dark) 50%, var(--blue-mid) 100%);
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1,100,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,100,241,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__gradient-orb--1 {
  width: 500px; height: 500px;
  background: rgba(1,100,241,0.12);
  top: -150px; right: -100px;
}
.hero__gradient-orb--2 {
  width: 350px; height: 350px;
  background: rgba(1,100,241,0.08);
  bottom: -100px; left: 10%;
  animation-delay: -4s;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: #ffffff;
  border-radius: 50%;
  animation: blink 1.6s infinite;
}
.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-100);
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.2s both;
}
.hero__title-highlight {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--text-300);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 32px;
  animation: fadeUp 0.7s 0.35s both;
}
.hero__benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.5s both;
}
.hero__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-200);
}
.hero__benefits li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(1,100,241,0.15);
  border: 1px solid rgba(1,100,241,0.4);
  border-radius: 50%;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeUp 0.7s 0.65s both;
}

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.9s 0.4s both;
}
.hero__visual-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.visual-bg-glow {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(1,100,241,0.25) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: pulseGlow 3s ease-in-out infinite;
}
.charger-art {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  animation: floatY 4s ease-in-out infinite;
}
.charger-art svg {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(1,100,241,0.4));
  margin: 0 auto;
  display: block;
}
.hero-stat {
  position: absolute;
  background: rgba(14,26,58,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  box-shadow: var(--shadow-card);
  min-width: 180px;
}
.hero-stat--1 {
  top: 10%;
  right: -10%;
  animation: floatY 3.5s 0.5s ease-in-out infinite;
}
.hero-stat--2 {
  bottom: 10%;
  left: -8%;
  animation: floatY 4s 1s ease-in-out infinite;
}
.hero-stat__icon {
  font-size: 1.5rem;
  line-height: 1;
}
.hero-stat__value {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-100);
  letter-spacing: -0.02em;
}
.hero-stat__label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-400);
  font-weight: 500;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
}
.hero-particle.p1 { width:8px; height:8px; top:15%; left:8%; animation: particleFloat 5s ease-in-out infinite; }
.hero-particle.p2 { width:5px; height:5px; top:75%; right:12%; animation: particleFloat 4s 1.5s ease-in-out infinite; }
.hero-particle.p3 { width:10px; height:10px; bottom:25%; left:20%; animation: particleFloat 6s 0.8s ease-in-out infinite; }

/* ============================================================
   QUEM É A PLUGOU
============================================================ */
.about-section {
  background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding: 96px 0;
}
.about-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.about-text .section-title { margin: 12px 0 20px; }
.about-text p { color: var(--text-300); line-height: 1.8; font-size: 1.02rem; }
.about-text p + p { margin-top: 14px; }
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.about-stat {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--t);
}
.about-stat:hover {
  border-color: var(--glass-border-2);
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.about-stat__icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.about-stat__value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat__label {
  font-size: 0.82rem;
  color: var(--text-400);
  font-weight: 500;
}

/* ============================================================
   POR QUE INVESTIR
============================================================ */
.why-section {
  background: var(--blue-dark);
  padding: 96px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 52px;
}
.why-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0;
  transition: var(--t);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--glass-border-2); }
.why-card:hover::before { opacity: 1; }
.why-card__icon {
  width: 52px; height: 52px;
  background: rgba(1,100,241,0.12);
  border: 1px solid rgba(1,100,241,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--t);
}
.why-card:hover .why-card__icon {
  background: rgba(1,100,241,0.25);
  border-color: rgba(1,100,241,0.5);
  box-shadow: 0 0 20px rgba(1,100,241,0.25);
}
.why-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 10px;
}
.why-card__desc { font-size: 0.9rem; color: var(--text-400); line-height: 1.65; }

/* ============================================================
   DIFERENCIAIS
============================================================ */
.differentials-section {
  background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding: 96px 0;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 52px;
}
.diff-card {
  background: var(--glass-2);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--t);
}
.diff-card:hover { background: var(--glass); border-color: var(--glass-border-2); transform: translateX(5px); }
.diff-card__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(1,100,241,0.12);
  border: 1px solid rgba(1,100,241,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--blue);
  transition: var(--t);
}
.diff-card:hover .diff-card__icon { background: rgba(1,100,241,0.22); box-shadow: 0 0 16px rgba(1,100,241,0.2); }
.diff-card__title { font-size: 0.95rem; font-weight: 700; color: var(--text-100); margin-bottom: 4px; }
.diff-card__desc { font-size: 0.85rem; color: var(--text-400); line-height: 1.6; }

/* ============================================================
   O QUE A PLUGOU FAZ — TIMELINE
============================================================ */
.what-section {
  background: var(--blue-dark);
  padding: 96px 0;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
  max-width: none;
}
.timeline::before { display: none; }

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  transition: var(--t);
}
.timeline-item:last-child { padding-bottom: 22px; }
.timeline-item:hover { border-color: var(--glass-border-2); background: rgba(255,255,255,0.14); }

.timeline-dot {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  transition: var(--t);
}
.timeline-item:hover .timeline-dot {
  background: #ffffff;
  color: var(--blue);
  border-color: #ffffff;
}

.timeline-content {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  flex: 1;
}
.timeline-item:hover .timeline-content { background: none; border: none; }
.timeline-content__title { font-size: 0.95rem; font-weight: 700; color: var(--text-100); margin-bottom: 4px; }
.timeline-content__desc { font-size: 0.82rem; color: var(--text-400); line-height: 1.55; }
.timeline-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 6px;
}
.timeline-tag--plugou { background: rgba(255,255,255,0.15); color: #ffffff; border: 1px solid rgba(255,255,255,0.3); }

/* ============================================================
   COMO FUNCIONA
============================================================ */
.how-section {
  background: linear-gradient(180deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
  padding: 96px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.step-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--t);
}
.step-card:hover { border-color: rgba(1,100,241,0.4); box-shadow: var(--shadow-blue-sm); transform: translateY(-4px); }
.step-card__num {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(1,100,241,0.1);
  position: absolute;
  top: 12px; right: 24px;
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}
.step-card__icon {
  width: 56px; height: 56px;
  background: rgba(1,100,241,0.12);
  border: 1px solid rgba(1,100,241,0.25);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--t);
}
.step-card:hover .step-card__icon { background: rgba(1,100,241,0.22); box-shadow: 0 0 20px rgba(1,100,241,0.25); }
.step-card__title { font-size: 1.15rem; font-weight: 800; color: var(--text-100); margin-bottom: 10px; }
.step-card__desc { font-size: 0.9rem; color: var(--text-300); line-height: 1.65; }
.step-arrow { display: none; }

/* ============================================================
   SIMULADOR DE FATURAMENTO
============================================================ */
.revenue-sim-section {
  background: var(--blue-dark);
  padding: 96px 0;
}
.sim-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 56px;
  align-items: start;
}
.sim-info h3 { font-size: 1.4rem; font-weight: 800; color: var(--text-100); margin-bottom: 16px; }
.sim-info p { color: var(--text-300); line-height: 1.7; margin-bottom: 28px; }
.sim-param {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--r-md);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  margin-bottom: 12px;
  transition: var(--t);
}
.sim-param:hover { border-color: var(--glass-border-2); }
.sim-param__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.sim-param strong { font-size: 0.92rem; color: var(--text-100); display: block; margin-bottom: 4px; }
.sim-param p { font-size: 0.82rem; color: var(--text-400); margin: 0; }
.sim-note {
  margin-top: 24px;
  padding: 16px;
  border-radius: var(--r-md);
  background: rgba(1,100,241,0.06);
  border: 1px solid rgba(1,100,241,0.15);
}
.sim-note p { font-size: 0.8rem; color: var(--text-400); margin: 0; }

/* Calculator */
.sim-calc {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  padding: 36px 32px;
}
.calc-group { margin-bottom: 28px; }
.calc-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-200);
  margin-bottom: 12px;
}
.calc-group label strong { color: var(--blue); font-weight: 800; }

.seg-control {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  padding: 4px;
  gap: 2px;
}
.seg-btn {
  flex: 1;
  padding: 8px 4px;
  border-radius: calc(var(--r-pill) - 4px);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-400);
  transition: var(--t);
  text-align: center;
}
.seg-btn.active {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue-sm);
}
.seg-btn:hover:not(.active) { color: var(--text-200); background: var(--glass); }

.ev-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  outline: none;
  cursor: pointer;
  margin-bottom: 8px;
}
.ev-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  border: 3px solid var(--blue);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.2), 0 2px 8px rgba(0,0,0,0.2);
  transition: var(--t);
}
.ev-range::-webkit-slider-thumb:hover { box-shadow: 0 0 0 5px rgba(255,255,255,0.25), 0 2px 12px rgba(0,0,0,0.25); }
.ev-range::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  border: 3px solid var(--blue);
}
.range-extremes {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-400);
}

.calc-results {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-top: 8px;
}
.calc-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
}
.calc-result-item:last-child { border-bottom: none; }
.calc-result-item span:first-child { color: var(--text-300); }
.calc-result-item .calc-result-val { font-weight: 700; color: var(--text-100); }
.calc-result-item--deduction .calc-result-val { color: #ff6b6b; }
.calc-result-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 0;
  margin-top: 4px;
  border-top: 2px solid rgba(1,100,241,0.3);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-200);
}
.calc-result-main {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
  text-shadow: 0 0 20px rgba(1,100,241,0.4);
}

/* ============================================================
   SIMULADOR DE RECARGA
============================================================ */
.charge-sim-section {
  background: linear-gradient(180deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
  padding: 96px 0;
}
.charge-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 56px;
  align-items: start;
}
.charge-inputs {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  padding: 36px 32px;
}
.charge-inputs h3 { font-size: 1.2rem; font-weight: 800; color: var(--text-100); margin-bottom: 6px; }
.charge-inputs > p { font-size: 0.88rem; color: var(--text-400); margin-bottom: 28px; }

.sim-select-group { margin-bottom: 20px; }
.sim-select-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-200);
  margin-bottom: 8px;
}
.sim-select, .sim-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  color: var(--text-200);
  font-size: 0.92rem;
  padding: 11px 16px;
  transition: var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.sim-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394aad8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.sim-select:focus, .sim-input:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(1,100,241,0.15); }
.sim-select:disabled { opacity: 0.45; cursor: not-allowed; }
.sim-select option { background: var(--blue-deep); color: var(--text-200); }

.charge-result {
  background: rgba(1,100,241,0.08);
  border: 1px solid rgba(1,100,241,0.25);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.charge-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.charge-result-item__icon {
  font-size: 1.4rem;
  width: 40px; height: 40px;
  background: rgba(1,100,241,0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.charge-result-item__val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.charge-result-item__label {
  font-size: 0.78rem;
  color: var(--text-400);
}

/* Comparator */
.comparator {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  padding: 36px 32px;
}
.comparator h3 { font-size: 1.2rem; font-weight: 800; color: var(--text-100); margin-bottom: 6px; }
.comparator > p { font-size: 0.88rem; color: var(--text-400); margin-bottom: 28px; }
.comparator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.comparator-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  text-align: center;
  transition: var(--t);
}
.comparator-card.active { border-color: rgba(1,100,241,0.5); background: rgba(1,100,241,0.1); }
.comparator-card__power {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.comparator-card.active .comparator-card__power { color: var(--blue); }
.comparator-card__time {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-100);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.comparator-card.active .comparator-card__time { color: var(--blue); }
.comparator-card__bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.comparator-card__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 3px;
  transition: width 0.6s ease;
  width: 0%;
}
.comparator-card.active .comparator-card__bar-fill { box-shadow: 0 0 8px rgba(1,100,241,0.5); }
.comparator-placeholder {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-400);
  font-size: 0.88rem;
}
.comparator-placeholder .icon { font-size: 2.5rem; margin-bottom: 12px; opacity: 0.5; }

/* ============================================================
   MODELOS DE NEGÓCIO
============================================================ */
.models-section {
  background: var(--blue-dark);
  padding: 96px 0;
}
.models-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
.model-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.model-card--featured {
  border-color: rgba(1,100,241,0.5);
  background: rgba(1,100,241,0.08);
}
.model-card__badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.model-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.model-card--featured:hover { box-shadow: var(--shadow-blue); }
.model-card__num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.model-card__icon {
  width: 60px; height: 60px;
  background: rgba(1,100,241,0.12);
  border: 1px solid rgba(1,100,241,0.2);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: var(--t);
}
.model-card--featured .model-card__icon {
  background: rgba(1,100,241,0.25);
  border-color: rgba(1,100,241,0.5);
  box-shadow: 0 0 20px rgba(1,100,241,0.2);
}
.model-card__title { font-size: 1.3rem; font-weight: 800; color: var(--text-100); margin-bottom: 12px; }
.model-card__desc { font-size: 0.9rem; color: var(--text-400); line-height: 1.65; margin-bottom: 24px; }
.model-card__features { display: flex; flex-direction: column; gap: 10px; }
.model-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-300);
}
.model-card__feature::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(1,100,241,0.15);
  border: 1px solid rgba(1,100,241,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  background: linear-gradient(180deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
  padding: 96px 0;
}
.faq-list {
  max-width: 800px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}
.faq-item.open { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.12); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}
.faq-q__text { font-size: 0.96rem; font-weight: 600; color: var(--text-100); flex: 1; }
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: #ffffff; color: var(--blue); border-color: #ffffff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a__inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-300);
  line-height: 1.75;
}

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final-section {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 50%, var(--blue-deep) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-final-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(1,100,241,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-final__title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; color: var(--text-100); letter-spacing: -0.03em; margin: 16px 0 20px; }
.cta-final__sub { font-size: 1.05rem; color: var(--text-300); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.cta-final__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   FORMULÁRIO
============================================================ */
.form-section {
  background: var(--blue-dark);
  padding: 96px 0;
}
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
.form-left h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--text-100); margin: 12px 0 18px; letter-spacing: -0.02em; }
.form-left p { font-size: 1rem; color: var(--text-300); line-height: 1.7; margin-bottom: 32px; }
.form-perks { display: flex; flex-direction: column; gap: 12px; }
.form-perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text-200);
}
.form-perk__icon {
  width: 36px; height: 36px;
  background: rgba(1,100,241,0.12);
  border: 1px solid rgba(1,100,241,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ev-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  padding: 40px 36px;
}
.ev-form__group { margin-bottom: 20px; }
.ev-form__row { display: grid; grid-template-columns: 1fr; gap: 20px; }
.ev-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-300);
  margin-bottom: 8px;
}
.ev-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  color: var(--text-100);
  font-size: 0.92rem;
  padding: 12px 16px;
  transition: var(--t);
}
.ev-input:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(1,100,241,0.15);
}
.ev-input::placeholder { color: var(--text-400); }
textarea.ev-input { resize: vertical; min-height: 100px; }
.ev-error { display: none; font-size: 0.78rem; color: #ff6b6b; margin-top: 5px; }
.ev-form__group.has-error .ev-input { border-color: #ff6b6b; }
.ev-form__group.has-error .ev-error { display: block; }
.btn-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  padding: 16px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: var(--t);
  box-shadow: var(--shadow-blue-sm);
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--blue-light); box-shadow: var(--shadow-blue); transform: translateY(-2px); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-loader { display: none; }
.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loader { display: inline-block; }
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success .success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; font-weight: 800; color: var(--text-100); margin-bottom: 10px; }
.form-success p { color: var(--text-300); }
.form-privacy { font-size: 0.78rem; color: var(--text-400); text-align: center; margin-top: 12px; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--blue-deep);
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand .logo-name { font-size: 1.15rem; margin-bottom: 14px; }
.footer__brand p { font-size: 0.875rem; color: var(--text-400); line-height: 1.7; max-width: 280px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-400);
  font-size: 1rem;
  transition: var(--t);
}
.footer__social a:hover { background: rgba(1,100,241,0.15); border-color: rgba(1,100,241,0.3); color: var(--blue); }
.footer__col h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-100); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 0.875rem; color: var(--text-400); transition: var(--t); }
.footer__col ul li a:hover { color: var(--blue); }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-400);
  margin-bottom: 10px;
  transition: var(--t);
}
.footer__contact-item i { color: var(--blue); width: 16px; }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer__bottom p { font-size: 0.8rem; color: var(--text-400); }
.footer__bottom a { color: var(--blue); }

/* ============================================================
   FLOATING ELEMENTS
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--t);
  animation: pulseGreen 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); }
.whatsapp-float i { color: white; font-size: 1.5rem; }
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-300);
  font-size: 1rem;
  transition: var(--t);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: rgba(1,100,241,0.2); border-color: rgba(1,100,241,0.4); color: var(--blue); }

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate="fade-up"] { transform: translateY(32px); }
[data-animate="fade-left"] { transform: translateX(-32px); }
[data-animate="fade-right"] { transform: translateX(32px); }
[data-animate="scale"] { transform: scale(0.93); }
[data-animate].animated { opacity: 1; transform: none; }

/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50%      { transform: translate(-50%, -50%) scale(1.15); opacity: 0.3; }
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%      { transform: translateY(-30px) translateX(20px); }
  66%      { transform: translateY(20px) translateX(-10px); }
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50%      { transform: translateY(-20px) scale(1.3); opacity: 0.8; }
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70%      { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.spinner {
  width: 20px; height: 20px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

/* ============================================================
   LOGO IMAGE
============================================================ */
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* ============================================================
   HERO — IMAGEM REAL
============================================================ */
.hero-img-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  display: block;
  filter: drop-shadow(0 0 48px rgba(1,100,241,0.35));
}

/* ============================================================
   SEÇÃO ESTAÇÕES FAMÍLIA
============================================================ */
.stations-section {
  padding: 96px 0;
}
.stations-img-wrap {
  margin-top: 52px;
  text-align: center;
  data-animate: fade-up;
}
.stations-img {
  width: 100%;
  max-width: 960px;
  height: auto;
  border-radius: var(--r-xl);
  box-shadow: 0 20px 80px rgba(1,100,241,0.15);
  display: inline-block;
  margin: 0 auto;
}

/* ============================================================
   SEÇÃO DESTAQUE ESTAÇÃO (split)
============================================================ */
.station-feature-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
}
.station-feature__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.station-feature__img {
  text-align: center;
}
.station-feature__img img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  display: inline-block;
}
.station-feature__content .section-title { margin: 12px 0 20px; }
.station-feature__content > p {
  color: var(--text-300);
  line-height: 1.75;
  margin-bottom: 32px;
  font-size: 1rem;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  transition: var(--t);
  align-items: flex-start;
}
.feature-item:hover { border-color: var(--glass-border-2); background: rgba(255,255,255,0.07); }
.feature-item--highlight {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.18);
}
.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1,100,241,0.12);
  border: 1px solid rgba(1,100,241,0.2);
  border-radius: var(--r-md);
  transition: var(--t);
}
.feature-item:hover .feature-icon { background: rgba(1,100,241,0.22); }
.feature-item strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 0.86rem;
  color: var(--text-400);
  line-height: 1.65;
  margin: 0;
}
.feature-item--highlight strong { color: var(--text-100); font-size: 1rem; }

/* ============================================================
   SIMULADORES — ABA COMBINADA
============================================================ */
.combined-sim-section {
  padding: 96px 0;
  background: var(--blue-dark);
}
.sim-tab-toggle {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 40px auto 56px;
  background: rgba(1,100,241,0.06);
  border: 1px solid rgba(1,100,241,0.15);
  border-radius: var(--r-pill);
  padding: 6px;
  width: fit-content;
}
.sim-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: calc(var(--r-pill) - 4px);
  font-size: 0.92rem;
  font-weight: 700;
  color: #5a7ab8;
  transition: var(--t);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.sim-tab.active {
  background: var(--blue);
  color: #ffffff;
  box-shadow: var(--shadow-blue-sm);
}
.sim-tab:hover:not(.active) { color: var(--blue); background: rgba(1,100,241,0.06); }
.sim-panel { display: none; }
.sim-panel.active { display: block; }

/* ============================================================
   SEÇÕES COM FUNDO BRANCO
============================================================ */
.bg-white-section {
  --text-100:       #0E1A3A;
  --text-200:       #152350;
  --text-300:       #3d5494;
  --text-400:       #5a7ab8;
  --glass:          rgba(255,255,255,0.96);
  --glass-2:        rgba(255,255,255,0.8);
  --glass-border:   rgba(1,100,241,0.12);
  --glass-border-2: rgba(1,100,241,0.3);
  --shadow-card:    0 4px 24px rgba(1,100,241,0.1);
  background: #EEF4FF;
}
.bg-white-section .gradient-text {
  color: var(--blue);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}
.bg-white-section .section-tag {
  color: var(--blue);
  background: rgba(1,100,241,0.08);
  border-color: rgba(1,100,241,0.2);
}
.bg-white-section .section-tag::before { background: var(--blue); }
.bg-white-section .hero__eyebrow,
.bg-white-section .hero__sub { color: var(--text-300); }
.bg-white-section .diff-card:hover { transform: translateX(5px); background: rgba(1,100,241,0.04); }
.bg-white-section .why-card:hover { box-shadow: 0 8px 32px rgba(1,100,241,0.12); }
.bg-white-section .step-card:hover { box-shadow: 0 8px 24px rgba(1,100,241,0.12); }
.bg-white-section .model-card--featured {
  border-color: rgba(1,100,241,0.4);
  background: rgba(1,100,241,0.06);
}
.bg-white-section .model-card--featured:hover { box-shadow: 0 12px 48px rgba(1,100,241,0.2); }
.bg-white-section .faq-item.open { background: rgba(1,100,241,0.04); }
.bg-white-section .ev-form,
.bg-white-section .sim-calc,
.bg-white-section .charge-inputs,
.bg-white-section .comparator {
  box-shadow: 0 4px 32px rgba(1,100,241,0.08);
}
.bg-white-section .ev-input {
  background: rgba(1,100,241,0.04);
  color: var(--text-100);
}
.bg-white-section .ev-input::placeholder { color: var(--text-400); }
.bg-white-section .ev-input:focus { background: #fff; }
.bg-white-section .sim-select option,
.bg-white-section select.ev-input option { background: #fff; color: #0E1A3A; }
.bg-white-section .about-text p { color: var(--text-300); }
.bg-white-section .about-stat { background: #fff; border-color: rgba(1,100,241,0.12); }
.bg-white-section .sim-note { background: rgba(1,100,241,0.04); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (min-width: 640px) {
  .about-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .ev-form__row { grid-template-columns: repeat(2, 1fr); }
  .charge-result { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 640px) {
  .timeline { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .hamburger { display: none; }
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 80px; }
  .hero__title { animation: none; opacity: 1; transform: none; }
  .hero__sub { animation: none; opacity: 1; transform: none; }
  .hero__actions { animation: none; opacity: 1; transform: none; }
  .hero__benefits { animation: none; opacity: 1; transform: none; }
  .about-section__inner { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .diff-grid { grid-template-columns: repeat(4, 1fr); }
  .sim-wrapper { grid-template-columns: 1fr 1.2fr; gap: 56px; }
  .charge-wrapper { grid-template-columns: 1fr 1fr; gap: 40px; }
  .form-wrapper { grid-template-columns: 1fr 1.2fr; gap: 64px; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .timeline { grid-template-columns: repeat(4, 1fr); }
  .station-feature__inner { grid-template-columns: 1fr 1fr; gap: 72px; }
}
@media (max-width: 640px) {
  .sim-tab { padding: 10px 16px; font-size: 0.85rem; }
  .sim-tab-toggle { flex-direction: column; width: calc(100% - 48px); }
  .sim-tab { justify-content: center; }
  .sim-wrapper { overflow-x: hidden; }
  .sim-calc { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn-primary, .hero__actions .btn-ghost { width: 100%; justify-content: center; }
  .comparator-grid { grid-template-columns: 1fr 1fr; }
  .cta-final__actions { flex-direction: column; align-items: center; }
  .seg-control { flex-wrap: wrap; }
  .seg-btn { flex: 1 1 40%; }
}
