/*
  Celere Telecom — Premium Dark Theme
  Grafite | Azul Petróleo | Cinza Chumbo
  Inspirado em Apple · Starlink · Tesla
*/

/* ══════════════════════════════════════════
   1. TOKENS DE DESIGN
══════════════════════════════════════════ */
:root {
  /* Paleta base — fallback antes da extração da logo */
  --primary:      #e06a1e;       /* laranja da logo (acento principal) */
  --primary-rgb:  224, 106, 30;
  --accent:       #f08c42;       /* laranja mais suave para glows */
  --accent-rgb:   240, 140, 66;

  /* Azul petróleo premium */
  --blue:         #1a4a6b;
  --blue-light:   #2563a8;
  --blue-glow:    rgba(37, 99, 168, 0.25);

  /* Fundos — escuros sofisticados, NUNCA preto puro */
  --bg:           #111720;       /* grafite escuro principal */
  --bg-2:         #161d2b;       /* seções alternadas */
  --bg-3:         #0f131c;       /* footer mais profundo */
  --bg-card:      rgba(26, 33, 50, 0.7);
  --bg-card-h:    rgba(30, 38, 58, 0.9);

  /* Textos */
  --text:         #e8edf5;
  --text-muted:   #7e8fa8;
  --text-strong:  #f4f6fb;

  /* Bordas */
  --border:       rgba(255,255,255,0.07);
  --border-h:     rgba(255,255,255,0.14);

  /* Sombras */
  --shadow:       0 12px 40px rgba(0,0,0,0.35);
  --shadow-glow:  0 0 28px rgba(var(--primary-rgb), 0.35);

  /* Misc */
  --radius:       16px;
  --radius-sm:    10px;
  --transition:   all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-h:       'Space Grotesk', sans-serif;
  --font-b:       'Inter', sans-serif;
}

/* ══════════════════════════════════════════
   2. RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-b);
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.loaded { overflow-y: auto; }

ul { list-style: none; }
a  { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════
   3. TIPOGRAFIA UTILITÁRIA
══════════════════════════════════════════ */
.text-grad {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.section-tag {
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 14px;
  background: rgba(var(--primary-rgb), .1);
  border: 1px solid rgba(var(--primary-rgb), .2);
  border-radius: 100px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-strong);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.section-head { text-align: center; margin-bottom: 60px; }

/* Glass card genérico */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
}

/* ══════════════════════════════════════════
   4. LOADER
══════════════════════════════════════════ */
.loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
.loader.out { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; max-width: 280px; width: 100%; }

.loader-logo {
  height: 56px; margin: 0 auto 28px;
  animation: logoPulse 2s infinite ease-in-out;
}

.loader-track {
  width: 100%; height: 3px;
  background: rgba(255,255,255,.06);
  border-radius: 10px; overflow: hidden; margin-bottom: 16px;
}
.loader-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  animation: fillBar 1.6s forwards cubic-bezier(.1,.8,.2,1);
}
.loader-label {
  font-size: .8rem; letter-spacing: 1px;
  color: var(--text-muted); font-family: var(--font-h);
}

@keyframes logoPulse {
  0%,100% { opacity:.7; transform: scale(1); }
  50% { opacity:1; transform: scale(1.04); filter: drop-shadow(0 0 12px rgba(var(--primary-rgb),.5)); }
}
@keyframes fillBar { to { width: 100%; } }

/* ══════════════════════════════════════════
   5. BOTÕES
══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-h); font-weight: 600; font-size: .92rem;
  padding: 12px 26px; border-radius: 50px;
  cursor: pointer; border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-sm  { padding: 8px 18px; font-size: .82rem; }
.btn-block { display: flex; width: 100%; }

/* Primário laranja com glow */
.btn-glow {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 0 22px rgba(var(--primary-rgb),.4), 0 4px 16px rgba(0,0,0,.28);
  position: relative; overflow: hidden;
  transition: transform .32s cubic-bezier(.16,1,.3,1), box-shadow .32s ease;
}
.btn-glow::after {
  content: ''; position: absolute;
  top: -60%; left: -120%; width: 60%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-14deg);
  transition: left .7s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.btn-glow:hover {
  transform: translateY(-3px) scale(1.018);
  box-shadow: 0 0 38px rgba(var(--primary-rgb),.68), 0 8px 28px rgba(0,0,0,.32);
}
.btn-glow:hover::after { left: 160%; }

/* Ghost / outline */
.btn-ghost, .btn-outline {
  background: rgba(255,255,255,.03);
  color: var(--text-strong);
  border: 1px solid var(--border);
}
.btn-ghost:hover, .btn-outline:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(var(--primary-rgb),.5);
  transform: translateY(-3px);
}

/* Central do Assinante */
.btn-central {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  padding: 10px 22px;
  font-size: .88rem;
  box-shadow: 0 0 16px rgba(var(--primary-rgb),.3);
}
.btn-central:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(var(--primary-rgb),.5);
}

/* ══════════════════════════════════════════
   6. HEADER
══════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; height: 80px;
  z-index: 1000;
  background: rgba(17, 23, 32, .72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(11, 15, 23, .92);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.header-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.brand-logo { height: 40px; object-fit: contain; transition: var(--transition); }
.brand-logo:hover {
  filter: drop-shadow(0 0 8px rgba(var(--primary-rgb),.6));
  transform: scale(1.02);
}

/* Nav — desktop: posicionado fixo no centro do header */
.nav {
  position: fixed; top: 0; left: 50%;
  transform: translateX(-50%);
  height: 80px;
  display: flex; align-items: center;
  z-index: 1001; /* acima do header */
  pointer-events: auto;
}

.nav-list { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-size: .9rem; font-weight: 500;
  color: var(--text-muted); padding: 6px 0;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text-strong); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }

/* Hambúrguer */
.burger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px;
  background: transparent; border: none; cursor: pointer;
  padding: 0;
}
.burger span {
  display: block; width: 100%; height: 2px;
  background: var(--text-strong); border-radius: 4px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ── */
@media (max-width: 991px) {
  .btn-central span { display: none; }
  .btn-central { padding: 10px 12px; border-radius: 50%; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .btn-central i { margin: 0; font-size: 1.1rem; }
  .burger {
    display: flex;
    width: 44px; height: 44px;
    padding: 13px 9px;      /* touch 44px, visual 26×18px */
    justify-content: space-between; /* mantém espaçamento entre as linhas */
    box-sizing: border-box;
  }

  .nav {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    transform: none; /* remover translateX do desktop */
    background: rgba(10, 14, 22, .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none; /* escondido por padrão */
    flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 9999;
    padding-top: 80px;
  }
  .nav.open {
    display: flex;
    animation: navFadeIn .32s ease forwards;
  }
  @keyframes navFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .nav-list { flex-direction: column; gap: 36px; text-align: center; }
  .nav-link  { font-size: 1.5rem; font-weight: 600; padding: 8px 0; }
  .nav-link::after { bottom: -4px; }
}

/* ══════════════════════════════════════════
   7. HERO SECTION
══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: radial-gradient(ellipse 140% 100% at 60% 40%, #0c1828 0%, #0d1520 45%, #090e18 100%);
  overflow: hidden; padding-top: 80px;
}
/* No mobile, conteúdo começa abaixo do header com espaço visível */
@media (max-width: 991px) {
  .hero { align-items: flex-start; padding-top: 110px; }
}

.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}

/* Grid tecnológico */
.hero-grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 45%, rgba(0,0,0,.55) 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 45%, rgba(0,0,0,.55) 0%, transparent 80%);
}

.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 1;
}
.orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(var(--primary-rgb),.2) 0%, transparent 68%);
  top: -200px; right: -100px;
  animation: orbFloat 8s infinite ease-in-out;
}
.orb-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(37,99,168,.24) 0%, transparent 68%);
  bottom: -120px; left: -80px;
  animation: orbFloat 11s infinite ease-in-out reverse;
}
.orb-3 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(var(--primary-rgb),.08) 0%, transparent 65%);
  top: calc(50% - 170px); left: calc(50% - 170px);
  animation: orbFloat 14s infinite ease-in-out 2s;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-22px) scale(1.06); }
}

.hero-container {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
  padding: 70px 0 90px;
}
@media (max-width: 991px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; padding: 40px 0 60px; }
  .hero-right { display: flex; margin-top: 0; overflow: hidden; height: 300px; position: relative; }
  .orbit-1 { width: 280px; height: 280px; }
  .orbit-2 { display: none; }
  .ring-outer { width: 280px; height: 280px; }
  .ring-inner { width: 190px; height: 190px; }
  .hero-device-card { width: 260px; }
  .hero-right-glow { width: 220px; height: 220px; }
}
@media (max-width: 480px) {
  .hero-right { height: 260px; }
  .orbit-1 { width: 240px; height: 240px; }
  .ring-outer { width: 240px; height: 240px; }
  .ring-inner { width: 160px; height: 160px; }
  .hero-device-card { width: 230px; }
}

/* Lado esquerdo da hero */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--primary);
  padding: 6px 16px; margin-bottom: 22px;
  background: rgba(var(--primary-rgb),.1);
  border: 1px solid rgba(var(--primary-rgb),.2);
  border-radius: 100px;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-strong); margin-bottom: 22px;
  overflow-wrap: break-word; word-break: break-word;
}
@media (max-width: 580px) {
  .hero-title { font-size: clamp(1.75rem, 7.5vw, 2.4rem); }
  .hero-title br { display: none; } /* permite quebra natural em telas pequenas */
}

.hero-accent {
  background: linear-gradient(135deg, var(--primary) 0%, #ffac58 55%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(var(--primary-rgb),.5));
  animation: accentGlow 3.5s infinite ease-in-out;
}
@keyframes accentGlow {
  0%,100% { filter: drop-shadow(0 0 18px rgba(var(--primary-rgb),.38)); }
  50%      { filter: drop-shadow(0 0 36px rgba(var(--primary-rgb),.72)); }
}

/* Hero text reveal */
.hero-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .95s cubic-bezier(.16,1,.3,1), transform .95s cubic-bezier(.16,1,.3,1);
}
.hero-reveal.vis { opacity: 1; transform: translateY(0); }

.hero-sub {
  font-size: 1.08rem; color: var(--text-muted);
  max-width: 500px; margin-bottom: 42px; line-height: 1.78;
}
@media (max-width: 991px) { .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; } }

/* ══════════════════════════════════════════
   8. CARROSSEL DE PLANOS (hero)
══════════════════════════════════════════ */
.plan-carousel {
  position: relative;
  width: 100%; max-width: 520px;
}
@media (max-width: 991px) { .plan-carousel { margin: 0 auto; } }

.pc-slides { overflow: hidden; border-radius: var(--radius); }

.pc-slide {
  display: none;
  animation: pcFadeIn .55s ease forwards;
}
.pc-slide.active { display: block; }

@keyframes pcFadeIn {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.pc-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(26,74,107,.42) 0%, rgba(16,22,38,.94) 100%);
  border: 1px solid rgba(var(--primary-rgb),.32);
  border-radius: var(--radius);
  padding: 36px 36px 30px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 70px rgba(var(--primary-rgb),.13),
    0 30px 70px rgba(0,0,0,.5);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  transition: var(--transition);
}
.pc-card::before {
  content: '';
  position: absolute; top: 0; left: -120%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
  transform: skewX(-14deg);
  transition: left 1.4s cubic-bezier(.16,1,.3,1);
  pointer-events: none; z-index: 1;
}
.pc-slide.active .pc-card::before { left: 180%; }
.pc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--primary-rgb),.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.11),
    0 0 90px rgba(var(--primary-rgb),.22),
    0 40px 80px rgba(0,0,0,.55);
}
.pc-card-alt {
  background: linear-gradient(160deg, rgba(20,28,48,.88) 0%, rgba(14,20,35,.96) 100%);
  border-color: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), var(--shadow);
}
.pc-card-alt:hover {
  border-color: rgba(var(--primary-rgb),.3);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 0 55px rgba(var(--primary-rgb),.12),
    0 30px 60px rgba(0,0,0,.5);
}

.pc-badge {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-family: var(--font-h);
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 14px 5px 10px; border-radius: 100px;
  box-shadow: 0 0 16px rgba(var(--primary-rgb),.5), 0 0 32px rgba(var(--primary-rgb),.2);
  display: flex; align-items: center; gap: 5px;
  animation: badgePulse 2.8s infinite ease-in-out;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 12px rgba(var(--primary-rgb),.4), 0 0 24px rgba(var(--primary-rgb),.15); }
  50%      { box-shadow: 0 0 22px rgba(var(--primary-rgb),.68), 0 0 48px rgba(var(--primary-rgb),.28); }
}

.pc-speed-wrap {
  display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px;
}
.pc-speed-num {
  font-family: var(--font-h); font-size: 3.8rem; font-weight: 800;
  color: var(--text-strong); line-height: 1;
}
.pc-speed-unit {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 700;
  color: var(--primary);
}

.pc-price {
  display: flex; align-items: flex-start; gap: 2px; margin-bottom: 24px;
}
.pc-cur { font-family: var(--font-h); font-size: 1.1rem; font-weight: 600; color: var(--text-muted); margin-top: 4px; }
.pc-val { font-family: var(--font-h); font-size: 3.2rem; font-weight: 800; color: var(--text-strong); line-height: .9; }
.pc-dec { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--text-strong); margin-top: 4px; }
.pc-period { font-size: .82rem; color: var(--text-muted); align-self: flex-end; margin-left: 4px; }

.pc-features {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pc-features li {
  font-size: .9rem; color: var(--text); display: flex; align-items: center; gap: 10px;
}
.pc-features li i { color: var(--primary); font-size: 1rem; }

.pc-actions { display: flex; }
.pc-actions .btn {
  width: 100%; text-align: center;
  padding: 15px 28px; font-size: .97rem; letter-spacing: .3px;
}

/* Dots */
.pc-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 20px;
}
.pc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(255,255,255,.2);
  transition: var(--transition);
  padding: 0;
}
.pc-dot.active {
  background: var(--primary);
  box-shadow: 0 0 8px rgba(var(--primary-rgb),.6);
  width: 24px; border-radius: 4px;
}

/* Setas */
.pc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--text-strong); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: var(--transition);
  z-index: 10;
}
.pc-arrow:hover { background: rgba(var(--primary-rgb),.2); border-color: var(--primary); }
.pc-prev { left: -18px; }
.pc-next { right: -18px; }

@media (max-width: 600px) {
  .pc-card { padding: 24px 18px 20px; }
  .pc-speed-num { font-size: 2.6rem; }
  .pc-val { font-size: 2.2rem; }
  .pc-speed-unit { font-size: 1.2rem; }
  .pc-price { margin-bottom: 18px; }
  .pc-features { gap: 8px; margin-bottom: 20px; }
  .pc-features li { font-size: .85rem; }
  .pc-actions .btn { padding: 14px 24px; font-size: .95rem; }
  .pc-badge { font-size: .6rem; padding: 4px 10px 4px 8px; top: 14px; right: 14px; }
  .pc-prev { left: 2px; }
  .pc-next { right: 2px; }
}

@media (max-width: 400px) {
  .pc-card { padding: 20px 14px 18px; }
  .pc-speed-num { font-size: 2.2rem; }
  .pc-val { font-size: 1.9rem; }
}

/* Lado direito da hero – widget de rede */
.hero-right {
  position: relative; display: flex; align-items: center; justify-content: center;
}

.hero-right-glow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb),.18) 0%, rgba(37,99,168,.14) 40%, transparent 70%);
  pointer-events: none; z-index: 2;
  animation: rightGlow 5s infinite ease-in-out;
}
@keyframes rightGlow {
  0%,100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* Orbit rings */
.orbit-ring {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 3;
  border: 1px dashed rgba(var(--primary-rgb),.12);
}
.orbit-1 { width: 500px; height: 500px; animation: orbitSpin 28s infinite linear; }
.orbit-2 { width: 620px; height: 620px; animation: orbitSpin 44s infinite linear reverse; border-color: rgba(60,130,220,.08); }
.orbit-dot {
  position: absolute; top: 50%; left: 0;
  transform: translate(-50%, -50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(var(--primary-rgb),.9), 0 0 18px rgba(var(--primary-rgb),.45);
}
.orbit-2 .orbit-dot {
  background: rgba(100,180,255,.9);
  box-shadow: 0 0 8px rgba(100,180,255,.8), 0 0 18px rgba(100,180,255,.3);
  top: auto; bottom: 50%; left: 100%;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.hero-tech-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(var(--primary-rgb),.1);
  animation: ringPulse 6s infinite ease-in-out;
}
.ring-outer { width: 440px; height: 440px; }
.ring-inner { width: 300px; height: 300px; animation-delay: 1.5s; border-color: rgba(37,99,168,.12); }

@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity:.6; }
  50% { transform: scale(1.04); opacity:1; }
}

.hero-device-card {
  position: relative; z-index: 5;
  width: 390px;
  background: linear-gradient(165deg, rgba(14,21,38,.97) 0%, rgba(9,13,24,.99) 100%);
  border: 1px solid rgba(var(--primary-rgb),.18);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.07),
    inset 0 -1px 0 rgba(0,0,0,.2),
    0 0 0 1px rgba(255,255,255,.03),
    0 40px 100px rgba(0,0,0,.65),
    0 0 65px rgba(var(--primary-rgb),.15),
    0 0 130px rgba(37,99,168,.07);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  overflow: hidden;
  animation: deviceFloat 7s infinite ease-in-out;
}
@keyframes deviceFloat {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  33%      { transform: translateY(-11px) rotate(.25deg); }
  66%      { transform: translateY(-6px)  rotate(-.18deg); }
}

.hdc-header {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: linear-gradient(90deg, rgba(var(--primary-rgb),.06) 0%, rgba(255,255,255,.02) 100%);
}
.hdc-dot { width: 10px; height: 10px; border-radius: 50%; }
.hdc-dot.r { background: #ff5f57; }
.hdc-dot.y { background: #ffbd2e; }
.hdc-dot.g { background: #28c941; }
.hdc-title {
  font-family: var(--font-h); font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-left: 8px;
}

.hdc-body { padding: 28px 24px; text-align: center; }

.hdc-meter { position: relative; height: 130px; margin-bottom: 18px; }

.hdc-svg { width: 200px; height: auto; }

#hdc-arc { transition: stroke-dashoffset .1s linear; }

.hdc-speed-val {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
}
.hdc-speed-val span {
  font-family: var(--font-h); font-size: 3.6rem; font-weight: 800;
  background: linear-gradient(170deg, #fff 0%, rgba(255,200,160,.9) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(var(--primary-rgb),.65));
}
.hdc-speed-val small {
  font-family: var(--font-h); font-size: .88rem; font-weight: 700;
  color: var(--primary); display: block;
  letter-spacing: 1.5px;
  text-shadow: 0 0 10px rgba(var(--primary-rgb),.45);
}

.hdc-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.hdc-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 9px 6px; border-radius: 9px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.04);
  transition: var(--transition);
}
.hdc-stat:hover { background: rgba(var(--primary-rgb),.07); border-color: rgba(var(--primary-rgb),.18); }
.hdc-stat i { font-size: .75rem; color: var(--primary); }
.hdc-stat span { font-family: var(--font-h); font-size: .9rem; font-weight: 700; color: var(--text-strong); }
.hdc-stat small { font-size: .62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }

/* Linhas de fibra decorativas */
.fiber-line {
  position: absolute; height: 2px; border-radius: 10px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  pointer-events: none;
}
.fl-1 { width: 220px; top: 14%; left: -140px; transform: rotate(28deg); animation: fiberAnim 5s infinite linear; }
.fl-2 { width: 160px; bottom: 18%; right: -90px; transform: rotate(-14deg); animation: fiberAnim 7s infinite linear reverse; }
.fl-3 { width: 280px; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(50deg); opacity: .1; }

@keyframes fiberAnim {
  0%  { opacity:0; transform: rotate(28deg) translateX(-100%) scaleX(.1); }
  50% { opacity:.8; }
  100%{ opacity:0; transform: rotate(28deg) translateX(100%)  scaleX(1); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  z-index: 5;
}
.scroll-hint span {
  display: block; width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.15); border-radius: 12px;
  position: relative;
}
.scroll-hint span::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--primary); border-radius: 2px;
  animation: scrollBounce 2s infinite ease-in-out;
}
@keyframes scrollBounce {
  0%,100% { top: 6px; opacity: 1; }
  80% { top: 18px; opacity: 0; }
}

/* ══════════════════════════════════════════
   9. SECTION BASE
══════════════════════════════════════════ */
.section { padding: 100px 0; position: relative; }

/* Fundo alternado */
.plans-section { background: var(--bg-2); }
.coverage-section { background: var(--bg); }
.about-section { background: var(--bg-2); }
.contact-section { background: var(--bg); }

/* ══════════════════════════════════════════
   10. SEÇÃO DE PLANOS
══════════════════════════════════════════ */
.plans-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 28px; align-items: start;
}
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2,1fr); }
  .plan-featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-featured { grid-column: span 1; }
}

.plan-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  backdrop-filter: blur(14px);
  transition: var(--transition);
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb),.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 20px rgba(var(--primary-rgb),.12);
}

.plan-featured {
  background: linear-gradient(175deg, rgba(var(--primary-rgb),.14) 0%, var(--bg-card) 60%);
  border: 2px solid rgba(var(--primary-rgb),.5);
  box-shadow: 0 0 30px rgba(var(--primary-rgb),.18), var(--shadow);
  transform: scale(1.02);
}
.plan-featured:hover {
  transform: scale(1.04) translateY(-5px);
  box-shadow: 0 0 40px rgba(var(--primary-rgb),.3), var(--shadow);
}

.plan-hot {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-family: var(--font-h);
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 12px; border-radius: 100px;
  box-shadow: 0 0 10px rgba(var(--primary-rgb),.4);
}

.plan-icon-wrap {
  font-size: 2rem; color: var(--primary); margin-bottom: 16px;
}
.plan-featured .plan-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(var(--primary-rgb),.4));
}

.plan-name {
  font-family: var(--font-h); font-size: 1rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 6px;
}
.plan-featured .plan-name { color: var(--text); }

.plan-speed { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.ps-num {
  font-family: var(--font-h); font-size: 3.4rem; font-weight: 800;
  color: var(--text-strong); line-height: 1;
}
.ps-unit { font-family: var(--font-h); font-size: 1.4rem; font-weight: 700; color: var(--primary); }

.plan-price { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 24px; }
.pp-cur { font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; color: var(--text-muted); margin-top: 4px; }
.pp-val { font-family: var(--font-h); font-size: 3.6rem; font-weight: 800; color: var(--text-strong); line-height: .88; }
.pp-dec { font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; margin-top: 4px; color: var(--text-strong); }
.pp-mo  { font-size: .82rem; color: var(--text-muted); align-self: flex-end; margin-left: 4px; }

.plan-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 22px; }

.plan-benefits { display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.plan-benefits li { font-size: .9rem; color: var(--text); display: flex; align-items: center; gap: 10px; }
.plan-benefits li i { color: var(--primary); font-size: 1rem; }

/* ══════════════════════════════════════════
   11. SEÇÃO CORPORATIVA (REFATORADA)
══════════════════════════════════════════ */
.corp-section {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* Fundo: malha geométrica sutil */
.corp-mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none; z-index: 0;
}

/* Orbs de fundo */
.corp-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.corp-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -150px;
  background: radial-gradient(circle, rgba(var(--primary-rgb),.09) 0%, transparent 65%);
}
.corp-orb-2 {
  width: 500px; height: 500px;
  bottom: -150px; left: -100px;
  background: radial-gradient(circle, rgba(37,99,168,.08) 0%, transparent 65%);
}

/* Garante que container fica acima dos orbs */
.corp-section .container { position: relative; z-index: 2; }

.corp-tag {
  color: var(--accent) !important;
  background: rgba(var(--primary-rgb),.1) !important;
  border-color: rgba(var(--primary-rgb),.25) !important;
}

/* ── Blocos internos ── */
.corp-block { margin-bottom: 70px; }
.corp-block:last-of-type { margin-bottom: 0; }

.corp-block-hd {
  text-align: center;
  margin-bottom: 48px;
}
.corp-blk-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-h); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(var(--primary-rgb),.1);
  border: 1px solid rgba(var(--primary-rgb),.22);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 16px;
}
.corp-blk-title {
  font-family: var(--font-h); font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 700; color: var(--text-strong);
  margin-bottom: 10px;
}
.corp-blk-desc {
  font-size: .97rem; color: var(--text-muted); max-width: 520px; margin: 0 auto;
}

/* ── Grade de Serviços ── */
.corp-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Botão de cotação abaixo da grade de serviços */
.corp-svc-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Espaçador invisível para alinhamento do grid */
.corp-svc-spacer {
  visibility: hidden;
  pointer-events: none;
}

/* Card centralizado sozinho na última linha do grid */
.corp-svc-card.corp-svc-centered {
  grid-column: 1 / -1;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.corp-svc-card {
  background: rgba(255,255,255,.028);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: var(--transition);
  cursor: default;
}
.corp-svc-card:hover {
  background: rgba(var(--primary-rgb),.06);
  border-color: rgba(var(--primary-rgb),.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.28), 0 0 24px rgba(var(--primary-rgb),.1);
}

.corp-svc-ico {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(var(--primary-rgb),.12);
  border: 1px solid rgba(var(--primary-rgb),.2);
  font-size: 1.2rem; color: var(--primary);
  margin-bottom: 16px;
  transition: var(--transition);
}
.corp-svc-card:hover .corp-svc-ico {
  background: rgba(var(--primary-rgb),.2);
  box-shadow: 0 0 18px rgba(var(--primary-rgb),.3);
}

.corp-svc-card h4 {
  font-family: var(--font-h); font-size: .97rem; font-weight: 700;
  color: var(--text-strong); margin-bottom: 8px;
  display: flex; flex-direction: column; gap: 2px;
}
.svc-sub {
  font-size: .75rem; font-weight: 500;
  color: var(--primary); letter-spacing: .5px;
}
.corp-svc-card p {
  font-size: .83rem; color: var(--text-muted); line-height: 1.55;
}

/* ── Separador elegante ── */
.corp-sep {
  display: flex; align-items: center; gap: 0;
  margin: 60px 0;
}
.corp-sep::before,
.corp-sep::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}
.corp-sep span {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted);
  padding: 0 20px;
}
.corp-sep span i { color: var(--primary); }

/* ── Diferenciais strip ── */
.corp-diffs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
  margin-bottom: 48px;
}
.corp-diff-item {
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--font-h); font-size: .82rem; font-weight: 600;
  color: var(--text-strong);
  transition: var(--transition);
}
.corp-diff-item i { color: var(--primary); font-size: .9rem; }
.corp-diff-item:hover {
  border-color: rgba(var(--primary-rgb),.4);
  background: rgba(var(--primary-rgb),.07);
}

/* ── Grade de Planos PME ── */
.corp-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.corp-plan-card {
  position: relative;
  background: rgba(20,28,48,.85);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 36px 30px 30px;
  display: flex; flex-direction: column;
  transition: var(--transition);
  overflow: hidden;
}
.corp-plan-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.03) 0%, transparent 60%);
  pointer-events: none;
}
.corp-plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb),.3);
  box-shadow: 0 0 50px rgba(var(--primary-rgb),.1), 0 20px 50px rgba(0,0,0,.4);
}

/* Card destaque — 1 Giga */
.corp-plan-featured {
  background: linear-gradient(160deg, rgba(26,74,107,.55) 0%, rgba(16,22,38,.97) 100%);
  border-color: rgba(var(--primary-rgb),.4);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.1),
    0 0 60px rgba(var(--primary-rgb),.18),
    0 20px 60px rgba(0,0,0,.45);
}
.corp-plan-featured:hover {
  border-color: rgba(var(--primary-rgb),.65);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 0 80px rgba(var(--primary-rgb),.28),
    0 30px 70px rgba(0,0,0,.5);
}

/* Badge "Mais Completo" */
.cpc-hot {
  position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; font-family: var(--font-h);
  font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px 4px 9px; border-radius: 100px;
  display: flex; align-items: center; gap: 5px;
  animation: badgePulse 2.8s infinite ease-in-out;
}

/* Ícone do plano */
.cpc-icon {
  font-size: 1.5rem; color: var(--primary);
  margin-bottom: 14px;
}

/* Nome */
.cpc-name {
  font-family: var(--font-h); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); margin-bottom: 8px;
}

/* Velocidade */
.cpc-speed {
  font-family: var(--font-h); font-size: 3.4rem; font-weight: 800;
  color: var(--text-strong); line-height: 1;
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 12px;
}
.cpc-speed span {
  font-size: 1.3rem; font-weight: 700; color: var(--primary);
}

/* Preço */
.cpc-price {
  display: flex; align-items: flex-start; gap: 2px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.cpc-cur { font-family: var(--font-h); font-size: 1rem; font-weight: 600; color: var(--text-muted); margin-top: 4px; }
.cpc-val { font-family: var(--font-h); font-size: 2.8rem; font-weight: 800; color: var(--text-strong); line-height: .95; }
.cpc-dec { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--text-strong); margin-top: 4px; }
.cpc-mo  { font-size: .8rem; color: var(--text-muted); align-self: flex-end; margin-left: 3px; }

/* Features */
.cpc-features {
  list-style: none; display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 28px; flex: 1;
}
.cpc-features li {
  font-size: .88rem; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.cpc-features li i { color: var(--primary); font-size: .9rem; flex-shrink: 0; }

/* ── CTA Strip ── */
.corp-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 64px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 40px;
}
.corp-cta-left {
  display: flex; align-items: center; gap: 20px;
}
.corp-cta-ico {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(var(--primary-rgb),.12);
  border: 1px solid rgba(var(--primary-rgb),.25);
  font-size: 1.4rem; color: var(--primary);
}
.corp-cta strong {
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 700;
  color: var(--text-strong); display: block; margin-bottom: 4px;
}
.corp-cta p { font-size: .9rem; color: var(--text-muted); }

/* ── Responsividade ── */
@media (max-width: 1200px) {
  .corp-svc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .corp-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .corp-plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .corp-cta { flex-direction: column; text-align: center; padding: 28px 24px; }
  .corp-cta-left { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .corp-svc-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .corp-svc-card { padding: 20px 16px; }
  .corp-blk-title { font-size: 1.3rem; }
  .corp-diffs { gap: 8px; }
  .corp-diff-item { padding: 8px 14px; font-size: .78rem; }
}
@media (max-width: 400px) {
  .corp-svc-grid { grid-template-columns: 1fr; }
}



/* ══════════════════════════════════════════
   12. SEÇÃO DE COBERTURA
══════════════════════════════════════════ */
.coverage-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
}
@media (max-width: 991px) { .coverage-grid { grid-template-columns: 1fr; } }

.cov-subtitle {
  font-family: var(--font-h); font-size: 1.25rem; font-weight: 700;
  color: var(--text-strong); display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.cov-subtitle i { color: var(--primary); }

.cities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 28px; }
@media (max-width: 480px) { .cities-list { grid-template-columns: 1fr; } }

.city-item { display: flex; gap: 12px; align-items: flex-start; }
.city-pin {
  width: 36px; height: 36px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb),.3);
}
.city-item h4 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--text-strong); margin-bottom: 2px; }
.city-item p  { font-size: .82rem; color: var(--text-muted); }

.cov-cta {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px;
}
.cov-cta i { font-size: 1.6rem; color: var(--primary); margin-top: 2px; }
.cov-cta strong { font-family: var(--font-h); font-size: 1rem; color: var(--text-strong); display: block; margin-bottom: 4px; }
.cov-cta p { font-size: .82rem; color: var(--text-muted); margin-bottom: 12px; }

.map-card { padding: 22px; position: relative; overflow: hidden; }
.map-glow {
  position: absolute; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(var(--primary-rgb),.15) 0%, transparent 60%);
  top: 30%; left: 35%; z-index: 0; pointer-events: none;
}

.map-svg { width: 100%; height: auto; position: relative; z-index: 2; }

.map-line {
  fill: none; stroke: rgba(var(--primary-rgb),.2);
  stroke-width: 2; stroke-linecap: round;
  stroke-dasharray: 8 5;
  animation: mapDash 18s infinite linear;
}
@keyframes mapDash { to { stroke-dashoffset: -120; } }

.map-node { cursor: pointer; }
.node-ring {
  fill: rgba(var(--primary-rgb),.1);
  stroke: var(--primary); stroke-width: 1.5;
  animation: nodePulse 2.8s infinite ease-out;
  transform-origin: center;
}
.node-core { fill: #fff; stroke: var(--primary); stroke-width: 2; }
.node-text { font-family: var(--font-h); font-size: .68rem; font-weight: 700; fill: var(--text); }

@keyframes nodePulse {
  0% { transform: scale(.3); opacity: .8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.map-legend {
  display: flex; justify-content: flex-end; gap: 14px;
  padding-top: 14px; border-top: 1px solid var(--border);
  font-size: .72rem; color: var(--text-muted);
}
.map-legend span { display: flex; align-items: center; gap: 6px; }
.led { width: 7px; height: 7px; border-radius: 50%; }
.led.green { background: #27c93f; }
.led.blink { background: var(--accent); animation: blinkLed 1.2s infinite ease-in-out; }
@keyframes blinkLed { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ══════════════════════════════════════════
   13. SOBRE
══════════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 991px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visuals { order: 2; }
}

.about-visuals {
  position: relative; display: flex;
  flex-direction: column; gap: 20px; min-height: 360px; justify-content: center;
}
.about-card { padding: 28px; max-width: 300px; }
.float-a { align-self: flex-start; animation: floatA 5s infinite ease-in-out; }
.float-b { align-self: flex-end; margin-top: -20px; animation: floatA 5s infinite ease-in-out .8s; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@media (max-width: 500px) { .about-card { max-width: 100%; align-self: stretch !important; margin-top: 0 !important; } }

.about-ico { font-size: 1.7rem; color: var(--primary); margin-bottom: 12px; }
.about-card h4 { font-family: var(--font-h); font-size: 1.05rem; color: var(--text-strong); margin-bottom: 6px; }
.about-card p  { font-size: .84rem; color: var(--text-muted); }

.about-orb {
  position: absolute; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(var(--primary-rgb),.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; z-index: 0;
}

.about-p { font-size: 1rem; color: var(--text-muted); margin-bottom: 18px; }

.values { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 36px; }
.value-row { display: flex; gap: 14px; align-items: flex-start; font-size: .92rem; color: var(--text-muted); }
.vbullet {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(var(--primary-rgb),.1); border: 1px solid rgba(var(--primary-rgb),.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .68rem; color: var(--primary); margin-top: 2px;
}
.value-row strong { color: var(--text-strong); }

.stats-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 14px; padding-top: 24px; border-top: 1px solid var(--border);
}
@media (max-width: 480px) { .stats-row { grid-template-columns: 1fr; } }

.stat-box { text-align: center; }
.stat-num-wrap { display: flex; justify-content: center; align-items: baseline; gap: 2px; }
.stat-num { font-family: var(--font-h); font-size: 2.4rem; font-weight: 800; color: var(--text-strong); }
.stat-unit { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.stat-lbl { display: block; font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }

/* ══════════════════════════════════════════
   14. CONTATO
══════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: 50px; align-items: stretch;
}
@media (max-width: 991px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  padding: 44px; display: flex; flex-direction: column; justify-content: space-between;
}
.contact-info h3 { font-family: var(--font-h); font-size: 1.4rem; color: var(--text-strong); margin-bottom: 6px; }
.ci-intro { font-size: .9rem; color: var(--text-muted); margin-bottom: 26px; }

.ci-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.ci-item {
  display: flex; gap: 14px; align-items: center;
  padding: 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.02); border: 1px solid var(--border);
  transition: var(--transition);
}
.ci-item:hover { background: rgba(255,255,255,.04); border-color: rgba(var(--primary-rgb),.3); transform: translateX(4px); }
.ci-ico {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),.15), rgba(37,99,168,.15));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--text-strong);
}
.ci-item small { font-size: .68rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.ci-item strong { font-family: var(--font-h); font-size: .95rem; color: var(--text-strong); display: block; }

.ci-socials { display: flex; gap: 10px; }
.ci-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-strong);
}
.ci-socials a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }

/* Form */
.contact-form { padding: 44px; }
.contact-form h3 { font-family: var(--font-h); font-size: 1.4rem; color: var(--text-strong); margin-bottom: 6px; }
.cf-desc { font-size: .88rem; color: var(--text-muted); margin-bottom: 28px; }

.cf-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.cf-group label {
  font-family: var(--font-h); font-size: .8rem; font-weight: 600;
  color: var(--text-strong); display: flex; align-items: center; gap: 6px;
}
.cf-group label i { color: var(--primary); }

.cf-group input, .cf-group select, .cf-group textarea {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 15px; color: var(--text-strong);
  font-family: var(--font-b); font-size: .92rem; width: 100%;
  outline: none; transition: var(--transition);
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.15);
  background: rgba(255,255,255,.05);
}
.cf-group select option { background: #161d2b; color: var(--text-strong); }

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .cf-row { grid-template-columns: 1fr; } }

.form-feedback { margin-top: 14px; }
.form-success {
  background: rgba(39,201,63,.1); border: 1px solid rgba(39,201,63,.3);
  padding: 14px 16px; border-radius: var(--radius-sm);
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .88rem; color: var(--text);
}
.form-success i { color: #27c93f; font-size: 1.2rem; margin-top: 2px; }

/* ══════════════════════════════════════════
   15. FOOTER
══════════════════════════════════════════ */
.footer {
  background: linear-gradient(175deg, #0f1520 0%, #0b1018 100%);
  padding-top: 72px; overflow: hidden;
  border-top: 1px solid var(--border);
}

.footer-bar {
  position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary) 35%, var(--accent) 65%, transparent);
}

.footer-grid {
  display: grid; grid-template-columns: 1.3fr .85fr 1fr;
  gap: 50px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-logo { height: 46px; object-fit: contain; }
.footer-brand p { font-size: .88rem; color: var(--text-muted); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--text-muted);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-h); font-size: 1rem; font-weight: 700;
  color: var(--text-strong); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a, .footer-col ul li span {
  font-size: .88rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--accent); transform: translateX(3px); }
.footer-col ul li i { color: var(--primary); font-size: .8rem; }

.footer-bottom {
  padding: 26px 0;
  background: rgba(0,0,0,.15);
}
.footer-btm-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: .78rem; color: var(--text-muted); }
.footer-bottom span { font-family: var(--font-h); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.2); }

/* ══════════════════════════════════════════
   16. WHATSAPP FLOAT
══════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  font-size: 28px; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: var(--transition);
}
.wa-float::before {
  content: ''; position: absolute; width: 100%; height: 100%;
  border-radius: 50%; background: #25d366; opacity: .45; z-index: -1;
  animation: waPulse 2.2s infinite ease-out;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:.45} 100%{transform:scale(1.6);opacity:0} }
.wa-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 12px 30px rgba(37,211,102,.55); }

.wa-badge {
  position: absolute; top: -2px; left: -10px;
  font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  background: #e63946; color: #fff;
  padding: 2px 7px; border-radius: 8px;
  font-family: var(--font-h);
}

/* ══════════════════════════════════════════
   17. SCROLL REVEAL
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}
.reveal[data-origin="left"]   { transform: translateX(-36px); }
.reveal[data-origin="right"]  { transform: translateX( 36px); }
.reveal:not([data-origin])    { transform: translateY(30px); }
.reveal.visible { opacity: 1; transform: translate(0) !important; }

/* ══════════════════════════════════════════
   18. PROVA SOCIAL
══════════════════════════════════════════ */
.social-proof {
  position: relative; z-index: 10;
  background: linear-gradient(180deg, rgba(12,18,30,.97) 0%, rgba(16,22,36,.95) 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.04);
  padding: 36px 0;
}
.social-proof::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb),.35), transparent);
}

.sp-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 18px; align-items: stretch;
}
@media (max-width: 768px) { .sp-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 440px) { .sp-grid { grid-template-columns: 1fr; } }

.sp-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px; border-radius: 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
  cursor: default;
}
.sp-card:hover {
  background: rgba(var(--primary-rgb),.06);
  border-color: rgba(var(--primary-rgb),.22);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.3), 0 0 20px rgba(var(--primary-rgb),.08);
}
.sp-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),.16), rgba(37,99,168,.16));
  border: 1px solid rgba(var(--primary-rgb),.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--primary);
  transition: var(--transition);
}
.sp-card:hover .sp-icon {
  background: linear-gradient(135deg, rgba(var(--primary-rgb),.28), rgba(37,99,168,.22));
  box-shadow: 0 0 14px rgba(var(--primary-rgb),.3);
}
.sp-content strong {
  display: block; font-family: var(--font-h); font-size: 1.2rem; font-weight: 800;
  color: var(--text-strong); line-height: 1.15;
}
.sp-content span { font-size: .74rem; color: var(--text-muted); margin-top: 3px; display: block; }

/* ══════════════════════════════════════════
   19. ANIMAÇÕES UTILITÁRIAS
══════════════════════════════════════════ */
@keyframes spin { to { transform: rotate(360deg); } }
.anim-spin { animation: spin 1s infinite linear; }

/* ══════════════════════════════════════════
   20. RESPONSIVIDADE MOBILE ABRANGENTE
══════════════════════════════════════════ */

/* Ajuste global: evitar overflow horizontal */
html, body { overflow-x: hidden; max-width: 100%; }

/* Container mais apertado em telas pequenas */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

/* Hero sub-texto */
@media (max-width: 991px) {
  .hero-sub { font-size: 1rem; max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-eyebrow { font-size: .72rem; letter-spacing: 1.5px; margin-bottom: 16px; }
}

/* Seções */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-title { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .section-head { margin-bottom: 40px; }
}

/* Seção Planos */
@media (max-width: 480px) {
  .plan-card { padding: 28px 20px; }
  .ps-num { font-size: 2.6rem; }
  .pp-val { font-size: 2.4rem; }
}

/* Seção Corporativo */
@media (max-width: 991px) {
  .corp-inner { gap: 40px; }
  .corp-text { text-align: center; }
  .corp-perks { gap: 20px; }
  .corp-mock-grid { grid-template-columns: 1fr 1fr; }
}

/* Seção Cobertura */
@media (max-width: 480px) {
  .city-item { gap: 12px; }
  .map-card { padding: 20px 14px; }
}

/* Seção Sobre */
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-num-wrap { font-size: 1.8rem; }
}

/* Seção Contato */
@media (max-width: 768px) {
  .contact-grid { gap: 28px; }
  .cf-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-info, .contact-form { padding: 24px 18px; }
  .ci-list { gap: 14px; }
}

/* Footer */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-col ul { display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .footer-btm-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* Social Proof */
@media (max-width: 480px) {
  .sp-card { padding: 16px 14px; gap: 12px; }
  .sp-icon { width: 38px; height: 38px; font-size: 1rem; }
  .sp-content strong { font-size: 1.1rem; }
}

/* WA float — posição ajustada em mobile */
@media (max-width: 480px) {
  .wa-float { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 24px; }
}

/* Botões — garantir min-height para touch */
.btn { min-height: 44px; }

/* Device card no hero — ajustes finos */
@media (max-width: 480px) {
  .hdc-body { padding: 20px 16px; }
  .hdc-speed-val span { font-size: 2.8rem; }
  .hdc-stat span { font-size: .8rem; }
  .hdc-stat small { font-size: .56rem; }
}
