/* =============================================
   FIBERLINK - STYLE.CSS
   Design: Moderno, Tecnológico, Profissional
   ============================================= */

:root {
  --blue-900: #060c18;
  --blue-800: #0b1422;
  --blue-700: #0f1f3d;
  --blue-600: #0c2d6b;
  --blue-500: #1148c8;
  --blue-400: #2563eb;
  --blue-300: #3b82f6;
  --blue-200: #60a5fa;
  --blue-100: #93c5fd;
  --blue-50:  #dbeafe;
  --orange-600: #e65100;
  --orange-500: #f57c00;
  --orange-400: #ff8f00;
  --orange-300: #ffa726;
  --orange-200: #ffcc02;
  --white: #ffffff;
  --gray-100: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --gradient-blue: linear-gradient(135deg, #1148c8 0%, #2563eb 100%);
  --gradient-orange: linear-gradient(135deg, #e65100 0%, #ff9500 100%);
  --gradient-dark: linear-gradient(135deg, #060c18 0%, #0b1422 50%, #0f1f3d 100%);
  --gradient-hero: linear-gradient(135deg, #03070f 0%, #080f1e 40%, #0c1830 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.4);
  --shadow-glow-blue: 0 0 30px rgba(25, 118, 210, 0.3);
  --shadow-glow-orange: 0 0 30px rgba(255, 143, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--blue-900);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HIGHLIGHT */
.highlight {
  background: linear-gradient(90deg, var(--blue-200), var(--orange-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* SECTION TAG */
.section-tag {
  display: inline-block;
  background: rgba(25, 118, 210, 0.15);
  border: 1px solid rgba(25, 118, 210, 0.4);
  color: var(--blue-200);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 520px;
  margin: 0 auto;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-xl { padding: 20px 44px; font-size: 1.15rem; }

.btn-wpp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
}
.btn-wpp:hover {
  transform: translateY(-3px);
}
.btn-wpp:active { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-nav {
  background: linear-gradient(135deg, #1148c8, #2563eb);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.9rem;
}
.btn-nav:hover {
  transform: translateY(-2px);
}

.btn-plano {
  width: 100%;
  background: var(--gradient-blue);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(13,71,161,0.3);
  margin-top: auto;
}
.btn-plano:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(13,71,161,0.5);
}
.btn-plano-destaque {
  background: linear-gradient(135deg, #e65100, #ff8f00);
}

.btn-wpp-mobile {
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: var(--white) !important;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(5, 10, 20, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5, 10, 20, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Logo imagem (header) */
.logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.logo:hover .logo-img {
  transform: scale(1.03);
  opacity: 0.9;
}

/* Logo texto (footer) */
.logo-footer {
  align-items: baseline;
  gap: 2px;
  flex-wrap: wrap;
}
.logo-fiber {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
}
.logo-link {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ff9500;
  letter-spacing: -0.03em;
}
.logo-tag {
  font-size: 0.58rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 6px;
  align-self: flex-end;
  margin-bottom: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links li a:not(.btn) {
  color: var(--gray-300);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}
.nav-links li a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange-300);
  transition: width 0.3s ease;
}
.nav-links li a:not(.btn):hover { color: var(--white); }
.nav-links li a:not(.btn):hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: rgba(10,15,30,0.98);
  border-top: 1px solid rgba(25,118,210,0.15);
}
.mobile-menu a {
  color: var(--gray-300);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #030712 url('Header.png') center center / cover no-repeat;
  padding: 140px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(3,7,18,0.2) 0%, rgba(3,7,18,0.7) 100%);
}

.hero-grid {
  display: none;
}

.hero-glow {
  display: none;
}
.hero-glow-1 {
  display: none;
}
.hero-glow-2 {
  display: none;
}

.hero-particles {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,143,0,0.1);
  border: 1px solid rgba(255,143,0,0.3);
  color: var(--orange-300);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--orange-300);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* =============================================
   HERO TITLE — ANIMAÇÃO WORD BY WORD
   ============================================= */
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-title-line {
  display: block;
  overflow: visible;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateX(-48px);
  animation: word-slide-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity;
}

@keyframes word-slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-300);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--orange-300); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat strong {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.12);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* =============================================
   BENEFÍCIOS
   ============================================= */
.beneficios {
  padding: 100px 0;
  background: var(--blue-800);
  position: relative;
}
.beneficios::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.beneficio-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.beneficio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.beneficio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.beneficio-card:hover::before { transform: scaleX(1); }

.beneficio-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.beneficio-icon svg { width: 26px; height: 26px; }
.icon-blue {
  background: rgba(13,71,161,0.2);
  border: 1px solid rgba(25,118,210,0.3);
  color: var(--blue-200);
}
.icon-orange {
  background: rgba(230,81,0,0.15);
  border: 1px solid rgba(255,143,0,0.3);
  color: var(--orange-300);
}

.beneficio-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.beneficio-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* =============================================
   PLANOS — REDESIGN PREMIUM
   ============================================= */
.planos {
  padding: 100px 0;
  background: var(--blue-900);
  position: relative;
  overflow: hidden;
}
.planos-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.planos-glow {
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(13,71,161,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
  position: relative;
}

/* ── Card base ── */
.plano-card {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  will-change: transform;
}
.plano-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(140deg, rgba(25,118,210,0.3) 0%, transparent 50%, rgba(255,143,0,0.08) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.plano-card:hover::before { opacity: 1; }
.plano-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(25,118,210,0.15);
}

/* Inner container */
.plano-card-inner {
  background: linear-gradient(160deg, #0d1830 0%, #080f1c 100%);
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.plano-card-inner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(25,118,210,0.6), transparent);
}

/* Glow blob behind each card */
.plano-card-glow {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  bottom: -40px; right: -40px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.plano-card:hover .plano-card-glow { opacity: 1; }
.plano-glow-blue   { background: radial-gradient(circle, rgba(25,118,210,0.5) 0%, transparent 70%); }
.plano-glow-cyan   { background: radial-gradient(circle, rgba(0,188,212,0.4) 0%, transparent 70%); }
.plano-glow-orange { background: radial-gradient(circle, rgba(255,143,0,0.5) 0%, transparent 70%); }
.plano-glow-purple { background: radial-gradient(circle, rgba(156,39,176,0.4) 0%, transparent 70%); }

/* ── Destaque card ── */
.plano-destaque {
  padding: 3px;
  background: linear-gradient(140deg, #ff8f00, #e65100);
  border: none;
  transform: scale(1.03);
}
.plano-destaque:hover {
  transform: translateY(-14px) scale(1.05);
}
.plano-destaque .plano-card-inner {
  background: linear-gradient(160deg, #111e38 0%, #0a1020 100%);
}
.plano-destaque .plano-card-inner::after {
  background: linear-gradient(90deg, transparent, rgba(255,143,0,0.8), transparent);
}

.plano-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff8f00, #e65100);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(255,143,0,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Plano top (icon + title) ── */
.plano-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.plano-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.plano-icon-wrap svg { width: 22px; height: 22px; }
.plano-icon-blue   { background: rgba(25,118,210,0.15); border: 1px solid rgba(25,118,210,0.35); color: #42a5f5; }
.plano-icon-cyan   { background: rgba(0,188,212,0.12);  border: 1px solid rgba(0,188,212,0.3);   color: #00bcd4; }
.plano-icon-orange { background: rgba(255,143,0,0.15);  border: 1px solid rgba(255,143,0,0.35);  color: #ffa726; }
.plano-icon-purple { background: rgba(156,39,176,0.15); border: 1px solid rgba(156,39,176,0.35); color: #ce93d8; }

.plano-speed {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.plano-speed span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-left: 3px;
}
.plano-tag-line {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
}
.plano-tag-orange { color: var(--orange-300); }
.plano-tag-purple { color: #ce93d8; }

/* ── Divider ── */
.plano-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 0 18px;
}
.plano-divider-orange { background: rgba(255,143,0,0.15); }
.plano-divider-purple { background: rgba(156,39,176,0.15); }

/* ── Price block ── */
.plano-price-block {
  margin-bottom: 18px;
  text-align: center;
  padding: 16px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.price-promo-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-300);
  margin-bottom: 8px;
}
.price-promo-orange { color: var(--orange-300); }
.price-promo-purple { color: #ce93d8; }

.price-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  line-height: 1;
}
.price-currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-400);
  margin-top: 5px;
}
.price-integer {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
}
.price-cents {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-300);
  align-self: flex-end;
  margin-bottom: 5px;
}
.price-slash {
  font-size: 0.72rem;
  color: var(--gray-500);
  align-self: flex-end;
  margin-bottom: 7px;
  margin-left: 2px;
}
.price-regular {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: 6px;
}

/* ── Features ── */
.plano-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  flex: 1;
}
.plano-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--gray-300);
  line-height: 1.4;
}
.feat-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}
.feat-check-blue   { background: rgba(25,118,210,0.18); color: #42a5f5; border: 1px solid rgba(25,118,210,0.3); }
.feat-check-cyan   { background: rgba(0,188,212,0.15);  color: #00bcd4; border: 1px solid rgba(0,188,212,0.3); }
.feat-check-orange { background: rgba(255,143,0,0.15);  color: #ffa726; border: 1px solid rgba(255,143,0,0.3); }
.feat-check-purple { background: rgba(156,39,176,0.15); color: #ce93d8; border: 1px solid rgba(156,39,176,0.3); }

/* ── Plano buttons ── */
.btn-plano {
  width: 100%;
  background: linear-gradient(135deg, #1148c8, #2563eb);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(37, 99, 235, 0.4);
  gap: 8px;
  margin-top: auto;
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}
.btn-plano:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.7);
}
.btn-plano-cyan {
  background: linear-gradient(135deg, #0097a7, #00838f);
  border-color: rgba(0,188,212,0.4);
}
.btn-plano-cyan:hover {
  border-color: rgba(0,188,212,0.7);
}
.btn-plano-destaque {
  background: linear-gradient(135deg, #e65100, #ff8f00);
  border-color: rgba(255,143,0,0.5);
}
.btn-plano-destaque:hover {
  border-color: rgba(255,143,0,0.8);
}
.btn-plano-purple {
  background: linear-gradient(135deg, #7b1fa2, #9c27b0);
  border-color: rgba(156,39,176,0.4);
}
.btn-plano-purple:hover {
  border-color: rgba(156,39,176,0.7);
}

/* =============================================
   PROMOÇÃO
   ============================================= */
.promocao {
  padding: 64px 0;
  background: var(--blue-800);
  position: relative;
}
.promocao::before, .promocao::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}
.promocao::before { top: 0; }
.promocao::after  { bottom: 0; }

.promocao-card {
  background: linear-gradient(135deg, rgba(230,81,0,0.1), rgba(255,143,0,0.07));
  border: 1px solid rgba(255,143,0,0.25);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.promocao-icon {
  width: 64px; height: 64px;
  background: rgba(255,143,0,0.15);
  border: 1px solid rgba(255,143,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange-300);
}
.promocao-icon svg { width: 32px; height: 32px; }
.promocao-content { flex: 1; min-width: 260px; }
.promocao-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.promocao-content p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
}
.promocao-content strong { color: var(--orange-300); }

/* =============================================
   ENTRETENIMENTO
   ============================================= */
.entretenimento {
  padding: 100px 0;
  background: var(--blue-900);
}

.entretenimento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.entretenimento-text .section-tag { margin-bottom: 12px; }

.entretenimento-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.entretenimento-text > p {
  color: var(--gray-400);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.entretenimento-lista {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.entretenimento-lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-300);
}
.entretenimento-lista li svg {
  width: 20px; height: 20px;
  color: var(--blue-300);
  flex-shrink: 0;
}

.entretenimento-obs {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

/* TV MOCKUP */
.entretenimento-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.tv-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tv-screen {
  width: 300px;
  background: var(--blue-800);
  border: 3px solid rgba(25,118,210,0.4);
  border-radius: 16px;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 40px rgba(13,71,161,0.3);
}
.tv-content {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #050d1a, #0d1f3c);
}
.tv-bars {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 28px;
}
.tv-bar {
  width: 5px;
  background: var(--blue-300);
  border-radius: 3px;
  animation: bar-dance 1.2s ease-in-out infinite;
}
.tv-bar:nth-child(1) { height: 60%; animation-delay: 0s; }
.tv-bar:nth-child(2) { height: 100%; animation-delay: 0.2s; }
.tv-bar:nth-child(3) { height: 40%; animation-delay: 0.4s; }
@keyframes bar-dance {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

.tv-play {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange-600), var(--orange-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,143,0,0.4);
}
.tv-play svg { width: 18px; height: 18px; fill: white; margin-left: 3px; }

.tv-label {
  font-size: 0.65rem;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.tv-stand {
  width: 60px; height: 20px;
  background: rgba(25,118,210,0.2);
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(25,118,210,0.2);
  border-top: none;
}

.device-phone, .device-box {
  position: absolute;
  background: rgba(13,21,38,0.9);
  border: 1px solid rgba(25,118,210,0.3);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}
.device-phone {
  bottom: 0; left: -30px;
  animation: float-device 3s ease-in-out infinite;
}
.device-box {
  top: 20px; right: -30px;
  animation: float-device 3s ease-in-out infinite 1.5s;
}
@keyframes float-device {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-screen, .box-screen {
  width: 100%;
}
.phone-content, .box-content {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-300);
  font-weight: 600;
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--blue-800);
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(13,71,161,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}
.cta-content p {
  color: var(--gray-400);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-phones {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 0.95rem;
  font-weight: 500;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #060c18;
  border-top: 1px solid rgba(25,118,210,0.15);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.65;
}

.footer-links h4, .footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links ul li a {
  color: var(--gray-500);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--white); }

.footer-wpp {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #25D366;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s;
  margin-bottom: 12px;
}
.footer-wpp:hover { opacity: 0.8; }

.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-200);
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.footer-phone:hover { opacity: 0.8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-600);
}
.footer-obs {
  text-align: right;
}

/* =============================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================= */
.wpp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #25D366, #1DA851);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.wpp-float:hover {
  transform: scale(1.1);
}
.wpp-float:hover .wpp-float-tooltip { opacity: 1; transform: translateX(0); }


.wpp-float-tooltip {
  position: absolute;
  right: 72px;
  background: rgba(10,15,30,0.95);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.1);
}
.wpp-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: rgba(10,15,30,0.95);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Particle */
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(25, 118, 210, 0.6);
  border-radius: 50%;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0%   { transform: translateY(0) translateX(0); opacity: 0.8; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .planos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plano-destaque {
    transform: none;
  }
  .plano-destaque:hover {
    transform: translateY(-12px) scale(1.02);
  }
}

@media (max-width: 900px) {
  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .entretenimento-grid {
    grid-template-columns: 1fr;
  }
  .entretenimento-visual {
    min-height: 240px;
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* =============================================
   RESPONSIVE — MOBILE/TABLET
   ============================================= */

/* Tablet */
@media (max-width: 900px) {
  .hero {
    background-position: 40% center;
    padding: 100px 0 60px;
  }
  .hero-bg {
    background: linear-gradient(to bottom, rgba(3,7,18,0.3) 0%, rgba(3,7,18,0.75) 100%);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero {
    background-position: 60% center;
    background-size: cover;
    background-attachment: scroll;
    min-height: 100vh;
    padding: 100px 0 50px;
  }
  .hero-bg {
    background: linear-gradient(to bottom, rgba(3,7,18,0.7) 0%, rgba(3,7,18,0.92) 100%);
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.15;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .planos-grid {
    grid-template-columns: 1fr;
  }
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats {
    gap: 20px;
  }
  .promocao-card {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-obs { text-align: center; }
  .device-phone, .device-box { display: none; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 400px) {
  .hero {
    background-position: 65% center;
    background-size: cover;
    padding: 90px 0 40px;
    background-attachment: scroll;
    min-height: 100vh;
  }
  .hero-bg {
    background: linear-gradient(to bottom, rgba(3,7,18,0.75) 0%, rgba(3,7,18,0.94) 100%);
  }
  .hero-title { 
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .container { padding: 0 16px; }
}
