/* =============================================
   SPARTA RASTREAMENTOS — STYLE.CSS
   Tecnológico | Premium | Cinematográfico
   ============================================= */

:root {
  --black:     #050508;
  --dark:      #0a0a10;
  --dark2:     #111118;
  --dark3:     #1a1a24;
  --gold:      #d4a843;
  --gold-light:#f0c060;
  --gold-dark: #9a7320;
  --red:       #c0392b;
  --red-light: #e74c3c;
  --green:     #27ae60;
  --green-neon:#00ff88;
  --white:     #ffffff;
  --gray:      #888899;
  --gray-light:#aaaacc;

  --font-display: 'Bebas Neue', sans-serif;
  --font-ui:      'Rajdhani', sans-serif;
  --font-body:    'Exo 2', sans-serif;

  --glow-gold: 0 0 30px rgba(212,168,67,0.35), 0 0 60px rgba(212,168,67,0.15);
  --glow-red:  0 0 30px rgba(192,57,43,0.4),  0 0 60px rgba(192,57,43,0.15);
  --glow-green:0 0 20px rgba(0,255,136,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.65;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }
.red  { color: var(--red-light); }

/* =================== SCROLL REVEAL =================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* =================== LOGO IMAGE =================== */
.logo { display: flex; align-items: center; }
.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter:
    brightness(1.1)
    drop-shadow(0 0 10px rgba(212,168,67,0.5));
  transition: filter 0.3s, transform 0.3s;
}
.logo-img:hover {
  filter: brightness(1.2) drop-shadow(0 0 18px rgba(212,168,67,0.8));
  transform: scale(1.05);
}

/* Hero logo */
.hero-logo {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}
.hero-logo-img {
  height: 240px;
  width: auto;
  object-fit: contain;
  filter:
    brightness(1.1)
    drop-shadow(0 0 24px rgba(212,168,67,0.7))
    drop-shadow(0 0 60px rgba(212,168,67,0.3));
  animation: logo-glow 3s ease-in-out infinite;
}
@keyframes logo-glow {
  0%,100% {
    filter: drop-shadow(0 0 20px rgba(212,168,67,0.5)) drop-shadow(0 0 50px rgba(212,168,67,0.2));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 32px rgba(212,168,67,0.9)) drop-shadow(0 0 80px rgba(212,168,67,0.35));
    transform: scale(1.03);
  }
}

/* Footer logo */
.footer-logo { justify-content: center; margin-bottom: 20px; }
.footer-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  filter:
    brightness(1.1)
    drop-shadow(0 0 12px rgba(212,168,67,0.4));
  transition: opacity 0.3s, filter 0.3s;
}
.footer-logo-img:hover {
  opacity: 1;
  filter: brightness(1.2) drop-shadow(0 0 20px rgba(212,168,67,0.7));
}

/* Responsive logo adjustments */
@media (max-width: 600px) {
  .logo-img      { height: 52px; }
  .hero-logo-img { height: 170px; }
  .footer-logo-img { height: 100px; }
}


.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(5,5,8,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(212,168,67,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 32px;
  max-width: 1300px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 2px;
  white-space: nowrap;
}
.logo-icon { font-size: 1.5rem; }
.logo-accent { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav-wpp {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 9px 18px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s, box-shadow 0.3s;
}
.btn-nav-wpp:hover {
  background: #1e8449;
  transform: translateY(-2px);
  box-shadow: var(--glow-green);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(5,5,8,0.97);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(212,168,67,0.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--gray-light);
}
.mobile-menu a:last-child { border: none; }
.mobile-wpp {
  margin-top: 12px;
  color: #fff !important;
  background: var(--green);
  text-align: center;
  border-radius: 50px;
  padding: 12px !important;
  border: none !important;
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(1.3);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,5,8,0.6) 0%,
    rgba(10,10,16,0.4) 50%,
    rgba(5,5,8,0.75) 100%
  );
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,67,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-shift 20s linear infinite;
}
@keyframes grid-shift {
  0%   { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

.hero-badge {
  position: relative; z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.5);
  color: #ff6b5b;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--red-light);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50%      { opacity:0.5; transform: scale(1.4); }
}

.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.hero-accent { color: var(--red-light); }
.hero-gold { color: var(--gold); text-shadow: var(--glow-gold); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-sub strong { color: var(--white); }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212,168,67,0.3);
}

/* ── HERO IMPACT BLOCK ── */
.hero-impact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.impact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,168,67,0.18);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 12px 18px;
  text-align: left;
  backdrop-filter: blur(6px);
  transition: background 0.3s, border-color 0.3s;
}
.impact-line:hover {
  background: rgba(212,168,67,0.07);
  border-left-color: var(--gold-light);
}
.impact-icon {
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.impact-line p {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.55;
  margin: 0;
}
.impact-line p strong {
  color: var(--white);
  font-weight: 700;
}


  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 15px 32px;
  border-radius: 6px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.3s;
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: #1e8449;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,255,136,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 32px;
  border-radius: 6px;
  border: 2px solid var(--gold);
  transition: all 0.25s;
}
.btn-secondary:hover {
  background: rgba(212,168,67,0.1);
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(var(--gold), transparent);
  animation: scroll-anim 2s infinite;
}
.scroll-indicator span {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}
@keyframes scroll-anim {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0.3); transform-origin: bottom; }
}

/* Animate-in for hero elements */
.animate-in {
  animation: fadeInUp 0.9s ease forwards;
}
.delay-1 { animation-delay: 0.3s; opacity: 0; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =================== ALERT BAR =================== */
.alert-bar {
  background: linear-gradient(135deg, #7f0000, #c0392b, #7f0000);
  border-top: 1px solid rgba(255,100,80,0.3);
  border-bottom: 1px solid rgba(255,100,80,0.3);
  padding: 12px 0;
  overflow: hidden;
}
.alert-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0 24px;
}
.alert-divider { opacity: 0.4; }

/* =================== SECTIONS COMMON =================== */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,168,67,0.35);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--gray-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =================== BENEFÍCIOS =================== */
.beneficios { background: var(--dark); }
.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.beneficios-img {
  position: relative;
}
.img-glow-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.img-glow-wrapper img {
  width: 100%;
  border-radius: 12px;
  filter: brightness(0.85) contrast(1.1) saturate(1.2);
  transition: transform 0.5s ease;
}
.img-glow-wrapper:hover img { transform: scale(1.03); }
.img-neon-border {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(212,168,67,0.3);
  box-shadow: inset 0 0 30px rgba(212,168,67,0.1), 0 0 40px rgba(212,168,67,0.15);
  pointer-events: none;
}
.floating-badge {
  position: absolute;
  background: rgba(5,5,8,0.9);
  border: 1px solid rgba(212,168,67,0.5);
  color: var(--gold);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  animation: float 3s ease-in-out infinite;
}
.fb1 { bottom: 20px; left: 20px; animation-delay: 0s; }
.fb2 { top: 20px; right: 20px; animation-delay: 1.5s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.beneficios-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: var(--dark2);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.benefit-item:hover {
  border-color: rgba(212,168,67,0.35);
  transform: translateX(6px);
  box-shadow: -4px 0 20px rgba(212,168,67,0.1);
}
.benefit-icon {
  font-size: 1.8rem;
  min-width: 48px;
  text-align: center;
  line-height: 1;
  margin-top: 2px;
}
.benefit-item h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.benefit-item p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.5;
}

/* =================== COMPARAÇÃO =================== */
.comparacao { background: var(--black); }
.comparacao-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 48px;
}

.split-side { display: flex; flex-direction: column; }
.split-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.split-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(1.3);
}
.split-overlay {
  position: absolute;
  inset: 0;
}
.green-overlay {
  background: linear-gradient(rgba(39,174,96,0.3), rgba(39,174,96,0.05));
}
.red-overlay {
  background: linear-gradient(rgba(192,57,43,0.4), rgba(192,57,43,0.1));
}

.split-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-align: center;
  padding: 14px;
  border-bottom: 2px solid;
}
.green-label {
  background: rgba(39,174,96,0.1);
  color: var(--green-neon);
  border-color: var(--green);
}
.red-label {
  background: rgba(192,57,43,0.1);
  color: #ff7060;
  border-color: var(--red);
}

.split-list {
  padding: 24px 28px;
  flex: 1;
}
.split-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--white);
}
.split-list li:last-child { border: none; }
.check { color: var(--green-neon); font-size: 1.1rem; }
.x     { color: var(--red-light);  font-size: 1.1rem; }

.protected { background: rgba(39,174,96,0.04); }
.danger    { background: rgba(192,57,43,0.04); }

.split-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  background: var(--dark2);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.vs-circle {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-gold);
  letter-spacing: 1px;
}

.comparacao-cta { text-align: center; }

/* =================== PARALLAX ROAD =================== */
.parallax-road {
  position: relative;
  overflow: hidden;
  padding: 120px 24px;
  text-align: center;
}
.parallax-bg {
  position: absolute;
  inset: -40%;
  z-index: 0;
  will-change: transform;
}
.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(1.5) hue-rotate(10deg);
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--black) 0%, transparent 30%, transparent 70%, var(--black) 100%),
    radial-gradient(ellipse at center, rgba(212,168,67,0.05) 0%, transparent 70%);
}
.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.parallax-icon { font-size: 3.5rem; margin-bottom: 20px; }
.parallax-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.parallax-content p {
  color: var(--gray-light);
  font-size: 1.05rem;
  margin-bottom: 48px;
}
.parallax-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.p-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  text-shadow: var(--glow-gold);
  letter-spacing: 2px;
}
.p-stat label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* =================== COMO FUNCIONA =================== */
.como-funciona { background: var(--dark); }
.funciona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.device-glow {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.device-glow img {
  width: 100%;
  border-radius: 16px;
  filter: brightness(0.8) contrast(1.1);
}
.device-scan {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: scan 3s ease-in-out infinite;
  box-shadow: 0 0 20px var(--gold);
}
@keyframes scan {
  0%   { top: 0%; opacity: 1; }
  90%  { top: 100%; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.step:last-child { border: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(212,168,67,0.15);
  line-height: 1;
  min-width: 64px;
  transition: color 0.3s;
}
.step:hover .step-num { color: rgba(212,168,67,0.6); }
.step-content h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* =================== PLANOS =================== */
.planos { background: var(--black); }
.planos-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.plano-card {
  position: relative;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 36px;
  width: 340px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.plano-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,168,67,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(212,168,67,0.1);
}
.plano-card.featured {
  border-color: rgba(212,168,67,0.5);
  background: linear-gradient(160deg, rgba(212,168,67,0.07) 0%, var(--dark2) 60%);
  box-shadow: 0 10px 50px rgba(0,0,0,0.5), 0 0 50px rgba(212,168,67,0.12);
}
.plano-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.plano-icon { font-size: 3rem; margin-bottom: 8px; }
.plano-tipo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 4px;
  color: var(--gray);
  margin-bottom: 20px;
}
.plano-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.price-currency {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 8px;
  margin-right: 4px;
}
.price-num {
  font-size: 4.5rem;
  color: var(--white);
  letter-spacing: -2px;
}
.price-cents {
  font-size: 1.8rem;
  color: var(--gold);
  align-self: flex-end;
  margin-bottom: 8px;
  margin-left: 2px;
}
.price-per-day {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 28px;
}
.price-per-day strong { color: var(--green-neon); }

.plano-features {
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plano-features li {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-light);
}
.plano-instalacao {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: 6px;
  padding: 8px 14px;
  margin-bottom: 20px;
}

.btn-plano {
  display: block;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s;
}
.btn-plano:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.btn-plano-gold {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border: none;
}
.btn-plano-gold:hover {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: var(--glow-gold);
}

.planos-garantia {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--gray);
  background: var(--dark2);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 28px;
  max-width: 500px;
  margin: 0 auto;
}
.planos-garantia strong { color: var(--white); }

/* =================== SOBRE =================== */
.sobre { background: var(--dark); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.sobre-text p {
  color: var(--gray-light);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.75;
}
.sobre-text p strong { color: var(--white); }
.sobre-impacto {
  margin-top: 32px;
  padding: 22px 26px;
  background: rgba(212,168,67,0.05);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  border: 1px solid rgba(212,168,67,0.2);
  border-left: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.sobre-impacto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,168,67,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.sobre-impacto p {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin: 0 !important;
}
.sobre-impacto p strong {
  color: var(--white);
  font-size: 1.08rem;
}

/* Sobre logo (substitui o escudo) */
.sobre-logo-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sobre-logo-img {
  width: 280px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter:
    brightness(1.1)
    drop-shadow(0 0 24px rgba(212,168,67,0.65))
    drop-shadow(0 0 60px rgba(212,168,67,0.25));
  animation: sobre-logo-float 4s ease-in-out infinite;
}
@keyframes sobre-logo-float {
  0%,100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 24px rgba(212,168,67,0.55)) drop-shadow(0 0 60px rgba(212,168,67,0.2));
  }
  50% {
    transform: translateY(-14px) scale(1.04);
    filter: drop-shadow(0 0 40px rgba(212,168,67,0.9)) drop-shadow(0 0 90px rgba(212,168,67,0.35));
  }
}
.sobre-logo-glow {
  position: absolute;
  inset: 30px;
  background: radial-gradient(circle, rgba(212,168,67,0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.2);
  animation: ring-expand 4s linear infinite;
}
.r1 { inset: 40px;  animation-delay: 0s; }
.r2 { inset: 10px;  animation-delay: 1.3s; }
.r3 { inset: -20px; animation-delay: 2.6s; }
@keyframes ring-expand {
  0%   { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 0;   transform: scale(1.3); }
}

/* =================== CTA FINAL =================== */
.cta-final {
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 120px 24px;
}
.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cta-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,57,43,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,57,43,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-warning { font-size: 4rem; margin-bottom: 24px; animation: warn-pulse 2s infinite; }
@keyframes warn-pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.cta-sub {
  color: var(--gray-light);
  font-size: 1.05rem;
  margin-bottom: 48px;
  line-height: 1.7;
}
.cta-sub strong { color: var(--white); }

.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  padding: 20px 48px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.25s;
  animation: cta-glow 2.5s ease-in-out infinite;
  margin-bottom: 32px;
}
.btn-cta-final:hover {
  background: #1e8449;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0,255,136,0.4);
  animation: none;
}
@keyframes cta-glow {
  0%,100% { box-shadow: 0 0 20px rgba(39,174,96,0.3); }
  50%      { box-shadow: 0 0 40px rgba(39,174,96,0.6), 0 0 80px rgba(39,174,96,0.2); }
}

.cta-phones {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-phones a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-neon);
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.25);
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.25s;
}
.cta-phones a:hover {
  background: rgba(0,255,136,0.12);
  border-color: rgba(0,255,136,0.5);
  transform: translateY(-2px);
}

.cta-region {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 8px;
}

/* =================== FOOTER =================== */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(212,168,67,0.15);
  padding: 40px 24px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.footer p {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 6px;
}
.footer-copy { font-size: 0.75rem !important; opacity: 0.5; }

/* =================== FLOATING WPP =================== */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 62px; height: 62px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.4);
  animation: wpp-bounce 3s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wpp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.7);
  animation: none;
}
@keyframes wpp-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.wpp-tooltip {
  position: absolute;
  right: 72px;
  background: rgba(10,10,16,0.92);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  border: 1px solid rgba(37,211,102,0.3);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.wpp-float:hover .wpp-tooltip { opacity: 1; }

/* =================== RESPONSIVE =================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-nav-wpp { display: none; }
  .hamburger { display: flex; }

  .beneficios-grid,
  .funciona-grid,
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .beneficios-img { order: -1; }

  .comparacao-split {
    grid-template-columns: 1fr;
  }
  .split-divider {
    width: 100%;
    height: 60px;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .vs-circle { transform: none; }

  .parallax-stats { gap: 28px; }

  /* Mostra a logo no mobile centralizada */
  .sobre-visual {
    display: flex;
    justify-content: center;
  }
  .sobre-logo-wrapper {
    width: 240px;
    height: 240px;
  }
  .sobre-logo-img { width: 210px; }

}

@media (max-width: 600px) {
  section { padding: 70px 0; }
  .hero { padding: 100px 20px 70px; }
  .hero-stats { gap: 16px; }
  .stat-divider { height: 30px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
  .plano-card { width: 100%; max-width: 340px; }
  .cta-phones { flex-direction: column; align-items: center; }
  .cta-phones a { width: 100%; max-width: 300px; justify-content: center; }
  .btn-cta-final { width: 100%; max-width: 360px; justify-content: center; font-size: 1rem; padding: 18px 24px; }
  .alert-bar-inner { flex-direction: column; gap: 6px; }
  .alert-divider { display: none; }
  .nav-inner { padding: 12px 16px; }
  .wpp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }

  /* ── Hero impact mobile ── */
  .hero-impact { gap: 10px; }
  .impact-line { padding: 10px 14px; }
  .impact-line p { font-size: 0.85rem; }

  /* ── LOGO MAIOR NO MOBILE ── */
  .logo-img       { height: 56px; }
  .hero-logo-img  { height: 190px; }
  .footer-logo-img { height: 110px; }

  /* ── IMAGENS: fix para aparecer no mobile ── */
  /* Hero */
  .hero-img {
    object-position: center center;
    height: 100%;
    width: 100%;
  }
  /* Benefícios */
  .img-glow-wrapper {
    height: 260px;
    overflow: hidden;
  }
  .img-glow-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* Comparação */
  .split-img-wrap {
    height: 180px;
  }
  .split-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* Como funciona */
  .device-glow {
    max-width: 100%;
    height: 240px;
    overflow: hidden;
  }
  .device-glow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* Parallax road */
  .parallax-bg img {
    height: 100%;
    min-height: 500px;
    object-fit: cover;
  }

  /* Sobre mobile */
  .sobre-logo-wrapper { width: 200px; height: 200px; }
  .sobre-logo-img { width: 180px; }

  /* Parallax mobile */
  .parallax-stats { flex-direction: column; gap: 20px; align-items: center; }
  .p-stat { text-align: center; }

  /* Planos mobile */
  .planos-grid { padding: 0 16px; }

  /* Steps mobile */
  .step { flex-direction: column; gap: 8px; }
  .step-num { font-size: 2rem; }
}