/* ============================================================
   ClickRC Net — Sistema visual
   Tech/mono • Laranja (#FF6B00) • Branco quente • Preto
   As fontes (Space Grotesk + IBM Plex Mono) são carregadas
   via wp_enqueue_style em functions.php.
   ============================================================ */

:root {
  /* Laranjas */
  --orange:      #FF6B00;
  --orange-500:  #FF7E1A;
  --orange-400:  #FF9540;
  --orange-300:  #FFB575;
  --orange-700:  #E25400;
  --orange-800:  #C2470A;
  --orange-50:   #FFF5EC;
  --orange-100:  #FFE7D4;

  /* Neutros */
  --ink:    #141417;
  --ink-2:  #1d1d22;
  --ink-3:  #2a2a30;
  --white:  #ffffff;
  --paper:  #FAFAF7;
  --paper-2:#F4F3EF;
  --muted:  #6A6A70;
  --muted-2:#9A9AA0;
  --line:   #ECEAE6;
  --line-2: #E0DED8;

  /* Gradientes */
  --grad-orange: linear-gradient(135deg, #FF8A1A 0%, #FF5A00 100%);
  --grad-orange-soft: linear-gradient(135deg, #FFF7EF 0%, #FFEEDD 100%);

  /* Sombras */
  --sh-sm: 0 1px 2px rgba(20,20,23,.05), 0 1px 3px rgba(20,20,23,.04);
  --sh-md: 0 6px 20px -6px rgba(20,20,23,.10), 0 2px 6px rgba(20,20,23,.05);
  --sh-lg: 0 24px 60px -16px rgba(20,20,23,.22);
  --sh-orange: 0 14px 34px -10px rgba(255,107,0,.5);

  /* Raios */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --container: 1200px;
  --gutter: 24px;
}

* { box-sizing: border-box; }

svg.ic { fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* Mapa: cor dos nós por status */
.cov-node[data-status="served"] circle.core { fill: var(--orange); }
.cov-node[data-status="expand"] circle.core { fill: #F2A900; }
.cov-node[data-status="fiber"]  circle.core { fill: #22A86A; }
.cov-node[data-hub="true"]      circle.core { fill: var(--orange); stroke: #fff; stroke-width: 3; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Util ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 9vw, 132px); position: relative; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--white); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--orange);
  display: inline-block;
}
.eyebrow--center::before { display: none; }

.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(30px, 4.4vw, 52px);
  margin-top: 18px;
  text-wrap: balance;
}
.section-sub {
  margin-top: 18px;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--muted);
  text-wrap: pretty;
  max-width: 60ch;
}
.section-head--center .section-sub { margin-inline: auto; }
.section--ink .section-sub { color: rgba(255,255,255,.66); }

/* ---------- Botões ---------- */
.btn {
  --bg: var(--orange);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .25s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-orange); box-shadow: var(--sh-orange); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(255,107,0,.6); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: var(--ink-3); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--whats { background: #1FAF54; color: #fff; }
.btn--whats:hover { transform: translateY(-2px); background: #1c9d4c; box-shadow: 0 14px 30px -12px rgba(31,175,84,.6); }
.btn--on-ink { background: #fff; color: var(--ink); }
.btn--on-ink:hover { transform: translateY(-2px); }
.btn--ghost-ink { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost-ink:hover { border-color: #fff; transform: translateY(-2px); }
.btn--sm { padding: 11px 18px; font-size: 13px; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: var(--sh-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad-orange);
  display: grid; place-items: center;
  box-shadow: var(--sh-orange);
  position: relative; flex: none;
}
.brand__mark svg { width: 22px; height: 22px; color: #fff; }
.brand__name { font-size: 20px; letter-spacing: -0.02em; }
.brand__name b { color: var(--orange); }
.header.is-stuck .brand__name,
.header.is-stuck .nav__link { color: var(--ink); }

.nav__list { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; padding: 0; }
.nav__link,
.nav .nav__list a {
  font-family: var(--font-mono);
  font-size: 13.5px;
  padding: 9px 14px;
  border-radius: var(--r-pill);
  color: var(--ink);
  display: inline-block;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav__link:hover,
.nav .nav__list a:hover { color: var(--orange); background: var(--orange-50); }
.header:not(.is-stuck) .nav .nav__list a { color: #fff; }
.header:not(.is-stuck) .nav .nav__list a:hover { background: rgba(255,255,255,.12); color: #fff; }
.header.is-stuck .nav .nav__list a { color: var(--ink); }

/* Hero é escuro: links claros até travar */
.header:not(.is-stuck) .brand__name,
.header:not(.is-stuck) .nav__link { color: #fff; }
.header:not(.is-stuck) .nav__link:hover { background: rgba(255,255,255,.12); color: #fff; }
.header:not(.is-stuck) .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.header:not(.is-stuck) .btn--ghost:hover { border-color: #fff; }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-2);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .2s; }
.header:not(.is-stuck) .menu-toggle { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
.header:not(.is-stuck) .menu-toggle span { background: #fff; }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 76px 0 auto 0; z-index: 99;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  padding: 18px var(--gutter) 28px;
  display: none;
  flex-direction: column; gap: 4px;
  transform: translateY(-12px); opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
}
body.menu-open .mobile-nav { transform: translateY(0); opacity: 1; }
.mobile-nav a.m-link {
  font-family: var(--font-mono); font-size: 15px;
  padding: 14px 8px; border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: radial-gradient(120% 90% at 85% -10%, #2a1a10 0%, #141417 55%, #0e0e10 100%);
  color: #fff;
  padding-top: 150px;
  padding-bottom: clamp(80px, 9vw, 130px);
  overflow: hidden;
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 78%);
  pointer-events: none;
}
.hero__glow {
  position: absolute; top: -180px; right: -120px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.42) 0%, rgba(255,107,0,0) 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 15px; border-radius: var(--r-pill);
  color: rgba(255,255,255,.82);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,0,.22); }
.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  margin-top: 26px;
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--orange); }
.hero__sub {
  margin-top: 24px;
  font-size: clamp(17px, 1.5vw, 21px);
  color: rgba(255,255,255,.7);
  max-width: 30ch;
  text-wrap: pretty;
}
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 36px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero__trust-item { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 9px; }
.hero__trust-item svg { width: 16px; height: 16px; color: var(--orange-400); }

/* Visual do hero */
.hero__visual { position: relative; }
.hero__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,.1);
}
.hero__media image-slot { width: 100%; height: 100%; }
.hero__waves {
  position: absolute; z-index: 3;
  top: 26%; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.hero__waves span {
  position: absolute; left: 50%; top: 50%;
  border: 1.5px solid rgba(255,138,26,.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3.4s ease-out infinite;
}
.hero__waves span:nth-child(1) { width: 70px; height: 70px; }
.hero__waves span:nth-child(2) { width: 150px; height: 150px; animation-delay: .5s; }
.hero__waves span:nth-child(3) { width: 240px; height: 240px; animation-delay: 1s; }
@keyframes pulse { 0%{opacity:.0; transform:translate(-50%,-50%) scale(.6);} 30%{opacity:.9;} 100%{opacity:0; transform:translate(-50%,-50%) scale(1.15);} }
@media (prefers-reduced-motion: reduce){ .hero__waves span{ animation: none; opacity:.5; } }

.hero__chip {
  position: absolute; z-index: 4;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 13px;
  backdrop-filter: blur(6px);
}
.hero__chip .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--orange-50); color: var(--orange-700); display: grid; place-items: center; flex: none; }
.hero__chip .ic svg { width: 21px; height: 21px; }
.hero__chip .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.hero__chip .v { font-size: 18px; font-weight: 700; }
.hero__chip--tl { top: 22px; left: -28px; }
.hero__chip--br { bottom: 30px; right: -26px; }

/* ---------- HERO · variante RADAR (sinal) ---------- */
.hero--radar {
  background: radial-gradient(120% 100% at 50% 20%, #2a1a10 0%, #141417 52%, #0b0b0d 100%);
  min-height: clamp(660px, 92vh, 880px);
  display: grid;
  align-items: center;
  text-align: center;
  padding-top: 76px;
}
.hero__rings {
  position: absolute; top: 50%; left: 50%;
  width: 1px; height: 1px; transform: translate(-50%, -50%);
  pointer-events: none; z-index: 1;
}
.hero__rings span {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  border: 1px solid rgba(255,138,26,.22); border-radius: 50%;
  animation: radarPulse 4s ease-out infinite;
}
.hero__rings span:nth-child(1) { width: 320px; height: 320px; }
.hero__rings span:nth-child(2) { width: 560px; height: 560px; animation-delay: .7s; }
.hero__rings span:nth-child(3) { width: 840px; height: 840px; animation-delay: 1.4s; }
.hero__rings span:nth-child(4) { width: 1180px; height: 1180px; animation-delay: 2.1s; }
@keyframes radarPulse { 0%{opacity:0;} 16%{opacity:.85;} 100%{opacity:0; transform:translate(-50%,-50%) scale(1.05);} }
@media (prefers-reduced-motion: reduce){ .hero__rings span{ animation:none; opacity:.28; } }

.hero__nodes { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero__node {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 0 5px rgba(255,107,0,.16);
  animation: nodeBlink 3.6s ease-in-out infinite;
}
.hero__node:nth-child(2){ animation-delay:.4s; } .hero__node:nth-child(3){ animation-delay:.9s; }
.hero__node:nth-child(4){ animation-delay:1.3s; } .hero__node:nth-child(5){ animation-delay:.6s; }
.hero__node:nth-child(6){ animation-delay:1.7s; } .hero__node:nth-child(7){ animation-delay:1.1s; }
@keyframes nodeBlink { 0%,100%{ opacity:.45; } 50%{ opacity:1; } }
@media (prefers-reduced-motion: reduce){ .hero__node{ animation:none; } }

.hero__coords {
  position: absolute; z-index: 3;
  font-family: var(--font-mono); font-size: 12px; line-height: 1.7;
  color: rgba(255,138,26,.5); letter-spacing: .05em;
}
.hero__coords--tl { top: 104px; left: var(--gutter); }
.hero__coords--tr { top: 104px; right: var(--gutter); text-align: right; }
.hero__coords--bl { bottom: 34px; left: var(--gutter); }
.hero__coords--br { bottom: 34px; right: var(--gutter); text-align: right; }

.hero__radar-inner {
  position: relative; z-index: 5;
  display: flex; flex-direction: column; align-items: center;
}
.hero--radar .hero__badge { background: rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.85); }
.hero--radar h1 { font-size: clamp(40px, 6.4vw, 76px); margin-top: 26px; max-width: 16ch; text-wrap: balance; }
.hero--radar .hero__sub { margin-top: 22px; max-width: 48ch; }
.hero--radar .hero__cta { justify-content: center; }
.hero--radar .hero__trust { justify-content: center; margin-top: 40px; }

@media (max-width: 720px){
  .hero__coords { display: none; }
  .hero__rings span:nth-child(4){ display:none; }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  margin-top: -56px;
  position: relative; z-index: 5;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px;
  box-shadow: var(--sh-lg);
}
.stat { padding: 26px 24px; border-radius: var(--r); transition: background .25s; }
.stat:hover { background: var(--orange-50); }
.stat__num { font-size: clamp(34px, 3.6vw, 46px); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); display: flex; align-items: baseline; gap: 2px; }
.stat__num .suf { color: var(--orange); }
.stat__label { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ============================================================
   SOBRE + TIMELINE
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.about__media { position: relative; }
.about__media image-slot { width: 100%; aspect-ratio: 5/6; }
.about__media .tag {
  position: absolute; bottom: 18px; left: 18px;
  background: #fff; box-shadow: var(--sh-md);
  border-radius: 14px; padding: 12px 16px;
  font-family: var(--font-mono); font-size: 12.5px;
  display: flex; align-items: center; gap: 10px;
}
.about__media .tag .dot { width: 9px; height: 9px; border-radius: 50%; background: #1FAF54; }

.timeline { margin-top: 40px; display: grid; gap: 0; }
.tl-item { position: relative; padding: 0 0 30px 46px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: 13px; top: 6px; bottom: -6px;
  width: 2px; background: var(--line-2);
}
.tl-item:last-child::before { display: none; }
.tl-item .dot {
  position: absolute; left: 4px; top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 2px solid var(--orange);
  display: grid; place-items: center;
}
.tl-item .dot i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); display: block; }
.tl-item.is-now .dot { background: var(--grad-orange); border-color: transparent; box-shadow: var(--sh-orange); }
.tl-item.is-now .dot i { background: #fff; }
.tl-year { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .1em; color: var(--orange); text-transform: uppercase; }
.tl-title { font-size: 21px; margin-top: 5px; }
.tl-desc { color: var(--muted); margin-top: 7px; font-size: 16px; text-wrap: pretty; }

/* ============================================================
   TECNOLOGIAS
   ============================================================ */
.tech__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.tech-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.tech-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: transparent; }
.tech-card--fiber { background: var(--ink); color: #fff; border-color: transparent; }
.tech-card__halo { position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,0,.16), transparent 65%); pointer-events: none; }
.tech-card__ic { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: var(--orange-50); color: var(--orange-700); }
.tech-card--fiber .tech-card__ic { background: rgba(255,107,0,.16); color: var(--orange-400); }
.tech-card__ic svg { width: 28px; height: 28px; }
.tech-card__badge {
  position: absolute; top: 32px; right: 32px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
}
.tech-card__badge--live { background: var(--orange-50); color: var(--orange-700); }
.tech-card__badge--soon { background: rgba(255,255,255,.1); color: var(--orange-300); border: 1px solid rgba(255,107,0,.3); }
.tech-card h3 { font-size: 27px; margin-top: 22px; }
.tech-card > p { margin-top: 12px; color: var(--muted); font-size: 16px; }
.tech-card--fiber > p { color: rgba(255,255,255,.66); }
.tech-card ul { margin-top: 24px; display: grid; gap: 12px; }
.tech-card li { display: flex; align-items: center; gap: 12px; font-size: 16px; }
.tech-card li svg { width: 20px; height: 20px; color: var(--orange); flex: none; }
.tech-card--fiber li svg { color: var(--orange-400); }
.tech-note {
  margin-top: 32px; text-align: center;
  font-family: var(--font-mono); font-size: 13.5px; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.tech-note svg { width: 18px; height: 18px; color: var(--orange); }

/* ============================================================
   PLANOS
   ============================================================ */
.plans__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; align-items: stretch; }
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px 32px;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.plan--featured { border-color: var(--orange); box-shadow: var(--sh-orange); }
.plan--featured::after {
  content: "Mais popular";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-orange); color: #fff;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill); white-space: nowrap;
}
.plan__name { font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.plan__speed { margin-top: 14px; display: flex; align-items: baseline; gap: 6px; }
.plan__speed b { font-size: 56px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.plan__speed .unit { font-family: var(--font-mono); font-size: 18px; color: var(--orange); font-weight: 600; }
.plan__tag { font-size: 14.5px; color: var(--muted); margin-top: 8px; }
.plan__div { height: 1px; background: var(--line); margin: 24px 0; }
.plan__feats { display: grid; gap: 13px; }
.plan__feats li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--ink-2); }
.plan__feats li svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.plan .btn { margin-top: auto; }
.plan__cta-wrap { margin-top: 26px; }
.plans__legend { margin-top: 26px; text-align: center; font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.plans__legend b { color: var(--orange); }

/* ============================================================
   COBERTURA / MAPA
   ============================================================ */
.coverage__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.coverage__filters { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.cov-filter {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: var(--r);
  border: 1px solid var(--line); background: #fff;
  cursor: pointer; text-align: left; width: 100%;
  font-family: inherit; transition: border-color .2s, background .2s, transform .2s;
}
.cov-filter:hover { transform: translateX(4px); }
.cov-filter.is-active { border-color: currentColor; background: var(--orange-50); }
.cov-filter .swatch { width: 14px; height: 14px; border-radius: 50%; flex: none; }
.cov-filter .lbl { font-weight: 600; font-size: 16px; color: var(--ink); }
.cov-filter .cnt { margin-left: auto; font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.cov-status-served { color: var(--orange-700); }
.cov-status-served .swatch { background: var(--orange); }
.cov-status-expand { color: #C28A00; }
.cov-status-expand .swatch { background: #F2A900; }
.cov-status-fiber { color: #1F8A5B; }
.cov-status-fiber .swatch { background: #22A86A; }

.cov-map {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  aspect-ratio: 11/9;
  overflow: hidden;
}
.cov-map__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px; opacity: .5;
}
.cov-map svg { position: relative; width: 100%; height: 100%; display: block; overflow: visible; }
.cov-node { cursor: default; transition: opacity .3s; }
.cov-node circle.core { transition: r .25s, fill .25s; }
.cov-node text { font-family: var(--font-mono); font-size: 11px; fill: var(--ink); }
.cov-node.is-dim { opacity: .22; }
.cov-link { stroke: var(--line-2); stroke-width: 1.5; transition: opacity .3s, stroke .3s; }
.cov-link.is-fiber { stroke: #22A86A; stroke-width: 2; stroke-dasharray: 5 5; }
.cov-link.is-dim { opacity: .15; }
.cov-map__legend {
  position: absolute; left: 22px; bottom: 18px;
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
}
.cov-map__legend span { display: inline-flex; align-items: center; gap: 6px; }
.cov-map__legend i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.cov-hub-label {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 6px 12px; color: var(--muted);
}

/* ============================================================
   DIFERENCIAIS
   ============================================================ */
.feats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px;
  transition: transform .3s, box-shadow .3s;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.feat__ic { width: 52px; height: 52px; border-radius: 14px; background: var(--orange-50); color: var(--orange-700); display: grid; place-items: center; }
.feat__ic svg { width: 25px; height: 25px; }
.feat h3 { font-size: 19px; margin-top: 20px; }
.feat p { color: var(--muted); margin-top: 9px; font-size: 15.5px; text-wrap: pretty; }

/* ============================================================
   SUPORTE (fluxo)
   ============================================================ */
.support__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px,5vw,72px); align-items: center; }
.flow { display: grid; gap: 14px; margin-top: 8px; }
.flow-step {
  display: flex; align-items: center; gap: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 18px 22px;
  position: relative;
  transition: border-color .3s, background .3s, transform .3s;
}
.flow-step:hover { border-color: rgba(255,107,0,.5); background: rgba(255,107,0,.06); transform: translateX(5px); }
.flow-step__n {
  width: 42px; height: 42px; flex: none; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 16px;
  background: rgba(255,107,0,.16); color: var(--orange-400);
}
.flow-step:last-child .flow-step__n { background: var(--grad-orange); color: #fff; }
.flow-step__t { font-size: 17px; font-weight: 600; display: block; }
.flow-step__d { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 3px; font-family: var(--font-mono); display: block; }
.flow-step__ic { margin-left: auto; color: rgba(255,255,255,.4); }
.flow-step__ic svg { width: 22px; height: 22px; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testi__viewport { overflow: hidden; margin-top: 48px; }
.testi__track { display: flex; transition: transform .55s cubic-bezier(.45,.05,.2,1); }
.testi-card { flex: 0 0 100%; padding: 0 8px; }
.testi-card__inner {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(32px, 4vw, 56px);
  display: grid; grid-template-columns: auto 1fr; gap: clamp(28px,4vw,48px); align-items: center;
  box-shadow: var(--sh-md);
}
.testi-card__media { width: 168px; }
.testi-card__media image-slot { width: 168px; height: 168px; }
.testi-card__quote { font-size: clamp(19px, 1.9vw, 25px); line-height: 1.45; letter-spacing: -0.01em; text-wrap: pretty; }
.testi-card__stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--orange); }
.testi-card__stars svg { width: 19px; height: 19px; }
.testi-card__who { margin-top: 22px; font-family: var(--font-mono); font-size: 14px; }
.testi-card__who b { font-weight: 600; }
.testi-card__who span { color: var(--muted); }
.testi__nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.testi__dots { display: flex; gap: 8px; }
.testi__dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line-2); cursor: pointer; padding: 0; transition: width .3s, background .3s; }
.testi__dots button.is-active { width: 26px; border-radius: 6px; background: var(--orange); }
.testi__arrow {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line-2);
  background: #fff; cursor: pointer; display: grid; place-items: center; transition: border-color .2s, transform .2s, background .2s;
}
.testi__arrow:hover { border-color: var(--ink); transform: scale(1.06); }
.testi__arrow svg { width: 20px; height: 20px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { position: relative; overflow: hidden; }
.cta-final__box {
  position: relative;
  background: var(--grad-orange);
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 88px);
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.cta-final__box::before {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(circle at 18% 20%, rgba(255,255,255,.22), transparent 35%),
                    radial-gradient(circle at 85% 90%, rgba(0,0,0,.16), transparent 45%);
  pointer-events: none;
}
.cta-final__box .eyebrow { color: rgba(255,255,255,.85); }
.cta-final__box .eyebrow::before { background: rgba(255,255,255,.7); }
.cta-final h2 { position: relative; font-size: clamp(30px, 4.6vw, 56px); text-wrap: balance; }
.cta-final p { position: relative; margin-top: 18px; font-size: 19px; color: rgba(255,255,255,.9); max-width: 56ch; margin-inline: auto; }
.cta-final__cta { position: relative; margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.66); padding-block: 72px 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand__name { color: #fff; }
.footer__about { margin-top: 20px; font-size: 15px; max-width: 32ch; line-height: 1.6; }
.footer__cnpj { margin-top: 16px; font-family: var(--font-mono); font-size: 12.5px; color: var(--muted-2); }
.footer h4 { color: #fff; font-size: 13px; font-family: var(--font-mono); letter-spacing: .12em; text-transform: uppercase; font-weight: 500; }
.footer__col ul { margin-top: 18px; display: grid; gap: 12px; }
.footer__col a, .footer__col li { font-size: 15px; transition: color .2s; }
.footer__col a:hover { color: var(--orange); }
.footer__contact li { display: flex; align-items: flex-start; gap: 11px; }
.footer__contact svg { width: 18px; height: 18px; color: var(--orange); flex: none; margin-top: 2px; }
.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__socials a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; transition: background .2s, border-color .2s, transform .2s; }
.footer__socials a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.footer__socials svg { width: 19px; height: 19px; color: #fff; }
.footer__bottom { margin-top: 52px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12.5px; color: var(--muted-2); }

/* Floating WhatsApp */
.fab-whats {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #1FAF54; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(31,175,84,.6);
  transition: transform .25s;
}
.fab-whats:hover { transform: scale(1.08); }
.fab-whats svg { width: 30px; height: 30px; }
.fab-whats::after {
  content:""; position:absolute; inset:0; border-radius:50%;
  border: 2px solid #1FAF54; animation: ring 2.4s ease-out infinite;
}
@keyframes ring { 0%{ transform:scale(1); opacity:.7; } 100%{ transform:scale(1.5); opacity:0; } }
@media (prefers-reduced-motion: reduce){ .fab-whats::after{ animation:none; opacity:0; } }

/* ============================================================
   ANIMAÇÃO DE TORRES (SOBRE)
   ============================================================ */
.about__animation { position: relative; }
.towers-svg { width: 100%; height: auto; display: block; }
.tower-group { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.tower-group[data-stage="0"] { transition-delay: .1s; }
.tower-group[data-stage="1"] { transition-delay: .4s; }
.tower-group[data-stage="2"] { transition-delay: .7s; }
.about__media.is-visible .tower-group { opacity: 1; transform: none; }
.fiber-line { stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 1.2s ease-out, opacity 1s ease-out; }
.about__media.is-visible .fiber-line { stroke-dashoffset: 0; }
.about__media.is-visible .fiber-line.is-active { opacity: 1 !important; }
.fiber-node { transition: opacity .6s ease, r .4s ease; }
.about__media.is-visible .fiber-node { opacity: 1; r: 8px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  body.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
  body.js .reveal.is-in { opacity: 1; transform: none; }
  body.js .reveal-d1 { transition-delay: .08s; }
  body.js .reveal-d2 { transition-delay: .16s; }
  body.js .reveal-d3 { transition-delay: .24s; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1080px) {
  .plans__grid { grid-template-columns: repeat(2, 1fr); }
  .feats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .nav { display: none; }
  .header__actions .btn--ghost { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 440px; margin-inline: auto; width: 100%; }
  .hero__sub { max-width: 46ch; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .tech__grid, .coverage__grid, .support__grid { grid-template-columns: 1fr; }
  .tech__grid { gap: 20px; }
  .about__media, .coverage .cov-map { order: -1; }
  .testi-card__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .testi-card__media image-slot { width: 130px; height: 130px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding-block: 64px; }
  .hero__chip--tl { left: 8px; top: 12px; }
  .hero__chip--br { right: 8px; bottom: 16px; }
  .stats { margin-top: -40px; }
  .feats__grid { grid-template-columns: 1fr; }
  .plans__grid { grid-template-columns: 1fr; }
  .hero__cta .btn, .cta-final__cta .btn { flex: 1 1 auto; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .cov-node text { font-size: 13px; }
}

/* ============================================================
   COMPLEMENTOS — páginas internas, blog, busca, acessibilidade
   (mantém o sistema visual; não altera a landing page)
   ============================================================ */

/* Acessibilidade */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff;
  padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
  font-family: var(--font-mono); font-size: 13px;
}
.skip-link:focus { left: 0; }

/* O conteúdo interno começa abaixo do header fixo */
.page-home .site-content { padding-top: 0; }
body:not(.page-home) #main { padding-top: clamp(120px, 14vh, 180px); }

/* Container estreito para leitura */
.container--narrow { max-width: 820px; }

/* Cabeçalho de página */
.page-head { text-align: center; margin-bottom: 48px; }
.page-head .section-title span { color: var(--orange); }

/* Conteúdo de página/post */
.entry__head { margin-bottom: 28px; }
.entry__head .eyebrow { margin-bottom: 14px; }
.entry__thumb { margin: 0 0 32px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.entry__content { font-size: 17px; line-height: 1.75; color: var(--ink-2); }
.entry__content > * + * { margin-top: 1.2em; }
.entry__content h2 { font-size: 30px; margin-top: 1.6em; }
.entry__content h3 { font-size: 23px; margin-top: 1.4em; }
.entry__content a { color: var(--orange-700); text-decoration: underline; text-underline-offset: 3px; }
.entry__content a:hover { color: var(--orange); }
.entry__content img { border-radius: var(--r); margin-block: 1.4em; }
.entry__content blockquote {
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 24px; margin-left: 0; color: var(--muted);
  font-size: 20px; font-style: italic;
}
.entry__content ul, .entry__content ol { padding-left: 1.4em; }
.entry__content ul { list-style: disc; }
.entry__content ol { list-style: decimal; }
.entry__content li + li { margin-top: .5em; }
.entry__content code {
  font-family: var(--font-mono); font-size: .9em;
  background: var(--paper-2); padding: 2px 7px; border-radius: 6px;
}
.entry__content pre {
  background: var(--ink); color: #fff;
  padding: 22px; border-radius: var(--r); overflow-x: auto;
  font-family: var(--font-mono); font-size: 14px;
}
.entry__foot { margin-top: 40px; }
.entry__tags a {
  display: inline-block; font-family: var(--font-mono); font-size: 12px;
  background: var(--orange-50); color: var(--orange-700);
  padding: 5px 12px; border-radius: var(--r-pill); margin: 4px 4px 0 0;
}

/* Listagem de posts */
.post-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.post-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.post-card__thumb { display: block; aspect-ratio: 16/10; overflow: hidden; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.post-card__title { font-size: 22px; line-height: 1.2; }
.post-card__title a:hover { color: var(--orange); }
.post-card__excerpt { color: var(--muted); font-size: 15.5px; }
.post-card__body .btn { margin-top: auto; align-self: flex-start; }
.post-card--row { flex-direction: row; }
@media (max-width: 700px) { .post-list { grid-template-columns: 1fr; } }

/* Paginação */
.pagination, .nav-links {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-top: 56px; font-family: var(--font-mono); font-size: 14px;
}
.pagination .page-numbers, .nav-links a, .nav-links span {
  display: inline-grid; place-items: center; min-width: 44px; height: 44px;
  padding: 0 14px; border-radius: var(--r-pill);
  border: 1px solid var(--line-2); background: #fff; transition: all .2s;
}
.pagination .page-numbers.current { background: var(--grad-orange); color: #fff; border-color: transparent; }
.pagination a.page-numbers:hover { border-color: var(--ink); }

/* Navegação entre posts */
.post-navigation { margin-top: 48px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.post-navigation a { color: var(--orange-700); font-family: var(--font-mono); font-size: 14px; }
.post-navigation a:hover { color: var(--orange); }

/* Formulário de busca */
.search-form { display: flex; gap: 10px; }
.search-field {
  flex: 1; padding: 14px 18px; font-size: 15px;
  border: 1px solid var(--line-2); border-radius: var(--r-pill);
  font-family: var(--font-display); background: #fff;
}
.search-field:focus { outline: none; border-color: var(--orange); }

/* Comentários */
.comments { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line); }
.comments__title { font-size: 26px; margin-bottom: 28px; }
.comments__list { display: grid; gap: 24px; }
.comments__list .children { margin-top: 24px; padding-left: 28px; display: grid; gap: 24px; }
.comments .comment-body { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.comments .comment-author { font-weight: 600; }
.comment-respond { margin-top: 40px; }
.comment-form input[type=text], .comment-form input[type=email],
.comment-form input[type=url], .comment-form textarea {
  width: 100%; padding: 14px 16px; margin-top: 6px;
  border: 1px solid var(--line-2); border-radius: var(--r-sm);
  font-family: var(--font-display); font-size: 15px;
}
.comment-form p { margin-bottom: 18px; }
.comment-form textarea:focus, .comment-form input:focus { outline: none; border-color: var(--orange); }

/* WordPress core helpers */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin-inline: auto; }
.wp-caption-text, .gallery-caption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 8px; }
.sticky .post-card { border-color: var(--orange); }
.bypostauthor { } /* requerido pelos testes de tema */


/* WhatsApp usa preenchimento (fill). Alta especificidade + fill fixo nos
   contextos garante que nenhum reset/plugin com svg{fill:none} apague. */
svg.wa-ic path { fill: currentColor !important; stroke: none !important; }
.btn--whats svg.wa-ic path,
.fab-whats svg.wa-ic path,
.footer__socials svg.wa-ic path { fill: #fff !important; }