/* =====================================================================
   Golden Link — Static Export
   Folha de estilo única, sem dependências de WordPress/Elementor.
   Paleta: laranja #FF8800 | roxo #833CA3 | escuro #101010
   Fontes: Rajdhani (títulos) + Noto Sans (corpo)
   ===================================================================== */

/* -------------------------------------------------------------
   1. Variáveis e reset
------------------------------------------------------------- */
:root {
  --orange: #ff8800;          /* reservado para CTAs/botões de ação */
  --orange-dark: #e67a00;
  --blue: #1c9ce5;            /* azul primário (identidade Glink) */
  --blue-dark: #1577b8;
  --blue-deep: #0268a1;       /* azul principal (cabeçalho/gradientes) */
  --navy: #0a1b3a;            /* azul-marinho (seções escuras) */
  --navy-2: #0e2748;
  --yellow: #ffd21e;          /* números/destaques */
  --purple: #1565c0;          /* remapeado para azul (era roxo) */
  --purple-dark: #0d47a1;
  --dark: #0a1b3a;            /* remapeado para marinho (era #101010) */
  --dark-2: #0e2748;
  --topbar-blue: #005a8e;
  --gray: #7e7e7e;
  --gray-light: #f5f5f5;
  --gray-border: #e4e4e4;
  --white: #ffffff;
  --green-wa: #25d366;

  --font-display: "Rajdhani", "Segoe UI", sans-serif;
  --font-body: "Noto Sans", "Segoe UI", Arial, sans-serif;

  --maxw: 1200px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.14);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
}

/* -------------------------------------------------------------
   2. Utilitários
------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section--tint {
  background: var(--gray-light);
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

/* seção escura azul-marinho (planos) com leve brilho no topo */
.section--navy {
  position: relative;
  background:
    radial-gradient(1100px 480px at 50% -8%, rgba(2, 104, 161, 0.22), transparent 62%),
    linear-gradient(180deg, #0a1730 0%, #06101e 100%);
  color: var(--white);
}
.section--navy .section-head h1,
.section--navy .section-head h2 { color: var(--white); }
.section--navy .section-head p { color: rgba(255, 255, 255, 0.72); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-head p {
  margin-top: 12px;
  color: var(--gray);
  font-size: 1.05rem;
}

.section--dark .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.text-orange { color: var(--blue); }
.text-purple { color: var(--purple); }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition),
    box-shadow var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 136, 0, 0.35);
}
.btn--orange:hover { background: var(--orange-dark); color: var(--white); }

.btn--purple {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(21, 101, 192, 0.3);
}
.btn--purple:hover { background: var(--purple-dark); color: var(--white); }

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn--outline:hover { background: #fff; color: #0268a1; }

.btn--wa {
  background: var(--green-wa);
  color: var(--white);
}
.btn--wa:hover { background: #1da851; color: var(--white); }

.btn--lg { padding: 16px 38px; font-size: 1.15rem; }

/* -------------------------------------------------------------
   3. Barra de topo (contatos)
------------------------------------------------------------- */
.topbar {
  background: var(--topbar-blue);
  color: var(--white);
  font-size: 0.85rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
}

.topbar__contacts {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
}
.topbar__contacts a:hover { color: var(--blue); }

.topbar__actions {
  display: flex;
  gap: 10px;
}

.topbar__actions a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.topbar__actions a:hover { background: var(--blue); border-color: var(--blue); }
.topbar__actions a.is-primary { background: var(--blue); border-color: var(--blue); }
.topbar__actions a.is-primary:hover { background: var(--blue-dark); }

/* -------------------------------------------------------------
   4. Header / Navegação
------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #0268a1 0%, #015e94 55%, #005a8e 100%);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand img { height: 46px; width: auto; filter: brightness(0) invert(1); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  padding: 6px 0;
}

.nav__menu a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: width var(--transition);
}
.nav__menu a:hover,
.nav__menu a.is-active { color: #fff; }
.nav__menu a:hover::before,
.nav__menu a.is-active::before { width: 100%; }

/* Hambúrguer */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Submenu dropdown (Internet) */
.nav__menu .has-dropdown { position: relative; }
.nav__menu .has-dropdown > a::after {
  content: "▾";
  font-size: 0.7em;
  margin-left: 5px;
  display: inline-block;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 50;
}
.nav__menu .has-dropdown:hover .dropdown,
.nav__menu .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--dark);
}
.dropdown li a::before { display: none; }
.dropdown li a:hover { background: var(--gray-light); color: var(--blue); }
/* item da página atual dentro do dropdown: a regra global .is-active o deixa branco
   (some no fundo branco) — aqui marcamos "você está aqui" em laranja e visível */
.dropdown li a.is-active { color: var(--orange); background: var(--gray-light); font-weight: 600; }

/* Topbar social */
.topbar__social { display: flex; gap: 10px; align-items: center; }
.topbar__social a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.8rem;
}
.topbar__social a:hover { transform: translateY(-1px); filter: brightness(1.08); }
.topbar__social a[aria-label="Facebook"] { background: #1877f2; }
.topbar__social a[aria-label="Instagram"] { background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%); }

/* -------------------------------------------------------------
   5. Hero — banner único (full-bleed, responsivo)
------------------------------------------------------------- */
.hero-banner { display: block; line-height: 0; background: #061a8f; }
.hero-banner a { display: block; }
.hero-banner img { width: 100%; height: auto; display: block; }

/* Mobile: leve zoom + centralização para o texto não ficar minúsculo.
   A arte é horizontal; cortamos só ~9% de cada lado (sobras de fundo azul),
   preservando título, oferta (GLink Play Plus / 150 canais) e Turbo Upload. */
@media (max-width: 768px) {
  .hero-banner { overflow: hidden; }
  .hero-banner img { width: 118%; max-width: none; margin-left: -9%; }
}

/* (legado) Hero — slider de banners */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a1a4a;
}
.hero-slider__track { position: relative; }
.hero-slide {
  display: none;
  width: 100%;
}
.hero-slide.is-active { display: block; animation: fadeIn 0.6s ease; }
.hero-slide img { width: 100%; height: auto; display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}
.hero-slider__dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition);
}
.hero-slider__dots button.is-active { background: var(--white); }

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: grid;
  place-items: center;
  transition: background var(--transition);
}
.hero-slider__arrow:hover { background: var(--blue); }
.hero-slider__arrow.prev { left: 16px; }
.hero-slider__arrow.next { right: 16px; }
@media (max-width: 560px) {
  .hero-slider__arrow { display: none; }
}

/* -------------------------------------------------------------
   5b. Hero / Combos (faixa de parceiros)
------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 55%, var(--blue) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(54, 181, 240, 0.4), transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto 14px;
  position: relative;
}

.hero p.hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin: 0 auto 30px;
  position: relative;
}

.partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
  position: relative;
}

.partners img {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  height: 78px;
  object-fit: contain;
  width: 100%;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.partners img:hover { transform: translateY(-4px) scale(1.03); }

/* -------------------------------------------------------------
   6. App / Central do assinante
------------------------------------------------------------- */
.app-section .app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.app-section .app-grid img { margin: 0 auto; max-width: 460px; }

.app-section .eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
  letter-spacing: 1px;
}

.app-section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  margin: 6px 0 18px;
}

.app-section p { color: var(--gray); margin-bottom: 24px; }

.store-badges { display: flex; gap: 14px; flex-wrap: wrap; }

/* -------------------------------------------------------------
   7. Cards de planos
------------------------------------------------------------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.plan-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--gray-light); }
.plan-card__media img { width: 100%; height: 100%; object-fit: cover; }

.plan-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }

.plan-card__tag {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--purple);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.plan-card__speed {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--blue);
  margin: 2px 0 10px;
  text-transform: uppercase;
}

.plan-card__desc { color: var(--gray); font-size: 0.96rem; margin-bottom: 20px; flex: 1; }

.plan-card .btn { width: 100%; }

/* Plano empresarial — destaque de velocidade + lista de benefícios */
.plan-card--biz { text-align: center; }
.plan-card--biz.is-featured { border-color: var(--blue); box-shadow: 0 18px 50px rgba(255, 136, 0, 0.22); }
.plan-card--biz .plan-card__head {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  padding: 30px 20px;
}
.plan-card--biz.is-featured .plan-card__head {
  background: linear-gradient(135deg, var(--blue) 0%, #ff6a00 100%);
}
.plan-card--biz .plan-card__head .speed {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
}
.plan-card--biz .plan-card__head .unit { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; opacity: 0.9; }
.plan-card__feats { list-style: none; padding: 24px; margin: 0; flex: 1; }
.plan-card__feats li {
  padding: 12px 0;
  border-bottom: 1px dashed var(--gray-border);
  font-weight: 600;
  color: var(--dark);
}
.plan-card__feats li:last-child { border-bottom: none; }
.plan-card__feats li::before { content: "✓ "; color: var(--blue); font-weight: 700; }
.plan-card--biz .plan-card__foot { padding: 0 24px 24px; }
.ribbon {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.notes { text-align: center; color: var(--gray); font-size: 0.92rem; margin-top: 30px; }
.notes p { margin-bottom: 4px; }

/* Cards de imagem (combos/celular) — a arte do plano é a própria imagem */
.image-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.image-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.image-cards.cols-5 { grid-template-columns: repeat(5, 1fr); }

.image-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.image-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.image-card img { width: 100%; }

/* -------------------------------------------------------------
   8. Banner telefone fixo
------------------------------------------------------------- */
.fixo {
  background: linear-gradient(180deg, #16349e 0%, #0a1450 48%, #2f86ee 100%);
  color: var(--white);
}
.fixo .fixo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.fixo .eyebrow { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.fixo h2 { font-size: clamp(1.9rem, 4vw, 3rem); text-transform: uppercase; margin: 8px 0 24px; color: var(--blue); }
.fixo img { max-width: 360px; margin-left: auto; }

/* -------------------------------------------------------------
   9. Diferenciais (features)
------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.feature:hover { transform: translateY(-4px); }
.feature__icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}
.feature__icon img { width: 56px; height: 56px; object-fit: contain; }
.feature h3 { font-size: 1.25rem; text-transform: uppercase; color: var(--purple); margin-bottom: 6px; }
.feature p { color: var(--gray); font-size: 0.96rem; }

/* -------------------------------------------------------------
   10. Parceiro
------------------------------------------------------------- */
.parceiro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.parceiro-grid img.banner { border-radius: var(--radius); box-shadow: var(--shadow); }
.parceiro-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
}
.parceiro-card img { max-width: 200px; margin: 0 auto 18px; border-radius: 10px; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.insta-grid img { border-radius: 12px; box-shadow: var(--shadow); transition: transform var(--transition); }
.insta-grid a:hover img { transform: scale(1.04); }

/* -------------------------------------------------------------
   11. Faixa CTA / WhatsApp
------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); text-transform: uppercase; margin-bottom: 10px; }
.cta-band p { margin-bottom: 24px; color: rgba(255, 255, 255, 0.85); }

/* -------------------------------------------------------------
   12. Cobertura
------------------------------------------------------------- */
.coverage { text-align: center; }
.coverage__region {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
  font-size: 1.3rem;
  margin: 24px 0 14px;
}
.coverage__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 980px;
  margin: 0 auto;
}
.coverage__tags span {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.9rem;
  font-weight: 600;
}
.coverage__note { margin-top: 26px; color: var(--gray); font-size: 0.9rem; }

/* -------------------------------------------------------------
   13. Página interna — cabeçalho de página
------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0e2748 60%, var(--purple) 100%);
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
}
.page-hero h1 .text-orange { display: inline-block; }
.page-hero p { margin-top: 14px; color: rgba(255, 255, 255, 0.85); max-width: 700px; margin-inline: auto; }

/* Banner de página com imagem de fundo real + título sobreposto (modelo claro) */
.page-hero--img {
  position: relative;
  padding: 0;
  min-height: 360px;
  display: flex;
  align-items: center;
  text-align: left;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #0a1444;
}
/* véu claro à esquerda — texto escuro fica legível sem faixa preta */
.page-hero--img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.18) 70%, rgba(255, 255, 255, 0) 88%);
}
/* variante para imagens escuras (texto branco) */
.page-hero--img.on-dark { color: #ffffff; }
.page-hero--img.on-dark::before {
  background: linear-gradient(90deg, rgba(7, 14, 38, 0.85) 0%, rgba(7, 14, 38, 0.5) 46%, rgba(7, 14, 38, 0.08) 76%, rgba(7, 14, 38, 0) 92%);
}
.page-hero--img .container { position: relative; z-index: 1; }
.page-hero--img .page-hero__inner { max-width: 600px; }
.page-hero--img h1 { font-size: clamp(2rem, 4.6vw, 3rem); color: inherit; }
.page-hero--img p { margin: 14px 0 0; color: inherit; opacity: 0.92; }

/* Breadcrumb */
.crumb { margin-top: 12px; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; }
.crumb a { color: #1f9bd8; }
.crumb a:hover { color: var(--blue); }
.crumb span { margin: 0 7px; opacity: 0.5; }
.page-hero--img.on-dark .crumb a { color: #7fd4ff; }

/* destaques de título dos banners internos */
.text-cyan { color: #1f9bd8; }
.page-hero--img.on-dark .text-cyan { color: #64cdff; }
.text-navy { color: #0a1444; }

/* Banner de página em imagem cheia (texto já embutido na arte) */
.page-banner { display: block; line-height: 0; background: #0a1a4a; }
.page-banner img { width: 100%; height: auto; display: block; }

@media (max-width: 560px) {
  .page-hero--img { min-height: 230px; }
  .page-hero--img::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 60%, rgba(255, 255, 255, 0.55) 100%);
  }
  .page-hero--img.on-dark::before {
    background: linear-gradient(90deg, rgba(7, 14, 38, 0.9) 0%, rgba(7, 14, 38, 0.7) 60%, rgba(7, 14, 38, 0.45) 100%);
  }
}

/* -------------------------------------------------------------
   14. Contato
------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--purple);
}
.contact-card .label { font-weight: 700; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.contact-card p { color: var(--gray); font-size: 0.95rem; }

/* Canais de atendimento (4 colunas com ícone, estilo original) */
.channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.channel {
  position: relative;
  text-align: center;
  padding: 10px 26px;
}
.channel + .channel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: var(--gray-border);
}
.channel__icon { color: #1f9bd8; display: inline-block; margin-bottom: 14px; }
.channel__icon svg { width: 48px; height: 48px; display: block; }
.channel .channel__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: #0a1444;
  margin-bottom: 8px;
}
.channel .channel__num.is-pink { color: #d6336c; }
.channel p { color: var(--gray); font-size: 0.92rem; }

/* Loja + mapa */
.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.store-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.store-info__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1f9bd8;
}
.store-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #0a1444;
  text-transform: none;
  margin: 4px 0 18px;
}
.store-info__addr { color: var(--gray); }
.store-info__hours { margin-top: 16px; color: var(--gray); }
.store-info__hours strong { color: var(--dark); }
.store-info__emails {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.store-info__emails a { color: #d6336c; font-weight: 600; }
.store-info__emails a:hover { color: var(--blue); }

@media (max-width: 860px) {
  .channels { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .channel:nth-child(odd)::before { display: none; }
  .store-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 480px) {
  .channels { grid-template-columns: 1fr; }
  .channel::before { display: none !important; }
  .channel + .channel { border-top: 1px solid var(--gray-border); padding-top: 26px; }
}

/* -------------------------------------------------------------
   15. Formulários (RH / contato)
------------------------------------------------------------- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  max-width: 760px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.92rem; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(255, 136, 0, 0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* -------------------------------------------------------------
   16. Footer
------------------------------------------------------------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 60px 0 0;
  font-size: 0.92rem;
}
.footer a:hover { color: var(--blue); }

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__brand img { height: 46px; margin-bottom: 18px; }
.footer__brand p { max-width: 360px; }

.footer__follow { font-weight: 600; color: var(--white); margin-top: 18px; }
.footer__social { display: flex; gap: 12px; margin-top: 10px; }
.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.footer__social a:hover { background: var(--blue); transform: translateY(-3px); }

.footer__col h4 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer__col li { margin-bottom: 10px; }

.footer__units {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer__unit strong { color: var(--blue); display: block; font-family: var(--font-display); font-size: 1.05rem; }
.footer__unit span { display: block; font-size: 0.85rem; line-height: 1.5; }

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer__legal p { margin-bottom: 8px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* -------------------------------------------------------------
   17. WhatsApp flutuante
------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-wa);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }

/* -------------------------------------------------------------
   18. Responsividade
------------------------------------------------------------- */
@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__units { grid-template-columns: repeat(2, 1fr); }
  .image-cards.cols-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  /* Menu mobile */
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 85vw);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 90px 26px 30px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__menu a { padding: 14px 0; border-bottom: 1px solid var(--gray-border); font-size: 1.1rem; color: var(--dark); }
  .nav__menu a:hover, .nav__menu a.is-active { color: var(--blue); }
  .nav__menu a.nav-gamer { color: var(--cyan-dark); }
  .nav__cta .btn--outline { border-color: var(--blue); color: var(--blue); }
  .nav__cta .btn--outline:hover { background: var(--blue); color: #fff; }
  .nav__menu a::after { display: none; }

  /* Submenu vira acordeão recolhível no mobile (toca em "Internet" p/ abrir) */
  .nav__menu .has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav__menu .has-dropdown > a::after {
    content: "›";
    display: inline-block;
    margin-left: 8px;
    font-size: 1.35em;
    line-height: 1;
    color: var(--gray);
    transition: transform var(--transition), color var(--transition);
  }
  .nav__menu .has-dropdown.is-expanded > a { color: var(--blue); }
  .nav__menu .has-dropdown.is-expanded > a::after { transform: rotate(90deg); color: var(--blue); }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    min-width: 0;
    margin: 0 0 0 4px;
    padding: 0 0 0 14px;
    border-left: 2px solid var(--gray-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .nav__menu .has-dropdown.is-expanded > .dropdown { max-height: 400px; }
  .dropdown li a { padding: 11px 0; font-size: 0.98rem; color: var(--gray); border-bottom: 1px solid var(--gray-border); }
  .dropdown li:last-child a { border-bottom: none; }

  .nav__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; width: 100%; }
  .nav__cta .btn { width: 100%; }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition);
    z-index: 99;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }

  .app-section .app-grid,
  .fixo .fixo-grid,
  .parceiro-grid { grid-template-columns: 1fr; }
  .fixo img, .app-section .app-grid img { margin: 0 auto; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .image-cards { grid-template-columns: repeat(2, 1fr); }
  .partners { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  /* Topo compacto: 1 linha só, sem quebrar e espalhar o menu */
  .topbar .container { flex-wrap: nowrap; gap: 12px; min-height: 38px; }
  .topbar__contacts { gap: 18px; font-size: 0.82rem; flex-wrap: nowrap; min-width: 0; overflow: hidden; }
  /* mantém só o 0800 (demais telefones/e-mail seguem no rodapé e no SAC) */
  .topbar__contacts li:nth-child(n+2) { display: none; }
  .topbar__contacts li a { white-space: nowrap; }
  .topbar__social { flex: 0 0 auto; }
  .topbar__actions { display: none; }
  .features-grid,
  .contact-grid,
  .form-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 50px 0; }
  .plans-grid,
  .image-cards,
  .image-cards.cols-3,
  .image-cards.cols-5,
  .insta-grid { grid-template-columns: 1fr 1fr; }
  .footer__units { grid-template-columns: 1fr; }
}

/* Acessibilidade: respeitar preferência de menos movimento */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* =====================================================================
   19. Ajustes para refletir o design atual da home
   ===================================================================== */

/* Botões loja de app + ciano */
.btn--app-android { background: #1f9bd8; color: var(--white); }
.btn--app-android:hover { background: #1888c0; color: var(--white); }
.btn--app-ios { background: var(--blue); color: var(--white); }
.btn--app-ios:hover { background: var(--blue-dark); color: var(--white); }
.btn--cyan { background: #1f9bd8; color: var(--white); }
.btn--cyan:hover { background: #1888c0; color: var(--white); }

/* Cards "Planos com ultra velocidade" — cor por card */
.vplan .plan-card__body { gap: 0; }
.vplan__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.vplan__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #0a1444;
}
.vplan__pill {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
}
.vplan__btn { width: 100%; color: var(--white); }
.vplan--amber .vplan__pill, .vplan--amber .vplan__btn { background: #f2a900; }
.vplan--amber .vplan__btn:hover { background: #d99700; color: var(--white); }
.vplan--red   .vplan__pill, .vplan--red   .vplan__btn { background: #e00c19; }
.vplan--red   .vplan__btn:hover { background: #c00a15; color: var(--white); }
.vplan--cyan  .vplan__pill, .vplan--cyan  .vplan__btn { background: #1f9bd8; }
.vplan--cyan  .vplan__btn:hover { background: #1888c0; color: var(--white); }

/* "Por que contratar" — lista à esquerda + foto à direita */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-list .feature { background: transparent; border: none; box-shadow: none; padding: 0; }
.why-list .feature:hover { transform: none; }
.feature h3 { color: #0a1444; }
.why-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* Bloco Parceiro GLINK (fundo escuro) */
.parceiro-dark { background: #081226; color: rgba(255, 255, 255, 0.9); }
.parceiro-eyebrow {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f1c40f;
  margin-bottom: 30px;
}
.parceiro-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.parceiro-left { text-align: center; }
.parceiro-logo { max-width: 360px; margin: 0 auto 8px; }
.parceiro-bullets {
  list-style: none;
  display: inline-block;
  text-align: left;
  margin: 10px auto 24px;
  font-size: 1.05rem;
  line-height: 2;
}
.parceiro-bullets li { color: rgba(255, 255, 255, 0.92); }
.parceiro-cta { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.parceiro-qr { width: 150px; border-radius: 10px; background: #fff; padding: 6px; }
.btn--outline-light { background: transparent; border-color: rgba(255, 255, 255, 0.6); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--dark); }

/* Galeria de fotos (carrossel deslizável, sem JS) */
.moto-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: thin;
}
.moto-gallery a { flex: 0 0 78%; scroll-snap-align: center; }
.moto-gallery img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-photo { order: -1; }
  .parceiro-grid2 { grid-template-columns: 1fr; gap: 34px; }
  .moto-gallery a { flex-basis: 70%; }
}

/* =====================================================================
   20. Performance / Gamer — hero em HTML, neon sutil e tech
   Paleta tech: laranja (marca) + ciano neon de apoio, sobre fundo escuro.
   ===================================================================== */
:root {
  --ink: #07142e;            /* marinho para hero/gamer (era quase preto) */
  --ink-2: #0c2244;
  --cyan: #36b5f0;           /* azul-claro de apoio */
  --cyan-dark: #1f9bd8;
  --neon-glow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* Botões extras */
.btn--neon {
  background: var(--orange);
  color: #1a0f00;
  box-shadow: 0 0 0 1px rgba(255, 136, 0, 0.5), 0 10px 28px rgba(255, 136, 0, 0.45);
}
.btn--neon:hover { background: #ffa12e; color: #1a0f00; }
.btn--ghost-light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.14); color: var(--white); }

/* Ponto pulsante (status "ao vivo") */
.pulse-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(25, 227, 255, 0.6);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(25, 227, 255, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(25, 227, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(25, 227, 255, 0); }
}

/* Highlights de título */
.hl { color: var(--blue); position: relative; white-space: nowrap; }
.hl-cyan { color: var(--cyan); }

/* ---------- HERO em HTML ---------- */
.hero-x {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(28, 156, 229, 0.45), transparent 60%),
              radial-gradient(900px 500px at 0% 110%, rgba(13, 71, 161, 0.45), transparent 60%),
              linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 60%, #0a1b3a 100%);
  color: var(--white);
  padding: 72px 0 78px;
}
/* malha sutil de linhas (sensação de servidor/velocidade) */
.hero-x__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000 40%, transparent 100%);
  pointer-events: none;
}
.hero-x__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 48px;
}
.hero-x__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 50px;
}
.hero-x__title {
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  line-height: 1.04;
  text-transform: uppercase;
  margin: 20px 0 16px;
}
.hero-x__sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-x__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-x__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 26px;
  font-weight: 600;
  font-size: 0.95rem;
}
.hero-x__chips li { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.9); }
.hero-x__chips .chip-ico { font-size: 1.05rem; }

/* ---------- Cartão "monitor de conexão" ---------- */
.hero-x__visual { display: flex; justify-content: center; }
.latency-card {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--neon-glow);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.latency-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.latency-card__live { display: inline-flex; align-items: center; gap: 8px; }
.latency-card__badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--cyan);
  border: 1px solid rgba(25, 227, 255, 0.4);
  border-radius: 6px;
  padding: 3px 8px;
}
.latency-card__ping {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.latency-card__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}
.latency-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.latency-card__value strong { font-size: 2.6rem; color: var(--cyan); line-height: 1; transition: opacity .18s ease; }
/* badge do servidor sendo "pingado" (ícone + nome), troca dinâmica */
.latency-srv { display: inline-flex; align-items: center; gap: 6px; vertical-align: middle; margin-left: 6px; transition: opacity .18s ease; }
.latency-srv__ico { width: 19px; height: 19px; border-radius: 5px; display: inline-grid; place-items: center; flex: 0 0 19px; box-shadow: 0 1px 4px rgba(0, 0, 0, .35); }
.latency-srv__ico svg { width: 13px; height: 13px; display: block; }
.latency-srv__nome { font-family: var(--font-display); font-weight: 600; font-size: .82rem; letter-spacing: .3px; text-transform: none; color: #fff; }
.latency-bars { display: flex; align-items: flex-end; gap: 5px; height: 52px; }
.latency-bars span {
  width: 7px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--cyan), rgba(25, 227, 255, 0.25));
  animation: equalize 1.1s ease-in-out infinite;
}
.latency-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.latency-bars span:nth-child(2) { height: 70%; animation-delay: .1s; }
.latency-bars span:nth-child(3) { height: 55%; animation-delay: .2s; }
.latency-bars span:nth-child(4) { height: 90%; animation-delay: .3s; }
.latency-bars span:nth-child(5) { height: 60%; animation-delay: .15s; }
.latency-bars span:nth-child(6) { height: 80%; animation-delay: .25s; }
.latency-bars span:nth-child(7) { height: 45%; animation-delay: .05s; }
.latency-bars span:nth-child(8) { height: 72%; animation-delay: .35s; }
@keyframes equalize { 0%, 100% { transform: scaleY(0.5); } 50% { transform: scaleY(1); } }
.latency-bars span { transform-origin: bottom; }

.latency-card__rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.latency-card__rows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}
.latency-card__rows strong { color: var(--white); font-family: var(--font-display); }

.latency-card__route {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.latency-card__route .node {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 5px 9px;
  border-radius: 6px;
  white-space: nowrap;
}
.latency-card__route .node--mid { color: var(--cyan); border-color: rgba(25, 227, 255, 0.45); }
.latency-card__route .line {
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(25, 227, 255, 0.15), rgba(25, 227, 255, 0.7), rgba(25, 227, 255, 0.15));
  background-size: 200% 100%;
  animation: flow 1.6s linear infinite;
}
@keyframes flow { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ---------- Barra de prova de qualidade (números) ---------- */
.stats-band {
  background: var(--dark);
  color: var(--white);
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.stat { padding: 8px 10px; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--yellow);
  line-height: 1;
}
.stat__label {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Oferta em destaque (arte preservada) ---------- */
.promo { text-align: center; }
.promo__label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.82rem;
  color: var(--purple);
  background: rgba(21, 101, 192, 0.1);
  border: 1px solid rgba(21, 101, 192, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.promo__art {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.promo__art:hover { transform: translateY(-4px); }
.promo__art img { width: 100%; }

/* ---------- Ações de seção (par de botões centralizado) ---------- */
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 38px;
}

/* ---------- Seção Internet Gamer ---------- */
.gamer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #07142e 0%, #0c2244 55%, #0a1b3a 100%);
  color: var(--white);
}
.gamer__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 380px at 12% 20%, rgba(25, 227, 255, 0.18), transparent 60%),
    radial-gradient(700px 420px at 92% 90%, rgba(13, 71, 161, 0.28), transparent 60%);
  pointer-events: none;
}
.gamer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 50px;
}
.gamer__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  color: var(--cyan);
}
.gamer__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-transform: uppercase;
  margin: 14px 0 14px;
}
.gamer__sub { color: rgba(255, 255, 255, 0.82); max-width: 540px; margin-bottom: 24px; }
.gamer-bullets { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.gamer-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.gamer-bullets svg {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 10px;
  background: rgba(25, 227, 255, 0.1);
  border: 1px solid rgba(25, 227, 255, 0.3);
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gamer__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.gamer__visual { display: flex; justify-content: center; }
.gamer-frame {
  position: relative;
  border-radius: 18px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(25, 227, 255, 0.6), rgba(255, 136, 0, 0.6));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
  max-width: 440px;
}
.gamer-frame img { width: 100%; border-radius: 12px; display: block; }
.gamer-frame__chip {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.78rem;
  color: var(--white);
  background: rgba(10, 10, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 12px;
  border-radius: 10px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.gamer-frame__chip strong { color: var(--cyan); margin-left: 4px; }
.gamer-frame__chip--top { top: 16px; left: -14px; }
.gamer-frame__chip--bottom { bottom: 16px; right: -14px; }
.gamer-frame__chip--bottom strong { color: var(--blue); }

/* ---------- Explicação ping/latência ---------- */
.explain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.explain-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.explain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.explain-card__ico {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(28, 156, 229, 0.16), rgba(13, 71, 161, 0.14));
  margin-bottom: 16px;
}
.explain-card__ico svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.explain-card h3 { font-size: 1.18rem; text-transform: uppercase; color: #0a1444; margin-bottom: 8px; }
.explain-card p { color: var(--gray); font-size: 0.95rem; }
.explain-card strong { color: var(--dark); }

/* ---------- Perfis de cliente ---------- */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.profile-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.profile-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.profile-card__ico {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
}
.profile-card__ico svg { width: 30px; height: 30px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.profile-card__ico--cyan { background: rgba(25, 227, 255, 0.12); }
.profile-card__ico--cyan svg { stroke: var(--cyan-dark); }
.profile-card__ico--orange { background: rgba(255, 136, 0, 0.12); }
.profile-card__ico--orange svg { stroke: var(--blue); }
.profile-card__ico--purple { background: rgba(21, 101, 192, 0.12); }
.profile-card__ico--purple svg { stroke: var(--purple); }
.profile-card__ico--navy { background: rgba(10, 20, 68, 0.1); }
.profile-card__ico--navy svg { stroke: #0a1444; }
.profile-card h3 { font-size: 1.3rem; text-transform: uppercase; color: #0a1444; margin-bottom: 8px; }
.profile-card p { color: var(--gray); font-size: 0.95rem; flex: 1; margin-bottom: 16px; }
.profile-card__link {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--blue);
}
.profile-card__link:hover { color: var(--blue-dark); }

/* ---------- Item de menu "Gamer" (destaque sutil) ---------- */
.nav__menu a.nav-gamer { color: #ffd21e; }
.nav__menu a.nav-gamer::before { background: #ffd21e; }
.nav__menu a.nav-gamer:hover { color: #fff; }

/* ---------- Animação de entrada (reveal on scroll) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsividade dos novos blocos ---------- */
@media (max-width: 980px) {
  .explain-grid { grid-template-columns: repeat(2, 1fr); }
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-x__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-x__visual { order: -1; }
  .latency-card { max-width: 340px; }
  .gamer__grid { grid-template-columns: 1fr; gap: 40px; }
  .gamer__visual { order: -1; }
}
@media (max-width: 620px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 14px; }
  .stat:nth-child(odd)::before { display: none; }
  .explain-grid { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: 1fr; }
  .hero-x { padding: 54px 0 60px; }
  .hero-x__cta .btn, .section-actions .btn, .gamer__cta .btn { width: 100%; }
  .gamer-frame__chip--top { left: 8px; }
  .gamer-frame__chip--bottom { right: 8px; }
}

/* =====================================================================
   21. FAQ (acordeão nativo <details>, sem JS) — usado na landing gamer
   ===================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden;
}
.faq__item[open] { border-color: var(--blue); }
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: #0a1444;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--blue);
  transition: transform var(--transition);
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 22px 20px; color: var(--gray); }
.faq__a a { color: var(--blue); font-weight: 600; }

/* =====================================================================
   22. Link Dedicado — PNI (peering), data centers e lead form
   ===================================================================== */
/* Selos de peering direto (PNI) */
.pni-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.pni-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 150px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.pni-badge:hover { transform: translateY(-4px); }
.pni-badge strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #0a1444;
  letter-spacing: 0.3px;
}
.pni-badge span { font-size: 0.85rem; color: var(--gray); }

/* Cards de data center (fundo escuro) */
.dc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform var(--transition), border-color var(--transition);
}
.dc-card:hover { transform: translateY(-5px); border-color: rgba(25, 227, 255, 0.4); }
.dc-card__ico {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(25, 227, 255, 0.1);
  border: 1px solid rgba(25, 227, 255, 0.3);
  margin-bottom: 16px;
}
.dc-card__ico svg { width: 26px; height: 26px; fill: none; stroke: var(--cyan); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dc-card h3 { font-size: 1.15rem; color: var(--white); text-transform: uppercase; margin-bottom: 4px; }
.dc-card span { font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); }

/* Seção de lead: texto + formulário lado a lado */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.lead-grid .form-wrap { margin: 0; max-width: none; }
/* evita overflow do grid: itens podem encolher e o botão longo pode quebrar */
.lead-grid > * { min-width: 0; }
.form-wrap .btn { white-space: normal; }
.lead-intro h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); text-transform: uppercase; color: #0a1444; margin-bottom: 14px; }
.lead-intro p { color: var(--gray); margin-bottom: 18px; }
.lead-checklist { display: flex; flex-direction: column; gap: 12px; margin: 18px 0 24px; }
.lead-checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--dark); }
.lead-checklist li::before { content: "✓"; color: var(--blue); font-weight: 800; }
.form-alt { margin-top: 14px; font-size: 0.9rem; color: var(--gray); text-align: center; }
.form-alt a { color: var(--blue); font-weight: 600; }

@media (max-width: 980px) {
  .dc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .lead-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .dc-grid { grid-template-columns: 1fr; }
  .pni-badge { min-width: 0; flex: 1 1 130px; }
}

/* =====================================================================
   23. Planos tecnológicos (borda de luz circulando) + modal de ativação
   ===================================================================== */
@property --planx-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }

.planx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.planx {
  --ring-1: var(--cyan);
  --ring-2: #2f86ee;
  --planx-angle: 0deg;
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, #0f1626 0%, #0b101c 100%);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  color: #fff;
}
/* anel de luz girando ao redor do card */
.planx::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--planx-angle),
    transparent 0deg, var(--ring-1) 55deg, var(--ring-2) 110deg, transparent 200deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  animation: planx-spin 4s linear infinite;
  z-index: -1;
}
/* brilho extra só no card recomendado (mais leve p/ performance) */
.planx--reco::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--planx-angle),
    transparent 0deg, var(--ring-1) 55deg, var(--ring-2) 110deg, transparent 200deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  filter: blur(10px);
  opacity: .85;
  animation: planx-spin 4s linear infinite;
  z-index: -1;
}
@keyframes planx-spin { to { --planx-angle: 360deg; } }

.planx--reco { --ring-1: var(--orange); --ring-2: #ff3d6e; background: linear-gradient(180deg, #0e2748 0%, #0a1b3a 100%); transform: scale(1.05); z-index: 2; box-shadow: 0 22px 55px rgba(255, 90, 40, .28); }
/* faixa "Mais escolhido" no topo do plano em destaque */
.planx__flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  font-size: .72rem; color: #1a0f00;
  background: linear-gradient(90deg, var(--orange), #ff3d6e);
  padding: 7px 16px; border-radius: 50px;
  box-shadow: 0 8px 20px rgba(255, 90, 40, .45); z-index: 3;
}

.planx__badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  font-size: .76rem;
  color: rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.planx--reco .planx__badge { color: var(--cyan); border-color: rgba(25, 227, 255, .4); }

.planx__speed { font-family: var(--font-display); font-weight: 700; line-height: 1; }
.planx__speed strong { font-size: 3rem; }
.planx__speed span { font-size: 1.05rem; color: rgba(255, 255, 255, .8); }

.planx__pay {
  display: inline-block;
  margin: 12px 0 14px;
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; font-size: .68rem; letter-spacing: .5px;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px; padding: 5px 10px;
}
.planx__price { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; line-height: 1; }
.planx__price i { font-style: normal; font-size: 1.05rem; vertical-align: top; }
.planx__price small { font-size: .9rem; color: rgba(255, 255, 255, .6); font-weight: 600; }
.planx__after { font-size: .82rem; color: rgba(255, 255, 255, .6); margin: 8px 0 18px; }

.planx__feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.planx__feats li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: rgba(255, 255, 255, .9); }
.planx__feats svg { width: 18px; height: 18px; flex: 0 0 18px; fill: none; stroke: var(--cyan); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.planx--reco .planx__feats svg { stroke: var(--blue); }

.planx__tv {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px; padding: 14px; margin-bottom: 18px;
}
.planx__tvhead { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.planx__tvtag { font-family: var(--font-display); font-weight: 700; font-size: .7rem; letter-spacing: .5px; color: #fff; background: linear-gradient(90deg, var(--cyan), #2f86ee); border-radius: 4px; padding: 3px 8px; }
.planx__tvhead strong { font-family: var(--font-display); }
.planx__tv p { font-size: .82rem; color: rgba(255, 255, 255, .65); }

.planx__cta { margin-top: auto; width: 100%; background: linear-gradient(90deg, #1f9bd8, #2f86ee); color: #fff; border: none; }
.planx__cta:hover { filter: brightness(1.1); color: #fff; }
.planx--reco .planx__cta { background: linear-gradient(90deg, var(--orange), #ff3d6e); }

@media (max-width: 980px) { .planx-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .planx-grid { grid-template-columns: 1fr; } .planx--reco { transform: none; } }

/* Acento gamer nos planos (página Internet Gamer) — preço/velocidade em neon ciano */
.planx-grid--gamer .planx__price { color: var(--cyan); text-shadow: 0 0 16px rgba(54, 181, 240, .4); }
.planx-grid--gamer .planx__speed strong { text-shadow: 0 0 20px rgba(54, 181, 240, .45); }

/* Planos empresariais (empresas.html) — grid de 3 cards centralizado + descritor */
.planx-grid--biz { grid-template-columns: repeat(3, 1fr); max-width: 1040px; margin-left: auto; margin-right: auto; }
.planx__bizfor { color: rgba(255, 255, 255, .72); font-size: .92rem; line-height: 1.4; margin: 8px 0 16px; }
.link-inline { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.link-inline:hover { color: #fff; }
@media (max-width: 980px) { .planx-grid--biz { grid-template-columns: repeat(2, 1fr); max-width: 680px; } }
@media (max-width: 560px) { .planx-grid--biz { grid-template-columns: 1fr; max-width: none; } }

/* ---------- Modal de ativação de plano ---------- */
.modal {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(4, 6, 14, .74); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.modal__box {
  position: relative; width: min(440px, 100%); max-height: 90vh; overflow-y: auto;
  background: linear-gradient(180deg, #131a2a 0%, #0d1320 100%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px; padding: 30px; color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  transform: translateY(14px); transition: transform var(--transition);
}
.modal.is-open .modal__box { transform: none; }
.modal__close {
  position: absolute; top: 16px; right: 16px; width: 34px; height: 34px;
  border-radius: 8px; background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14); color: #fff; font-size: 1rem; line-height: 1; cursor: pointer;
}
.modal__close:hover { background: rgba(255, 255, 255, .16); }
.modal__title { font-size: 1.55rem; text-transform: uppercase; margin-bottom: 8px; }
.modal__lead { color: rgba(255, 255, 255, .7); font-size: .95rem; margin-bottom: 20px; }
.modal__lead strong { color: #fff; }
.modal__field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.modal__field label { font-weight: 600; font-size: .85rem; }
.modal__field input {
  font-family: var(--font-body); font-size: 1rem; padding: 12px 14px; border-radius: 10px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .16); color: #fff;
}
.modal__field input::placeholder { color: rgba(255, 255, 255, .4); }
.modal__field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(255, 136, 0, .18); }
.modal__plan { background: rgba(25, 227, 255, .06); border: 1px solid rgba(25, 227, 255, .22); border-radius: 12px; padding: 14px; margin: 6px 0 20px; }
.modal__plan b { display: block; font-family: var(--font-display); margin-bottom: 4px; }
.modal__plan span { font-size: .9rem; color: rgba(255, 255, 255, .72); }
/* box detalhado por grade */
.modal__plan-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.modal__plan-head b { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: #fff; }
.modal__grade { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-size: .72rem; border-radius: 50px; padding: 4px 12px; white-space: nowrap; }
.modal__grade--bronze { background: linear-gradient(90deg, #e0a06a, #c47b3e); color: #2a1300; }
.modal__grade--prata { background: linear-gradient(90deg, #eef2f6, #b9c2cc); color: #1a2430; }
.modal__grade--ouro { background: linear-gradient(90deg, #ffe07a, #e8b23d); color: #2a1f00; }
.modal__plan-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 14px; margin-bottom: 12px; }
.modal__plan-feats li { position: relative; padding-left: 20px; font-size: .88rem; color: rgba(255, 255, 255, .9); }
.modal__plan-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.modal__channels { font-size: .82rem; color: rgba(255, 255, 255, .7); margin-bottom: 12px; line-height: 1.55; }
.modal__channels span { color: #fff; font-weight: 600; }
.modal__price { font-size: .92rem; color: rgba(255, 255, 255, .85); }
.modal__price strong { color: var(--cyan); font-family: var(--font-display); font-size: 1.1rem; }
.modal__price small { color: rgba(255, 255, 255, .6); }
.modal__submit { width: 100%; background: linear-gradient(90deg, var(--orange), #ff3d6e); color: #fff; border: none; margin-bottom: 10px; }
.modal__submit:hover { filter: brightness(1.1); color: #fff; }
.modal__cancel { width: 100%; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16); color: #fff; }
.modal__cancel:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* =====================================================================
   24. GLINK PLAY — TV + canais circulando (marquee) + telas por plano
   ===================================================================== */
.gplay { position: relative; overflow: hidden; background: #eef1f6; }
.gplay__bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 20, 68, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 20, 68, .045) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(80% 80% at 50% 40%, #000 50%, transparent 100%);
          mask-image: radial-gradient(80% 80% at 50% 40%, #000 50%, transparent 100%);
}
.gplay .container { position: relative; }
.gplay__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  font-size: .82rem; color: #1f9bd8;
  background: rgba(31, 155, 216, .1); border: 1px solid rgba(31, 155, 216, .3);
  border-radius: 50px; padding: 7px 16px; margin-bottom: 14px;
}
.gplay .section-head h2 { color: #0a1444; }

.gplay__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 44px; align-items: start; }
.gplay__left, .gplay__right { min-width: 0; }

/* ----- TV ----- */
.tvframe { max-width: 500px; margin: 0 auto; }
.tvframe__screen {
  position: relative; aspect-ratio: 16 / 10; border-radius: 16px; overflow: hidden;
  border: 7px solid #0a0a12;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(13, 71, 161, .55), transparent 60%),
    radial-gradient(120% 90% at 10% 100%, rgba(54, 181, 240, .45), transparent 60%),
    linear-gradient(135deg, #07142e, #0e2748);
  box-shadow: 0 26px 60px rgba(10, 20, 68, .25);
  display: grid; place-items: center;
}
.tvframe__screen::before {
  content: ""; position: absolute; inset: -20%;
  background: repeating-linear-gradient(115deg, transparent 0 22px, rgba(255, 255, 255, .05) 22px 24px);
}
.tvframe__play {
  position: relative; z-index: 1;
  width: 80px; height: 80px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .14); border: 2px solid rgba(255, 255, 255, .85);
  color: #fff; font-size: 1.7rem; padding-left: 6px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  animation: tvpulse 2.4s ease-in-out infinite;
}
@keyframes tvpulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .35); } 60% { box-shadow: 0 0 0 18px rgba(255, 255, 255, 0); } }
.tvframe__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 1; background: #0b0a18;
}
.tvframe__wm {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-family: var(--font-display); font-weight: 700; letter-spacing: 1px;
  font-size: .8rem; color: rgba(255, 255, 255, .85); text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
}
.tvframe__stand { display: block; width: 120px; height: 10px; margin: 0 auto; border-radius: 0 0 10px 10px; background: #0a0a12; }
.tvframe__stand::after { content: ""; display: block; width: 200px; height: 8px; margin: 8px auto 0; border-radius: 8px; background: rgba(10, 20, 68, .15); }

.gplay__chanlabel {
  margin: 26px 0 12px; font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; font-size: .85rem; color: #0a1444;
}
.gplay__chanlabel span { color: var(--gray); font-weight: 600; }

/* ----- Marquee (carrossel infinito) ----- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 12px; width: max-content; animation: marquee-x 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee--logos .marquee__track { animation-duration: 30s; }
.marquee--reverse .marquee__track { animation-direction: reverse; }
@keyframes marquee-x { to { transform: translateX(-50%); } }

.chan-chip {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--white); border: 1px solid var(--gray-border); border-radius: 50px;
  padding: 8px 16px; font-weight: 600; font-size: .9rem; color: #0a1444;
}
.chan-chip i { width: 9px; height: 9px; border-radius: 50%; background: var(--c, var(--blue)); flex: 0 0 9px; }

.logo-chip {
  display: grid; place-items: center; background: var(--white);
  border: 1px solid var(--gray-border); border-radius: 14px;
  width: 92px; height: 74px; padding: 10px; box-shadow: var(--shadow);
}
.logo-chip img { max-height: 100%; max-width: 100%; object-fit: contain; border-radius: 8px; }

/* ----- Stats ----- */
.gplay-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 20px; }
.gpstat { background: var(--white); border: 1px solid var(--gray-border); border-radius: 12px; padding: 16px 10px; text-align: center; box-shadow: var(--shadow); }
.gpstat strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: #1f9bd8; line-height: 1; }
.gpstat span { display: block; margin-top: 6px; font-size: .82rem; color: var(--gray); }

/* ----- Telas por plano ----- */
.gplay__telaslabel { margin: 24px 0 12px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; font-size: .85rem; color: #0a1444; }
.gplay-telas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.gptela { background: var(--white); border: 1px solid var(--gray-border); border-radius: 12px; padding: 14px 8px; text-align: center; }
.gptela--reco { border-color: #1f9bd8; box-shadow: 0 0 0 2px rgba(31, 155, 216, .18); }
.gptela__icns { display: inline-flex; gap: 3px; margin-bottom: 8px; }
.gptela__icns i { width: 13px; height: 10px; border-radius: 2px; background: rgba(10, 20, 68, .18); border: 1px solid rgba(10, 20, 68, .25); }
.gptela--reco .gptela__icns i { background: rgba(31, 155, 216, .35); border-color: #1f9bd8; }
.gptela strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: #0a1444; }
.gptela strong i { font-style: normal; font-size: .8rem; color: var(--gray); }
.gptela span { display: block; font-size: .8rem; color: var(--gray); margin-top: 2px; }

.gplay__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.gplay__cta span { font-size: .9rem; color: var(--gray); max-width: 220px; }

@media (max-width: 860px) {
  .gplay__grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 480px) {
  .gplay-stats { grid-template-columns: 1fr; }
  .gplay-telas { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   25. Consulta de CEP (cobertura)
   ===================================================================== */
.cep-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0e2748 0%, var(--blue-deep) 52%, #0a1b3a 100%);
  border-radius: 22px; padding: 40px 44px; color: #fff;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 36px; align-items: center;
  box-shadow: var(--shadow-lg);
}
.cep-card::after {
  content: ""; position: absolute; right: -8%; top: -45%; width: 48%; height: 130%;
  background: radial-gradient(circle, rgba(54, 181, 240, .4), transparent 70%); pointer-events: none;
}
.cep-card__text { position: relative; }
.cep-card__text .eyebrow { color: var(--blue); }
.cep-card__text h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); text-transform: uppercase; margin: 8px 0 10px; }
.cep-card__text p { color: rgba(255, 255, 255, .82); }

.cep-form { position: relative; }
.cep-form__row {
  display: flex; align-items: stretch; gap: 8px;
  background: #fff; border-radius: 14px; padding: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}
.cep-form__row input {
  border: none; background: transparent; font-family: var(--font-body);
  font-size: 1rem; color: var(--dark); padding: 12px 14px; min-width: 0; width: 100%;
}
.cep-form__row input::placeholder { color: #9a9aa5; }
.cep-form__row input:focus { outline: none; }
.cep-form__cep { flex: 1.5; border-right: 1px solid var(--gray-border); }
.cep-form__num { flex: 1; }
.cep-form__go {
  flex: 0 0 auto; width: 52px; border: none; border-radius: 10px; cursor: pointer;
  background: linear-gradient(135deg, var(--orange), #ff6a00); color: #fff;
  display: grid; place-items: center;
  transition: filter var(--transition), transform var(--transition);
}
.cep-form__go:hover { filter: brightness(1.08); transform: translateX(2px); }
.cep-form__go svg { width: 22px; height: 22px; }

.cep-result {
  margin: 14px 4px 0; font-size: .95rem; line-height: 1.55; min-height: 1.2em;
  color: rgba(255, 255, 255, .9);
}
.cep-result strong { color: #fff; }
.cep-result.is-ok { color: #b8f5c9; }
.cep-result.is-region { color: #ffe0a3; }
.cep-result.is-no, .cep-result.is-error { color: #ffd2d2; }
.cep-result .cep-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.cep-result .cep-cta a {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: .82rem; letter-spacing: .5px; padding: 10px 18px; border-radius: 50px; color: #fff;
}
.cep-result .cep-cta .wa { background: var(--green-wa); }
.cep-result .cep-cta .wa:hover { background: #1da851; color: #fff; }
.cep-result .cep-cta .plans { background: var(--blue); }
.cep-result .cep-cta .plans:hover { background: var(--blue-dark); color: #fff; }

/* Consulta de CEP embutida no hero */
.hero-cep { margin-top: 26px; max-width: 480px; }
.hero-cep__title {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 0 0 12px; color: #fff;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; font-size: 1rem;
}
.hero-cep__pin { width: 18px; height: 18px; color: var(--blue); flex: 0 0 auto; }
.hero-cep__title span {
  font-family: var(--font-body); font-weight: 500; text-transform: none; letter-spacing: 0;
  font-size: .84rem; color: rgba(255, 255, 255, .7);
}
.cep-form--hero .cep-form__row { box-shadow: 0 12px 30px rgba(0, 0, 0, .34); }
.cep-form--hero .cep-form__num { flex: 0 0 auto; max-width: 92px; }

@media (max-width: 960px) { .hero-cep { max-width: none; } }

@media (max-width: 820px) {
  .cep-card { grid-template-columns: 1fr; gap: 22px; padding: 30px 24px; }
}
@media (max-width: 440px) {
  .cep-form__row { flex-wrap: wrap; }
  .cep-form__cep { flex: 1 1 100%; border-right: none; border-bottom: 1px solid var(--gray-border); }
  .cep-form__num { flex: 1; }
}

/* =====================================================================
   26. Mapa de cobertura interativo (Leaflet) — Link Dedicado
   ===================================================================== */
.cov-mapwrap { position: relative; }
#cov-map {
  height: 540px; border-radius: 18px; overflow: hidden;
  background: #06101e; border: 1px solid rgba(54, 181, 240, 0.18);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}
.leaflet-container { background: #06101e; font-family: var(--font-body); }
.leaflet-container a { color: #36b5f0; }
.leaflet-control-zoom a { background: #0d2138 !important; color: #cdeeff !important; border-color: rgba(255,255,255,.12) !important; }
.leaflet-control-zoom a:hover { background: #123052 !important; }
.leaflet-control-attribution { background: rgba(6,16,30,.7) !important; color: rgba(255,255,255,.5) !important; }

/* fibra: camada base (brilho) + camada de pulso (luz correndo) */
.leaflet-overlay-pane path.fiber-base {
  stroke: #1c9ce5; stroke-opacity: .4; fill: none;
  filter: drop-shadow(0 0 3px rgba(28, 156, 229, .7));
}
.leaflet-overlay-pane path.fiber-flow {
  stroke: #8fe0ff; fill: none; stroke-width: 2.2;
  stroke-dasharray: 5 17; animation: fiberflow 1.3s linear infinite;
}
@keyframes fiberflow { to { stroke-dashoffset: -22; } }
.leaflet-overlay-pane path.fiber-base.active {
  stroke: #36b5f0; stroke-opacity: .95; stroke-width: 4 !important;
  filter: drop-shadow(0 0 9px #36b5f0);
}
.leaflet-overlay-pane path.fiber-flow.active { stroke: #eaf7ff; stroke-width: 3 !important; animation-duration: .8s; }

/* fibra submarina (Cotia <-> Globe Net): ciano-água, atravessa o oceano */
.leaflet-overlay-pane path.subsea-base {
  stroke: #16c8b6; stroke-opacity: .5; fill: none; stroke-width: 3;
  filter: drop-shadow(0 0 4px rgba(22, 200, 182, .85));
}
.leaflet-overlay-pane path.subsea-flow {
  stroke: #7df5e7; fill: none; stroke-width: 2.4;
  stroke-dasharray: 6 20; animation: fiberflow 1.7s linear infinite;
}
.leaflet-overlay-pane path.subsea-base.active {
  stroke: #2bf0da; stroke-opacity: .95; stroke-width: 4.5 !important;
  filter: drop-shadow(0 0 11px #2bf0da);
}
.leaflet-overlay-pane path.subsea-flow.active { stroke: #eafffb; stroke-width: 3 !important; animation-duration: 1s; }

/* caixa de fusão (transição terra <-> mar do cabo submarino) */
.cov-splice-wrap { background: none; border: none; }
.cov-splice {
  display: grid; place-items: center; width: 23px; height: 23px; border-radius: 6px;
  background: rgba(8, 18, 38, .94); border: 2px solid #cfefff; color: #eaf7ff;
  box-shadow: 0 0 8px rgba(120, 220, 255, .6);
}
.cov-splice svg { width: 15px; height: 15px; }
.leaflet-tooltip.cov-splice-tip {
  background: rgba(8, 18, 38, .94); border: 1px solid rgba(180, 230, 255, .5);
  border-radius: 8px; padding: 5px 10px; color: #fff; font-size: .76rem; box-shadow: 0 8px 20px rgba(0, 0, 0, .5);
}
.leaflet-tooltip.cov-splice-tip::before { display: none; }

/* ponto de presença pulsante */
.cov-pt { background: none; border: none; }
.cov-pt__dot {
  display: block; width: 13px; height: 13px; border-radius: 50%;
  background: #36b5f0; border: 2px solid #fff;
  box-shadow: 0 0 8px rgba(54, 181, 240, .9);
  animation: covpulse 2.1s infinite; cursor: pointer;
}
@keyframes covpulse {
  0% { box-shadow: 0 0 8px rgba(54,181,240,.9), 0 0 0 0 rgba(54,181,240,.55); }
  70% { box-shadow: 0 0 8px rgba(54,181,240,.9), 0 0 0 15px rgba(54,181,240,0); }
  100% { box-shadow: 0 0 8px rgba(54,181,240,.9), 0 0 0 0 rgba(54,181,240,0); }
}
.cov-pt.active .cov-pt__dot {
  background: #ffd21e; transform: scale(1.25);
  animation: covpulse-y 1.3s infinite;
}
@keyframes covpulse-y {
  0% { box-shadow: 0 0 10px rgba(255,210,30,.9), 0 0 0 0 rgba(255,210,30,.6); }
  70% { box-shadow: 0 0 10px rgba(255,210,30,.9), 0 0 0 18px rgba(255,210,30,0); }
  100% { box-shadow: 0 0 10px rgba(255,210,30,.9), 0 0 0 0 rgba(255,210,30,0); }
}

/* card no hover (tooltip do Leaflet customizado) */
.leaflet-tooltip.cov-tip { background: transparent; border: none; box-shadow: none; padding: 0; white-space: normal; }
.leaflet-tooltip.cov-tip::before { display: none; }
.cov-card {
  width: 212px;
  background: linear-gradient(180deg, rgba(13, 32, 56, .98), rgba(7, 18, 38, .98));
  border: 1px solid rgba(54, 181, 240, .45); border-radius: 12px;
  padding: 12px 14px; color: #fff; box-shadow: 0 14px 34px rgba(0, 0, 0, .55);
}
.cov-card__ok { color: #5ee08a; font-weight: 700; font-size: .82rem; margin-bottom: 6px; }
.cov-card__nome { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 7px; }
.cov-card__inc { font-size: .74rem; color: rgba(255, 255, 255, .6); margin-bottom: 9px; line-height: 1.45; }
.cov-card__inc b { color: rgba(255, 255, 255, .85); font-weight: 600; }
.cov-card__svc { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.cov-card__svc li { position: relative; padding-left: 15px; font-size: .82rem; color: rgba(255, 255, 255, .86); }
.cov-card__svc li::before { content: "›"; position: absolute; left: 0; color: #36b5f0; font-weight: 700; }

/* legenda */
.cov-legend {
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center;
  margin-top: 16px; font-size: .88rem; color: rgba(255, 255, 255, .8);
}
.cov-legend span { display: inline-flex; align-items: center; gap: 8px; }
.cov-leg-dot { width: 12px; height: 12px; border-radius: 50%; background: #36b5f0; border: 2px solid #fff; box-shadow: 0 0 6px rgba(54,181,240,.9); }
.cov-leg-line { width: 22px; height: 3px; border-radius: 2px; background: #8fe0ff; box-shadow: 0 0 5px rgba(28,156,229,.8); }
.cov-leg-sub { width: 22px; height: 3px; border-radius: 2px; background: #5fe9da; box-shadow: 0 0 5px rgba(21,201,182,.85); }
.cov-leg-splice { width: 13px; height: 13px; border-radius: 3px; background: rgba(8,18,38,.94); border: 2px solid #cfefff; box-shadow: 0 0 5px rgba(120,220,255,.7); }
.cov-leg-dc { width: 12px; height: 12px; border-radius: 50%; background: #ff7a00; border: 2px solid #fff; box-shadow: 0 0 6px rgba(255,122,0,.9); }

/* data centers — mesma bolinha do mapa, em laranja */
.cov-pt__dot--dc {
  background: #ff7a00;
  box-shadow: 0 0 8px rgba(255, 122, 0, .95);
  animation-name: covpulse-o;
}
@keyframes covpulse-o {
  0% { box-shadow: 0 0 8px rgba(255,122,0,.95), 0 0 0 0 rgba(255,122,0,.55); }
  70% { box-shadow: 0 0 8px rgba(255,122,0,.95), 0 0 0 15px rgba(255,122,0,0); }
  100% { box-shadow: 0 0 8px rgba(255,122,0,.95), 0 0 0 0 rgba(255,122,0,0); }
}
/* data center ativo: mantém laranja (mais forte), não amarelo */
.cov-pt.cov-dc.active .cov-pt__dot {
  background: #ff8800; transform: scale(1.3);
  animation: covpulse-o 1.2s infinite;
}
.leaflet-tooltip.cov-dc-tip {
  background: rgba(8, 18, 38, .94); border: 1px solid rgba(255, 136, 0, .55);
  border-radius: 8px; padding: 5px 10px; color: #fff; box-shadow: 0 8px 20px rgba(0, 0, 0, .5);
}
.leaflet-tooltip.cov-dc-tip::before { display: none; }
.cov-dc-tip b { display: block; font-family: var(--font-display); font-weight: 700; font-size: .8rem; }
.cov-dc-tip small { display: block; font-size: .68rem; color: rgba(255, 255, 255, .7); }

@media (max-width: 560px) { #cov-map { height: 420px; } }

@media (prefers-reduced-motion: reduce) {
  .leaflet-overlay-pane path.fiber-flow { animation: none !important; }
  .cov-pt__dot { animation: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none !important; }
  .tvframe__play { animation: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .planx::before, .planx--reco::after { animation: none !important; }
}

/* Acessibilidade: desliga animações decorativas com preferência reduzida */
@media (prefers-reduced-motion: reduce) {
  .pulse-dot, .latency-bars span, .latency-card__route .line { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

