/* =============================================
   PLUS RN ENERGIA SOLAR — LANDING PAGE CSS
   Cores: #0aee56 (verde neon) | #011a77 (azul escuro) | #ffffff
============================================= */

/* =========== RESET & BASE =========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #0aee56;
  --green-dark: #08c847;
  --green-glow: rgba(10, 238, 86, 0.35);
  --blue: #011a77;
  --blue-mid: #02257a;
  --blue-light: #0a2d9e;
  --dark: #000814;
  --dark2: #010d2a;
  --white: #ffffff;
  --gray: #8899aa;
  --gray-light: #c8d4e0;
  --neon-shadow: 0 0 8px #0aee56, 0 0 20px #0aee56, 0 0 40px rgba(10,238,86,0.4);
  --neon-shadow-sm: 0 0 5px #0aee56, 0 0 12px rgba(10,238,86,0.5);
  --font-main: 'Inter', sans-serif;
  --font-title: 'Rajdhani', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
input, select, textarea, button { font-family: inherit; }

/* =========== SCROLLBAR =========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* =========== UTILITY =========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.neon-text {
  color: var(--green);
  text-shadow: var(--neon-shadow);
}
.section { padding: 90px 0; position: relative; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: rgba(10,238,86,0.12);
  border: 1px solid rgba(10,238,86,0.4);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: var(--white); }
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-large { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-neon {
  background: var(--green);
  color: var(--dark);
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(10,238,86,0.4), 0 4px 20px rgba(10,238,86,0.2);
}
.btn-neon:hover {
  background: #0dff60;
  box-shadow: var(--neon-shadow), 0 8px 30px rgba(10,238,86,0.35);
  transform: translateY(-2px) scale(1.02);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: var(--neon-shadow-sm);
  transform: translateY(-2px);
}

/* =========== REVEAL ANIMATION =========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========== FLOATING WHATSAPP =========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 20px 12px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37,211,102,0.5);
  animation: waPulse 2.5s infinite;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}
.whatsapp-float svg { width: 36px; height: 36px; flex-shrink: 0; }

@keyframes waPulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0); }
}

/* =========== NAVBAR =========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(1, 8, 30, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 1px 0 rgba(10,238,86,0.15);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-svg { width: 50px; height: 50px; filter: drop-shadow(0 0 6px rgba(10,238,86,0.6)); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}
.logo-rn { color: var(--green); text-shadow: var(--neon-shadow-sm); }
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  box-shadow: var(--neon-shadow-sm);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { font-size: 0.85rem !important; padding: 10px 22px !important; flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =========== HERO =========== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #000814 0%, #010d2a 40%, #011a77 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,238,86,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,238,86,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(1,26,119,0.6) 0%, transparent 70%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,238,86,0.1);
  border: 1px solid rgba(10,238,86,0.35);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 1px;
  animation: fadeInDown 0.8s ease forwards;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.pulse { animation: pulseDot 2s ease-in-out infinite; }
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(10,238,86,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(10,238,86,0); }
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.1s forwards;
  opacity: 0;
}
.hero-title .neon-text { font-size: clamp(3rem, 8vw, 6rem); display: block; }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  line-height: 1.7;
  animation: fadeInUp 0.9s ease 0.2s forwards;
  opacity: 0;
}

.hero-savings {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.3s forwards;
  opacity: 0;
}
.savings-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.savings-counter {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  text-shadow: var(--neon-shadow-sm);
  letter-spacing: 1px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.4s forwards;
  opacity: 0;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.5s forwards;
  opacity: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.hero-visual {
  position: relative;
  z-index: 2;
  flex: 0 0 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease 0.3s forwards;
  opacity: 0;
}

.solar-illustration {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.solar-svg { width: 100%; filter: drop-shadow(0 0 12px rgba(10,238,86,0.25)); }

.solar-glow-ring {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(10,238,86,0.25) 0%, transparent 70%);
  filter: blur(8px);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

/* Sun animation */
.sun-anim { animation: sunGlow 3s ease-in-out infinite; }
@keyframes sunGlow {
  0%,100% { filter: drop-shadow(0 0 8px #0aee56); }
  50% { filter: drop-shadow(0 0 20px #0aee56) drop-shadow(0 0 40px rgba(10,238,86,0.5)); }
}

/* Beam animation */
.beam-anim { animation: beamFlow 2s linear infinite; }
@keyframes beamFlow { 0% { stroke-dashoffset: 100; } 100% { stroke-dashoffset: 0; } }

/* Bolt animation */
.bolt-anim { animation: boltFlash 2s ease-in-out infinite; }
@keyframes boltFlash {
  0%,100% { opacity: 1; filter: drop-shadow(0 0 6px #0aee56); }
  50% { opacity: 0.6; filter: drop-shadow(0 0 16px #0aee56); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  z-index: 2;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* Keyframe animations for hero elements */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* =========== STATS STRIP =========== */
.stats-strip {
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 50%, var(--blue) 100%);
  border-top: 1px solid rgba(10,238,86,0.2);
  border-bottom: 1px solid rgba(10,238,86,0.2);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(10,238,86,0.05) 50%, transparent 100%);
}
.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green);
  text-shadow: var(--neon-shadow-sm);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--green);
  font-weight: 700;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(10,238,86,0.2);
}

/* =========== BENEFÍCIOS =========== */
.beneficios { background: var(--dark2); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.benefit-card {
  background: linear-gradient(135deg, rgba(1,26,119,0.4) 0%, rgba(0,8,20,0.6) 100%);
  border: 1px solid rgba(10,238,86,0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(4px);
}
.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,238,86,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10,238,86,0.5);
  box-shadow: 0 8px 40px rgba(10,238,86,0.12), 0 0 0 1px rgba(10,238,86,0.15);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-card:hover .card-glow { opacity: 1; }

.card-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 8px rgba(10,238,86,0.5));
  transition: filter var(--transition);
}
.benefit-card:hover .card-icon-wrap { filter: drop-shadow(0 0 14px rgba(10,238,86,0.8)); }
.card-icon-wrap svg { width: 100%; height: 100%; }

.card-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.card-text { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.card-glow {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 60px;
  background: radial-gradient(ellipse, rgba(10,238,86,0.2) 0%, transparent 70%);
  filter: blur(12px);
  opacity: 0;
  transition: opacity var(--transition);
}

/* =========== COMO FUNCIONA =========== */
.como-funciona { background: var(--dark); }
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(10,238,86,0.4) 20%, rgba(10,238,86,0.4) 80%, transparent 100%);
  z-index: 0;
}

.timeline-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-number {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(10,238,86,0.3);
  line-height: 1;
  margin-bottom: 8px;
  transition: all var(--transition);
}
.timeline-step:hover .step-number {
  -webkit-text-stroke-color: var(--green);
  text-shadow: var(--neon-shadow);
  -webkit-text-fill-color: transparent;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: rgba(10,238,86,0.08);
  border: 2px solid rgba(10,238,86,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--transition);
  box-shadow: 0 0 0 0 rgba(10,238,86,0.3);
}
.step-icon svg { width: 28px; height: 28px; }
.timeline-step:hover .step-icon {
  border-color: var(--green);
  background: rgba(10,238,86,0.15);
  box-shadow: var(--neon-shadow-sm), 0 0 0 8px rgba(10,238,86,0.08);
}
.timeline-step h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.timeline-step p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* =========== SIMULADOR =========== */
.simulador {
  background: linear-gradient(135deg, var(--blue) 0%, var(--dark2) 100%);
  position: relative;
}
.simulador::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(10,238,86,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(1,26,119,0.3) 0%, transparent 50%);
  pointer-events: none;
}

.simulator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(10,238,86,0.15);
  border-radius: 20px;
  padding: 52px;
  position: relative;
  backdrop-filter: blur(8px);
}
.simulator-wrapper::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 10px var(--green);
}

.sim-input-group { margin-bottom: 16px; }
.sim-input-group label { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 10px; font-weight: 500; }
.sim-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(10,238,86,0.25);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.sim-input-wrap:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(10,238,86,0.1); }
.sim-prefix {
  padding: 14px 14px;
  background: rgba(10,238,86,0.1);
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  border-right: 1px solid rgba(10,238,86,0.2);
}
.sim-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 1.1rem;
  padding: 14px 16px;
  font-weight: 600;
}
.sim-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }

.sim-slider-wrap { margin-bottom: 30px; }
.sim-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  margin-bottom: 8px;
  accent-color: var(--green);
}
.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(10,238,86,0.6);
  transition: transform var(--transition);
}
.sim-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.slider-labels { display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.4); }

.sim-cta { width: 100%; justify-content: center; }

/* Savings display */
.savings-display { display: flex; flex-direction: column; gap: 18px; }
.savings-card {
  background: rgba(1,26,119,0.3);
  border: 1px solid rgba(10,238,86,0.15);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  transition: all var(--transition);
}
.savings-card:hover { border-color: rgba(10,238,86,0.4); background: rgba(1,26,119,0.5); }
.sc-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.sc-value {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  text-shadow: var(--neon-shadow-sm);
  display: block;
  margin-bottom: 10px;
}
.sc-value.annual-value { font-size: 2.3rem; }
.sc-value.total-value { font-size: 2rem; color: #ffd700; text-shadow: 0 0 10px rgba(255,215,0,0.4); }

.sc-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.sc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #00ff88);
  border-radius: 4px;
  width: 0%;
  transition: width 0.6s ease;
  box-shadow: 0 0 8px rgba(10,238,86,0.5);
}

.savings-card.total { background: rgba(255,215,0,0.06); border-color: rgba(255,215,0,0.2); }

.sim-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  padding-top: 4px;
}

/* =========== DEPOIMENTOS =========== */
.depoimentos { background: var(--dark2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 24px;
  font-size: 8rem;
  color: rgba(10,238,86,0.06);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(10,238,86,0.3);
  box-shadow: 0 8px 32px rgba(10,238,86,0.08), 0 0 0 1px rgba(10,238,86,0.1);
  transform: translateY(-4px);
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.tc-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(10,238,86,0.3);
  box-shadow: 0 0 10px rgba(10,238,86,0.15);
}
.tc-avatar svg { width: 100%; height: 100%; }
.tc-info { flex: 1; }
.tc-info strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--white); }
.tc-info span { font-size: 0.78rem; color: var(--gray); }
.tc-stars { font-size: 0.85rem; margin-left: auto; }

.testimonial-card p { font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 16px; font-style: italic; }

.tc-tag {
  display: inline-block;
  background: rgba(10,238,86,0.1);
  border: 1px solid rgba(10,238,86,0.25);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* =========== CAPTURA DE LEADS =========== */
.captura {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--blue) 100%);
  position: relative;
}
.captura::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 0% 50%, rgba(10,238,86,0.08) 0%, transparent 40%),
    radial-gradient(circle at 100% 50%, rgba(1,26,119,0.4) 0%, transparent 40%);
  pointer-events: none;
}
.captura-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230aee56' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.captura-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}

.captura-title {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.15;
}
.captura-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.captura-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.cb-icon { font-size: 1.2rem; }

/* Lead Form */
.lead-form {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(10,238,86,0.2);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}
.lead-form::before {
  content: '';
  position: absolute;
  top: -1px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 8px var(--green);
}

.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 7px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 13px 16px;
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10,238,86,0.12);
}
.form-group select option { background: #011a77; color: var(--white); }

.btn-submit { width: 100%; justify-content: center; font-size: 1.05rem !important; margin-top: 6px; }
.form-privacy {
  text-align: center;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
}

/* =========== CONTATO =========== */
.contato { background: var(--dark); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contato-cards { display: flex; flex-direction: column; gap: 16px; }

.contato-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(1,26,119,0.25);
  border: 1px solid rgba(10,238,86,0.1);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: all var(--transition);
  cursor: pointer;
}
.contato-card.no-link { cursor: default; }
.contato-card:not(.no-link):hover {
  border-color: rgba(10,238,86,0.4);
  background: rgba(1,26,119,0.5);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(10,238,86,0.08);
}

.cc-icon { width: 44px; height: 44px; flex-shrink: 0; }
.cc-icon svg { width: 100%; height: 100%; }
.cc-content { flex: 1; }
.cc-content h4 { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 1px; }
.cc-content span { font-size: 0.97rem; font-weight: 600; color: var(--white); display: block; }
.cc-content small { font-size: 0.77rem; color: rgba(255,255,255,0.4); }
.cc-arrow { color: var(--green); font-size: 1.2rem; opacity: 0; transition: opacity var(--transition); }
.contato-card:not(.no-link):hover .cc-arrow { opacity: 1; }

/* Horário */
.horario-card {
  background: rgba(1,26,119,0.3);
  border: 1px solid rgba(10,238,86,0.15);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 20px;
}
.horario-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.horario-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
}
.horario-item:last-of-type { border-bottom: none; }
.horario-item span:first-child { color: rgba(255,255,255,0.7); }
.horario-time { color: var(--green); font-weight: 600; }
.horario-item.closed .horario-time { color: var(--gray); }

.whatsapp-24 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.map-placeholder { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(10,238,86,0.15); position: relative; }
.map-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,8,20,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(10,238,86,0.3);
  border-radius: 50px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 600;
}

/* =========== FOOTER =========== */
.footer { background: #000510; }
.footer-top { padding: 60px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand-text { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin: 18px 0; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.social-btn:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: var(--neon-shadow-sm);
  background: rgba(10,238,86,0.05);
}
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-links ul,
.footer-services ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a,
.footer-services a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-services a:hover { color: var(--green); }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.footer-cta { margin-top: 16px; font-size: 0.82rem !important; }

.footer-bottom {
  padding: 22px 0;
  text-align: center;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: var(--green); }

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding: 110px 20px 70px; }
  .hero-visual { flex: none; width: 100%; max-width: 360px; order: -1; }
  .hero-savings { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .simulator-wrapper { grid-template-columns: 1fr; gap: 36px; padding: 36px; }
  .captura-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .timeline { gap: 20px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: rgba(1,8,30,0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(10,238,86,0.15);
    z-index: 999;
    animation: slideDown 0.3s ease;
  }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-title .neon-text { font-size: clamp(2.8rem, 14vw, 4rem); }

  .stats-strip { padding: 30px 16px; }
  .stats-container { gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 calc(50% - 16px); }

  .section { padding: 60px 0; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; gap: 6px; }

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 12px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .simulator-wrapper { padding: 24px 20px; }
  .lead-form { padding: 24px 20px; }
}

/* =========================================
   MODAIS WHATSAPP (CAPTAÇÃO + EXISTENTE)
========================================= */

.wa-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 8, 20, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.wa-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wa-modal-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(145deg, #010d2a, #011a77 180%);
  border: 1px solid rgba(10, 238, 86, 0.25);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  box-shadow: 0 0 40px rgba(10, 238, 86, 0.12), 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

.wa-modal-overlay.active .wa-modal-box {
  transform: translateY(0) scale(1);
}

.wa-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--gray);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.wa-modal-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.wa-modal-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.wa-modal-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.wa-modal-subtitle {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.wa-modal-subtitle strong {
  color: var(--green);
}

.wa-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.wa-modal-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wa-modal-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wa-modal-form input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(10, 238, 86, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.wa-modal-form input::placeholder { color: rgba(200, 212, 224, 0.4); }

.wa-modal-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(10, 238, 86, 0.15);
}

.wa-modal-error {
  color: #ff6666;
  font-size: 0.82rem;
  font-weight: 600;
  min-height: 1em;
  text-align: center;
}

.wa-modal-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.wa-existing-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.wa-existing-btns .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 480px) {
  .wa-modal-box { padding: 32px 20px 28px; }
  .wa-modal-title { font-size: 1.25rem; }
}
