/* ═══════════════════════════════════════════════
   STYLE.CSS — Simple Net
   ═══════════════════════════════════════════════ */

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

:root {
  --blue:   #0055FF;
  --teal:   #00F0A0;
  --cyan:   #00D2FF;
  --dark:   #0A192F;
  --dark2:  #0d2240;
  --dark3:  #071525;
  --text:   #dde6ff;
  --muted:  rgba(221,230,255,.55);
  --border: rgba(0,85,255,.18);
  --bd2:    rgba(255,255,255,.07);
  --card:   rgba(13,34,64,.8);
  --grad:   linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  --r:      14px;
  --r-sm:   8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body:not(.loaded) { overflow: hidden; }

a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark3); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }


/* ════════════════════════════════
   LOADER
════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .7s ease;
}

#loader.hide {
  opacity: 0;
  pointer-events: none;
}

.ldr-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Foguete silhueta no loader */
.ldr-rocket-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  opacity: 0;
  animation: ldrRise .9s cubic-bezier(.22,1,.36,1) .1s forwards;
}

.ldr-rocket-svg {
  width: 54px;
  height: auto;
  color: rgba(255,255,255,.18);
  filter: drop-shadow(0 0 18px rgba(0,210,255,.5)) drop-shadow(0 0 40px rgba(0,85,255,.3));
  animation: rocketHover 3s ease-in-out infinite;
}

@keyframes rocketHover {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(-10px); }
}

@keyframes ldrRise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.ldr-brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text);
  opacity: 0;
  margin-bottom: 14px;
  animation: ldrFadeIn .5s ease .5s forwards;
}

.ldr-brand em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes ldrFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Cabo de fibra */
.ldr-fiber {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: ldrFadeIn .5s ease .65s forwards;
}

.ldr-track {
  position: relative;
  width: 240px;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
}

.ldr-track::before,
.ldr-track::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.ldr-track::before { left: -9px; }
.ldr-track::after  { right: -9px; }

.ldr-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
}

.ldr-dot {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -80%) rotate(90deg);
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(0,210,255,1));
  line-height: 0;
}

.ldr-rocket-tip {
  width: 13px;
  height: auto;
}

.ldr-pct {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--muted);
}


/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
}

.navbar.scrolled {
  background: rgba(7,21,37,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bd2);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img-wrap {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #fff;
}

.logo-text em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(0,85,255,.12);
}

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .83rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}

.nav-phone:hover { color: #fff; }

.btn-portal {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .83rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0,85,255,.2);
  border: 1px solid rgba(0,85,255,.35);
  padding: 7px 16px;
  border-radius: 8px;
  transition: background .2s, border-color .2s;
}

.btn-portal:hover {
  background: rgba(0,85,255,.35);
  border-color: rgba(0,85,255,.6);
}

/* Link "Área do Cliente" dentro do nav — só aparece no mobile */
.nav-link-portal {
  display: none;
  align-items: center;
  gap: 7px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 60px;
}

#fiberCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  opacity: .5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 50%, rgba(0,85,255,.08) 0%, transparent 70%),
              linear-gradient(180deg, transparent 60%, var(--dark) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  flex: 1;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,210,255,.08);
  border: 1px solid rgba(0,210,255,.2);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

/* Title */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-subtitle strong { color: var(--text); font-weight: 700; }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.stat-item { display: flex; flex-direction: column; }

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
  margin-left: 2px;
}

.stat-label {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--bd2);
}

/* CTAs */
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  padding: 13px 26px;
  border-radius: 10px;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: #1a6bff;
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--bd2);
  padding: 13px 24px;
  border-radius: 10px;
  transition: border-color .2s, background .2s, transform .15s;
}

.btn-secondary:hover {
  border-color: rgba(0,85,255,.4);
  background: rgba(13,34,64,.95);
  transform: translateY(-1px);
}

/* Mascote hero — cobre toda a seção */
.hero-graphic {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.mascote-wrap {
  position: absolute;
  inset: 0;
}

.mascote-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scaleX(-1);
}

/* Overlay — garante legibilidade do texto sobre o mascote */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(10,25,47,.92) 0%, rgba(10,25,47,.7) 40%, rgba(10,25,47,.1) 70%, transparent 100%),
    linear-gradient(to bottom, rgba(7,21,37,.6) 0%, transparent 20%),
    linear-gradient(to top,    rgba(10,25,47,.8) 0%, transparent 30%);
  z-index: 2;
  pointer-events: none;
}

.mascote-shadow { display: none; }

@keyframes mascoteShadow {
  0%, 100% { transform: scaleX(1);   opacity: .5; }
  50%       { transform: scaleX(.7); opacity: .3; }
}

/* Texto centralizado com espaço para o mascote à direita */
.hero-content {
  z-index: 3;
  position: relative;
  max-width: 600px;
  width: 100%;
  margin-right: 30%;
}
.scroll-hint { z-index: 3; }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .45;
  transition: opacity .2s;
}

.scroll-hint:hover { opacity: .8; }

.scroll-chevron {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg);
  animation: chevronBounce 2s ease-in-out infinite;
}

@keyframes chevronBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(4px); }
}


/* ════════════════════════════════
   TRUST BAR
════════════════════════════════ */
.trust-bar {
  border-top: 1px solid var(--bd2);
  border-bottom: 1px solid var(--bd2);
  background: rgba(7,21,37,.55);
  padding: 20px 0;
}

/* Marquee — sempre visível, grid estático oculto */
.trust-marquee-wrap {
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.trust-bar .container { display: none; }

.trust-marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
}

.trust-marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: .82rem;
  color: var(--muted);
  flex-shrink: 0;
}

.trust-marquee-item svg    { color: var(--cyan); flex-shrink: 0; }
.trust-marquee-item strong { color: var(--text); font-weight: 700; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
  padding: 4px 8px;
}

.trust-item svg {
  color: var(--cyan);
  flex-shrink: 0;
  opacity: .85;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.trust-text strong {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: .01em;
}

.trust-text span {
  font-size: .72rem;
  color: var(--muted);
  white-space: nowrap;
}

.trust-div {
  width: 1px;
  height: 32px;
  background: var(--bd2);
  flex-shrink: 0;
}


/* ════════════════════════════════
   SECTION HEADERS
════════════════════════════════ */
.sec-header {
  text-align: center;
  margin-bottom: 56px;
}

.sec-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,210,255,.08);
  border: 1px solid rgba(0,210,255,.18);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}

.sec-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.sec-header p,
.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ════════════════════════════════
   SEÇÕES CLARAS (fundo branco)
════════════════════════════════ */
.section-light {
  --text-l:   #0e1e3d;
  --muted-l:  #5a6a8a;
  --bd-l:     rgba(0,0,0,.08);
  --card-l:   #fff;
  background: #f4f7ff;
  color: var(--text-l);
}

.section-light .sec-tag {
  background: rgba(0,85,255,.08);
  border-color: rgba(0,85,255,.18);
  color: var(--blue);
}

.section-light .sec-header h2 { color: var(--text-l); }
.section-light .sec-header p  { color: var(--muted-l); }

/* cards claros */
.section-light .plano-card,
.section-light .vant-card,
.section-light .info-card {
  background: #fff;
  border-color: var(--bd-l);
  box-shadow: 0 2px 24px rgba(0,0,0,.05);
}

.section-light .plano-card:hover,
.section-light .vant-card:hover,
.section-light .info-card:hover {
  border-color: rgba(0,85,255,.25);
  box-shadow: 0 6px 32px rgba(0,85,255,.1);
}

.section-light .plano-hot {
  border-color: rgba(0,85,255,.3);
  background: #fff;
  box-shadow: 0 8px 40px rgba(0,85,255,.12);
}

.section-light .plano-name,
.section-light .speed-label,
.section-light .price-dec,
.section-light .price-cur { color: var(--muted-l); }

.section-light .speed-big,
.section-light .price-int,
.section-light .plano-list li,
.section-light .vant-card h3,
.section-light .vant-card p,
.section-light .plano-badge { color: var(--text-l); }

.section-light .plano-badge  { background: rgba(0,85,255,.07); border-color: rgba(0,85,255,.15); color: var(--blue); }
.section-light .badge-hot    { background: rgba(0,200,130,.08); border-color: rgba(0,200,130,.2); color: #00a876; }
.section-light .planos-note  { color: var(--muted-l); }
.section-light .planos-note svg { color: var(--blue); }

.section-light .plano-list li svg { color: var(--blue); }

.section-light .btn-plano {
  color: var(--text-l);
  background: rgba(0,85,255,.07);
  border-color: rgba(0,85,255,.2);
}

.section-light .btn-plano:hover {
  background: rgba(0,85,255,.14);
  border-color: rgba(0,85,255,.4);
}

.section-light .vant-icon {
  background: rgba(0,85,255,.08);
  border-color: rgba(0,85,255,.15);
  color: var(--blue);
}

.section-light .info-icon {
  background: rgba(0,85,255,.08);
  border-color: rgba(0,85,255,.15);
  color: var(--blue);
}

.section-light .info-card h4   { color: var(--muted-l); }
.section-light .info-card a,
.section-light .info-card span { color: var(--text-l); }

.section-light .contato-form {
  background: #fff;
  border-color: var(--bd-l);
  box-shadow: 0 2px 24px rgba(0,0,0,.05);
}

.section-light .contato-form h3 { color: var(--text-l); }
.section-light .form-group label { color: var(--muted-l); }

.section-light .form-group input,
.section-light .form-group select,
.section-light .form-group textarea {
  background: #f4f7ff;
  border-color: rgba(0,0,0,.1);
  color: var(--text-l);
}

.section-light .form-group input::placeholder,
.section-light .form-group textarea::placeholder { color: rgba(90,106,138,.4); }

.section-light .form-group input:focus,
.section-light .form-group select:focus,
.section-light .form-group textarea:focus { border-color: rgba(0,85,255,.4); }

.section-light .form-group select option { background: #fff; color: var(--text-l); }

.section-light .section-subtitle { color: var(--muted-l); }

/* ════════════════════════════════
   PLANOS
════════════════════════════════ */
.planos {
  padding: 100px 0;
  position: relative;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}

.plano-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--bd2);
  border-radius: var(--r);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .25s, transform .25s;
  overflow: hidden;
}

/* linha de acento no topo */
.plano-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: .35;
  border-radius: var(--r) var(--r) 0 0;
  transition: opacity .25s;
}

.plano-card:hover {
  border-color: rgba(0,85,255,.35);
  transform: translateY(-4px);
}

.plano-card:hover::before { opacity: .9; }

.plano-hot::before {
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  opacity: .7;
}

/* Hot card */
.plano-hot {
  border-color: rgba(0,85,255,.4);
  background: linear-gradient(160deg, rgba(0,85,255,.1), rgba(13,34,64,.9));
  margin-top: -10px;
}

.plano-hot:hover {
  border-color: rgba(0,85,255,.65);
}

.plano-glow-ring {
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r) + 1px);
  border: 1px solid rgba(0,85,255,.5);
  pointer-events: none;
}

.plano-badge {
  display: inline-flex;
  width: fit-content;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  background: rgba(0,85,255,.15);
  border: 1px solid rgba(0,85,255,.25);
  color: var(--cyan);
}

.badge-hot {
  background: rgba(0,240,160,.1);
  border-color: rgba(0,240,160,.25);
  color: var(--teal);
}

.badge-purple {
  background: rgba(0,85,255,.1);
  border-color: rgba(0,85,255,.2);
  color: var(--text);
}

/* substituído pelo acento no topo do card — ver .plano-card::before */
.plano-icon-wrap { display: none; }
.icon-hot        { display: none; }

.plano-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
}

.plano-speed-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.speed-big {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}

.speed-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.plano-price-wrap { border-top: 1px solid var(--bd2); padding-top: 18px; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.price-cur {
  font-size: .95rem;
  font-weight: 700;
  color: var(--muted);
  align-self: flex-start;
  margin-top: 4px;
}

.price-int {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}

.price-dec {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.price-dec small { font-size: .78rem; }

.price-consult-txt {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.plano-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plano-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  color: var(--muted);
}

.plano-list li svg { flex-shrink: 0; color: var(--teal); }

.btn-plano {
  display: block;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(0,85,255,.15);
  border: 1px solid rgba(0,85,255,.3);
  padding: 13px;
  border-radius: var(--r-sm);
  transition: background .2s, border-color .2s, transform .15s;
  margin-top: auto;
}

.btn-plano:hover {
  background: rgba(0,85,255,.28);
  border-color: rgba(0,85,255,.55);
  transform: translateY(-1px);
}

.btn-plano-hot {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.btn-plano-hot:hover {
  background: #1a6bff;
  border-color: #1a6bff;
}

.planos-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
  margin-top: 32px;
}

.planos-note svg { color: var(--cyan); flex-shrink: 0; }


/* ════════════════════════════════
   VANTAGENS
════════════════════════════════ */
.vantagens {
  padding: 100px 0;
  background: rgba(7,21,37,.5);
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vant-card {
  background: var(--card);
  border: 1px solid var(--bd2);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s, transform .25s;
}

.vant-card:hover {
  border-color: rgba(0,85,255,.3);
  transform: translateY(-3px);
}

.vant-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0,85,255,.18), rgba(0,210,255,.07));
  border: 1px solid rgba(0,210,255,.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.vant-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.vant-card p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.65;
}


/* ════════════════════════════════
   COBERTURA
════════════════════════════════ */
.cobertura {
  padding: 100px 0;
}

.cobertura-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cobertura-text { display: flex; flex-direction: column; gap: 20px; }

.cobertura-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.cobertura-text p { font-size: 1rem; color: var(--muted); line-height: 1.7; }

.cob-list { display: flex; flex-direction: column; gap: 10px; }

.cob-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
}

.cob-list li svg { color: var(--teal); flex-shrink: 0; }

/* Map card */
.cobertura-map { display: flex; justify-content: center; }

.map-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--bd2);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,85,255,.12);
  background: #071525;
}

.map-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Animação de pulso no pin central */
.map-pulse-ring {
  transform-origin: 220px 160px;
  animation: mapPulse 2.4s ease-out infinite;
}

@keyframes mapPulse {
  0%   { transform: scale(.7); opacity: .9; }
  100% { transform: scale(1.9); opacity: 0; }
}


/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq {
  padding: 100px 0;
  background: rgba(7,21,37,.5);
}

/* Two-column layout: image left, accordion right */
.faq-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

/* Image column */
.faq-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--bd2);
  flex-shrink: 0;
}

.faq-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.faq-img-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(10,25,47,.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,210,255,.25);
  border-radius: 40px;
  padding: 8px 16px;
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .05em;
}

.faq-img-badge svg { flex-shrink: 0; }

/* Accordion column */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--bd2);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open { border-color: rgba(0,85,255,.3); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .92rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  transition: color .2s;
}

.faq-q:hover { color: #fff; }

.faq-arrow {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--muted);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 20px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 20px 18px;
}

.faq-a p {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-a a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }

/* Destaque item — troubleshooting accordion */
.faq-item-destaque {
  border-color: rgba(0,210,255,.2);
  background: linear-gradient(135deg, rgba(0,85,255,.07), rgba(13,34,64,.85));
}

.faq-item-destaque.open {
  border-color: rgba(0,210,255,.4);
}

.faq-item-destaque.open .faq-a {
  max-height: 700px;
}

/* Tag pill inside question */
.faq-q-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-tag-alerta {
  display: inline-block;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 40px;
  background: rgba(0,210,255,.12);
  border: 1px solid rgba(0,210,255,.28);
  color: var(--cyan);
  flex-shrink: 0;
}

/* Step-by-step list */
.faq-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.faq-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Support CTA box */
.faq-suporte-cta {
  background: rgba(0,85,255,.07);
  border: 1px solid rgba(0,85,255,.2);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.faq-suporte-cta p {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.faq-suporte-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  background: #22c55e;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}

.faq-suporte-cta a:hover {
  background: #16a34a;
  transform: translateY(-1px);
}


/* ════════════════════════════════
   CONTATO
════════════════════════════════ */
.contato { padding: 100px 0; }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contato-info { display: flex; flex-direction: column; gap: 14px; }

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--bd2);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  transition: border-color .2s;
}

.info-card:hover { border-color: rgba(0,85,255,.3); }

.info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0,85,255,.18), rgba(0,210,255,.07));
  border: 1px solid rgba(0,210,255,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.info-card h4 {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
  letter-spacing: .03em;
}

.info-card a,
.info-card span {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}

.info-card a:hover { color: var(--cyan); }

/* Chat button */
.btn-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border: none;
  padding: 14px 20px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 6px;
}

.btn-chat:hover {
  background: #1a6bff;
  transform: translateY(-1px);
}

/* Form */
.contato-form {
  background: var(--card);
  border: 1px solid var(--bd2);
  border-radius: var(--r);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contato-form h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(7,21,37,.8);
  border: 1px solid var(--bd2);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .9rem;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  transition: border-color .2s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(221,230,255,.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0,85,255,.5);
}

.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark2); }

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.btn-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  background: var(--blue);
  border: none;
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.btn-form:hover {
  background: #1a6bff;
  transform: translateY(-1px);
}

.form-success {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: 8px;
  padding: 12px 16px;
}

.form-success.show { display: flex; }


/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { border-top: 1px solid var(--bd2); }

.footer-main { padding: 60px 0 40px; }

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-brand p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 240px;
}

.footer-addr { font-size: .82rem; }

.footer-socials { display: flex; gap: 8px; }

.soc-btn {
  width: 36px;
  height: 36px;
  background: var(--card);
  border: 1px solid var(--bd2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}

.soc-btn:hover {
  border-color: rgba(0,85,255,.4);
  color: var(--text);
}

.footer-col h5 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col a,
.footer-col span {
  font-size: .87rem;
  color: rgba(221,230,255,.5);
  transition: color .2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--bd2);
  padding: 18px 0;
}

.footer-btm-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(221,230,255,.35);
}

/* ════════════════════════════════
   SPEED TEST
════════════════════════════════ */
.speedtest { padding: 100px 0; background: var(--dark3); }

.spt-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  box-shadow: 0 0 80px rgba(0,85,255,.1);
}

/* Gauge */
.spt-gauge-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 100%; }
.spt-gauge-svg  { width: 100%; max-width: 320px; height: auto; }
.spt-phase {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--cyan);
  text-transform: uppercase;
  min-height: 1.2em;
}

/* Resultados */
.spt-results {
  display: flex;
  gap: 0;
  width: 100%;
  border: 1px solid var(--bd2);
  border-radius: 14px;
  overflow: hidden;
}

.spt-result {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 12px;
  border-right: 1px solid var(--bd2);
  transition: background .2s;
}
.spt-result:last-child { border-right: none; }

.spt-res-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.spt-icon-ping { background: rgba(0,85,255,.15); color: var(--blue); border: 1px solid rgba(0,85,255,.25); }
.spt-icon-down { background: rgba(0,210,255,.12); color: var(--cyan); border: 1px solid rgba(0,210,255,.25); }
.spt-icon-up   { background: rgba(0,240,160,.12); color: var(--teal); border: 1px solid rgba(0,240,160,.25); }

.spt-res-val  { font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1; }
.spt-res-unit { font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; }
.spt-res-lbl  { font-size: .65rem; font-weight: 700; color: rgba(221,230,255,.35); letter-spacing: .1em; text-transform: uppercase; }

/* Controles */
.spt-controls { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 100%; }

.spt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,85,255,.4);
  transition: opacity .2s, transform .15s, box-shadow .2s;
  letter-spacing: .02em;
}
.spt-btn:hover    { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,85,255,.5); }
.spt-btn:active   { transform: scale(.97); }
.spt-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.spt-status {
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  min-height: 1em;
}

.spt-progress-wrap {
  width: 100%;
  max-width: 320px;
  height: 3px;
  background: rgba(255,255,255,.07);
  border-radius: 3px;
  overflow: hidden;
}
.spt-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 3px;
  transition: width .4s ease;
}

.spt-spinner {
  display: inline-block;
  width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .65s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 560px) {
  .spt-card    { padding: 32px 16px 28px; }
  .spt-res-val { font-size: 1.3rem; }
  .spt-result  { padding: 14px 8px; }
}

.footer-credit-wrap {
  text-align: center;
  padding: 8px 0 2px;
  border-top: 1px solid rgba(255,255,255,.04);
  margin-top: 10px;
}

.footer-credit {
  font-size: .72rem;
  color: rgba(221,230,255,.22);
}

.footer-credit a {
  color: rgba(221,230,255,.38);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credit a:hover {
  color: var(--cyan);
}

.footer-btm-links {
  display: flex;
  gap: 20px;
}

.footer-btm-links a {
  font-size: .8rem;
  color: rgba(221,230,255,.35);
  transition: color .2s;
}

.footer-btm-links a:hover { color: var(--muted); }


/* ════════════════════════════════
   FLOATING BUTTON — WhatsApp
════════════════════════════════ */
.fab-chat {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #22c55e;
  color: #fff;
  padding: 13px 20px 13px 16px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 4px 24px rgba(34,197,94,.4);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}

.fab-chat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(34,197,94,.5);
}

.fab-tip { display: none; }


/* ════════════════════════════════
   SCROLL REVEAL (utility)
════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════
   AREA DO CLIENTE PAGE
════════════════════════════════ */
.portal-page {
  min-height: 100vh;
  padding: 120px 24px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.portal-page-inner {
  max-width: 900px;
  width: 100%;
}

.portal-page-header {
  text-align: center;
  margin-bottom: 48px;
}

.portal-page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.portal-page-header p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.portal-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.portal-card {
  background: var(--card);
  border: 1px solid var(--bd2);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .25s, transform .25s;
  cursor: pointer;
  text-align: left;
}

.portal-card:hover {
  border-color: rgba(0,85,255,.35);
  transform: translateY(-3px);
}

.portal-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,85,255,.1);
  border: 1px solid rgba(0,85,255,.2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.portal-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.portal-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}

.portal-login-box {
  background: var(--card);
  border: 1px solid var(--bd2);
  border-radius: var(--r);
  padding: 40px 36px;
  max-width: 420px;
  margin: 0 auto;
}

.portal-login-box h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.portal-login-box .form-group { margin-bottom: 16px; }

.btn-login {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .92rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: #fff;
  background: var(--blue);
  border: none;
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s, transform .15s;
}

.btn-login:hover {
  background: #1a6bff;
  transform: translateY(-1px);
}

.portal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 24px;
  transition: color .2s;
}

.portal-back:hover { color: var(--text); }


/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .plano-hot   { margin-top: 0; }
  .vantagens-grid { grid-template-columns: 1fr 1fr; }
  .hero-graphic { width: 100%; }
  .mascote-img  { height: 95vh; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .portal-cards { grid-template-columns: 1fr; }
}

/* trust-bar sempre marquee — breakpoint de grid removido */

/* trust-bar sempre em marquee — sem overrides adicionais */

/* removido: trust-item grid não é mais usado */

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-actions { display: none; }
  .hamburger  { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(7,21,37,.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--bd2);
    padding: 20px 24px 28px;
    gap: 4px;
  }

  .nav-links.open .nav-link { padding: 12px 10px; }

  .nav-link-portal {
    display: flex;
    margin-top: 8px;
    padding: 12px 14px !important;
    background: rgba(0,85,255,.15);
    border: 1px solid rgba(0,85,255,.3);
    border-radius: 8px;
    color: #fff !important;
    font-weight: 700;
  }

  .hero {
    padding: 120px 24px 60px;
    text-align: center;
    min-height: 100vh;
    min-height: 100svh; /* modern fix: exclui chrome do browser no iOS */
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge { align-self: center; }
  .hero-title { text-align: center; }
  .hero-subtitle { text-align: center; max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-cta { justify-content: center; }

  .hero-graphic {
    inset: 0;
    width: 100%;
    opacity: .18;
  }

  .hero::after {
    background:
      linear-gradient(to right,  var(--dark) 0%,   rgba(10,25,47,.95) 55%, transparent 100%),
      linear-gradient(to bottom, var(--dark3) 0%,   transparent 20%),
      linear-gradient(to top,    var(--dark)  0%,   transparent 25%);
  }

  .cobertura-wrap { grid-template-columns: 1fr; gap: 40px; }
  .map-card { max-width: 100%; }
  .vantagens-grid { grid-template-columns: 1fr; }

  .contato-grid { grid-template-columns: 1fr; }

  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .faq-img  { height: 260px; object-position: center 20%; }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-btm-inner { flex-direction: column; align-items: center; text-align: center; }

  .portal-login-box { padding: 28px 20px; }
  .contato-form { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 14px; }
  .stat-num   { font-size: 1.6rem; }
  .planos-grid { grid-template-columns: 1fr; max-width: 420px; }
  .hero-badge { font-size: .7rem; }
}
