/* ============================================================
   WNET Fibra Óptica — Design System
   Paleta: Neon #00A8FF · Elétrico #0066FF · Escuro #031B3D · Preto #020202
   ============================================================ */

:root {
  --neon: #00a8ff;
  --eletrico: #0066ff;
  --escuro: #031b3d;
  --escuro-2: #06122b;
  --preto: #020202;
  --branco: #ffffff;

  --bg: #020509;
  --bg-grad: radial-gradient(1200px 800px at 78% -8%, rgba(0, 102, 255, 0.18), transparent 60%),
    radial-gradient(900px 700px at 8% 12%, rgba(0, 168, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #020509 0%, #03102a 48%, #020509 100%);

  --ink: #eaf3ff;
  --ink-dim: #9fb6d6;
  --ink-faint: #6b82a6;

  --grad-neon: linear-gradient(135deg, #00c2ff 0%, #0066ff 100%);
  --grad-text: linear-gradient(120deg, #aee4ff 0%, #2f96ff 55%, #0066ff 100%);

  --glass: rgba(13, 28, 56, 0.45);
  --glass-2: rgba(10, 22, 46, 0.6);
  --glass-brd: rgba(0, 168, 255, 0.22);
  --glass-brd-strong: rgba(0, 168, 255, 0.5);

  --glow-sm: 0 0 18px rgba(0, 168, 255, 0.35);
  --glow-md: 0 0 40px rgba(0, 140, 255, 0.4);
  --glow-lg: 0 8px 60px rgba(0, 120, 255, 0.45);

  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1240px;

  --font-head: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --whats: #25d366;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; font-weight: 800; letter-spacing: -0.02em; }

::selection { background: rgba(0, 168, 255, 0.35); color: #fff; }

/* fixed page background layer */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg-grad);
}
.page-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(0, 168, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 75%);
  pointer-events: none;
}

/* ---------- Layout helpers ---------- */
.container { width: min(100% - clamp(36px, 7vw, 110px), var(--maxw)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
  padding: 7px 15px;
  border: 1px solid var(--glass-brd);
  border-radius: 100px;
  background: rgba(0, 120, 255, 0.07);
  margin-bottom: 22px;
}
.eyebrow svg { width: 15px; height: 15px; }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.section-title .hl { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-sub { color: var(--ink-dim); font-size: clamp(1rem, 1.5vw, 1.18rem); margin-top: 18px; max-width: 620px; }
.section-head.center .section-sub { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --b-pad: 15px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  padding: var(--b-pad);
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: var(--grad-neon);
  color: #fff;
  box-shadow: 0 6px 30px rgba(0, 120, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 44px rgba(0, 140, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--glass-brd-strong);
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--neon); box-shadow: var(--glow-sm); background: rgba(0, 120, 255, 0.08); }
.btn-whats { background: var(--whats); color: #04210f; box-shadow: 0 6px 26px rgba(37, 211, 102, 0.4); }
.btn-whats:hover { transform: translateY(-3px); box-shadow: 0 10px 38px rgba(37, 211, 102, 0.6); }
.btn-lg { --b-pad: 19px 38px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Glass card ---------- */
.glass {
  background: linear-gradient(180deg, rgba(18, 36, 68, 0.55), rgba(8, 18, 40, 0.62));
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(0, 168, 255, 0.5), transparent 40%, transparent 60%, rgba(0, 102, 255, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  pointer-events: none;
}


/* ============================================================
   NAVBAR + SCROLL PROGRESS
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-neon);
  box-shadow: 0 0 12px rgba(0, 168, 255, 0.9);
  z-index: 1000;
  transition: width 0.08s linear;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s, padding 0.3s;
  border-bottom: 1px solid transparent;
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(4, 10, 24, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--glass-brd);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 50%; transition: filter 0.3s, transform 0.3s; }
.brand:hover img { filter: drop-shadow(0 0 14px rgba(0, 168, 255, 0.85)); transform: scale(1.05); }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; letter-spacing: 0.01em; }
.brand-name b { color: #fff; }
.brand-name span { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-dim);
  padding: 9px 14px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-menu a:hover { color: #fff; background: rgba(0, 120, 255, 0.1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--glass-brd);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.2s; }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 360px);
  background: rgba(5, 12, 28, 0.96);
  backdrop-filter: blur(22px);
  border-left: 1px solid var(--glass-brd);
  z-index: 950;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  padding: 100px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--ink-dim); padding: 15px 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--neon); }
.mobile-menu .btn { margin-top: 22px; }
.scrim { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 940; opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; }
.scrim.open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 70px; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 50%, transparent 40%, rgba(2, 5, 9, 0.6) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-copy { max-width: 640px; }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.6rem); margin-bottom: 24px; }
.hero h1 .hl { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: clamp(1.05rem, 1.7vw, 1.32rem); color: var(--ink-dim); max-width: 540px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 40px;
  padding: 11px 18px 11px 14px;
  border-radius: 100px;
  background: rgba(8, 20, 42, 0.6);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  color: var(--ink-dim);
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #2bff88; box-shadow: 0 0 12px #2bff88; animation: pulse 2s infinite; }
.hero-badge b { color: #fff; font-weight: 700; }

/* floating mockup cluster */
.hero-visual { position: relative; height: 480px; }
.float-card {
  position: absolute;
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(18, 38, 72, 0.75), rgba(8, 18, 40, 0.8));
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 9px;
  animation: floaty 6s ease-in-out infinite;
}
.float-card .fc-ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-neon); box-shadow: var(--glow-sm); }
.float-card .fc-ico svg { width: 22px; height: 22px; color: #fff; }
.float-card .fc-title { font-family: var(--font-head); font-weight: 700; font-size: 0.96rem; }
.float-card .fc-meta { font-size: 0.8rem; color: var(--ink-faint); }
.float-card .fc-bars { display: flex; gap: 4px; align-items: flex-end; height: 26px; margin-top: 2px; }
.float-card .fc-bars i { width: 6px; background: linear-gradient(180deg, var(--neon), var(--eletrico)); border-radius: 3px; opacity: 0.85; }

.fc-1 { top: 8%; left: 4%; width: 184px; animation-delay: 0s; }
.fc-2 { top: 0; right: 6%; width: 168px; animation-delay: -1.5s; }
.fc-3 { top: 42%; left: 26%; width: 210px; animation-delay: -3s; z-index: 3; }
.fc-4 { bottom: 4%; left: 0; width: 176px; animation-delay: -2.2s; }
.fc-5 { bottom: 8%; right: 2%; width: 190px; animation-delay: -0.8s; }

.hero-orb { position: absolute; inset: 0; pointer-events: none; }
.hero-orb svg { position: absolute; inset: 0; width: 100%; height: 100%; }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.25); opacity: 0.7; } }

/* ============================================================
   STATS
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 30px 26px; text-align: center; }
.stat .stat-ico { width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 16px; display: grid; place-items: center; background: rgba(0, 120, 255, 0.12); border: 1px solid var(--glass-brd); color: var(--neon); }
.stat .stat-ico svg { width: 26px; height: 26px; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.9rem); background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat .num small { font-size: 0.55em; }
.stat .label { color: var(--ink-dim); font-size: 0.95rem; margin-top: 10px; }
.stat:hover { transform: translateY(-6px); box-shadow: var(--glow-md); }
.stat { transition: transform 0.3s var(--ease), box-shadow 0.3s; }

/* ============================================================
   SOBRE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.about-copy p { color: var(--ink-dim); font-size: 1.08rem; margin-top: 18px; }
.about-points { display: grid; gap: 14px; margin-top: 30px; }
.about-points li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink); }
.about-points .ck { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 7px; background: rgba(0,120,255,.14); color: var(--neon); display: grid; place-items: center; margin-top: 2px; }
.about-points .ck svg { width: 15px; height: 15px; }
.about-media { position: relative; }
.about-divider { position: absolute; left: -1px; top: 8%; bottom: 8%; width: 2px; background: linear-gradient(180deg, transparent, var(--neon), transparent); box-shadow: 0 0 16px rgba(0,168,255,.6); display: none; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; position: relative; border: 1px solid var(--glass-brd); box-shadow: var(--glow-lg); }
.media-frame image-slot { display: block; width: 100%; }
.media-tint { position: absolute; inset: 0; background: linear-gradient(150deg, rgba(0, 102, 255, 0.28), transparent 55%); mix-blend-mode: screen; pointer-events: none; z-index: 2; border-radius: inherit; }
.media-chip { position: absolute; z-index: 3; bottom: 16px; left: 16px; display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 100px; background: rgba(4, 12, 28, 0.78); border: 1px solid var(--glass-brd); backdrop-filter: blur(8px); font-size: 0.85rem; }
.media-chip svg { width: 17px; height: 17px; color: var(--neon); }

/* ============================================================
   DIFERENCIAIS / FEATURE GRID
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat { padding: 30px 28px; transition: transform 0.3s var(--ease), box-shadow 0.3s; overflow: hidden; }
.feat:hover { transform: translateY(-6px); box-shadow: var(--glow-md); }
.feat .f-ico { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px; background: linear-gradient(160deg, rgba(0,168,255,.18), rgba(0,102,255,.08)); border: 1px solid var(--glass-brd); color: var(--neon); transition: box-shadow .3s; }
.feat:hover .f-ico { box-shadow: var(--glow-sm); }
.feat .f-ico svg { width: 28px; height: 28px; }
.feat h3 { font-size: 1.22rem; margin-bottom: 10px; }
.feat p { color: var(--ink-dim); font-size: 0.98rem; }

/* ============================================================
   PLANOS
   ============================================================ */
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.plan { padding: 32px 26px; display: flex; flex-direction: column; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.plan:hover { transform: translateY(-7px); box-shadow: var(--glow-md); }
.plan .p-name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink-dim); letter-spacing: 0.02em; }
.plan .p-speed { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1; margin: 14px 0 4px; }
.plan .p-speed span { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan .p-speed small { font-size: 1.1rem; color: var(--ink-dim); -webkit-text-fill-color: var(--ink-dim); }
.plan .p-price { margin: 16px 0 4px; font-family: var(--font-head); }
.plan .p-price .cur { font-size: 1rem; color: var(--ink-dim); vertical-align: top; }
.plan .p-price .val { font-size: 2.5rem; font-weight: 800; color: #fff; }
.plan .p-price .per { font-size: 0.95rem; color: var(--ink-faint); }
.plan .p-price.consulta .val { font-size: 1.7rem; }
.plan ul { display: grid; gap: 12px; margin: 22px 0 26px; }
.plan ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; color: var(--ink); }
.plan ul li svg { width: 18px; height: 18px; color: var(--neon); flex: 0 0 18px; margin-top: 2px; }
.plan .btn { margin-top: auto; }
.plan.featured {
  border-color: var(--glass-brd-strong);
  box-shadow: 0 0 0 1px rgba(0,168,255,.3), 0 20px 60px rgba(0,90,255,.3);
  transform: scale(1.03);
}
.plan.featured:hover { transform: scale(1.03) translateY(-7px); }
.plan.featured::after {
  content: "";
  position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(130deg, var(--neon), transparent 35%, transparent 65%, var(--eletrico));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: borderGlow 4s linear infinite; pointer-events: none;
}
@keyframes borderGlow { to { filter: hue-rotate(40deg); } }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-neon); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; box-shadow: var(--glow-sm); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.plan-badge svg { width: 13px; height: 13px; }

.plans-note { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.plan-note-chip { display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: 100px; background: rgba(8,20,42,.5); border: 1px solid var(--glass-brd); font-size: 0.9rem; color: var(--ink-dim); }
.plan-note-chip svg { width: 17px; height: 17px; color: var(--neon); }
.plan-note-chip b { color: #fff; }

/* ============================================================
   TV
   ============================================================ */
.tv-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 60px); align-items: center; }
.tv-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.tv-card { padding: 22px 20px; display: flex; gap: 14px; align-items: center; transition: transform .3s, box-shadow .3s; }
.tv-card:hover { transform: translateY(-4px); box-shadow: var(--glow-sm); }
.tv-card .t-ico { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(0,120,255,.12); color: var(--neon); border: 1px solid var(--glass-brd); }
.tv-card .t-ico svg { width: 22px; height: 22px; }
.tv-card h4 { font-size: 1rem; }
.tv-mock { position: relative; }
.tv-mock .media-frame { box-shadow: var(--glow-lg); }
.tv-mock .mini-screen { position: absolute; border-radius: 12px; overflow: hidden; border: 2px solid rgba(8,16,34,.9); box-shadow: 0 16px 40px rgba(0,0,0,.6); }
.tv-mock .ms-tablet { width: 38%; bottom: -8%; left: -4%; aspect-ratio: 4/3; z-index: 3; }
.tv-mock .ms-phone { width: 20%; bottom: -6%; right: 6%; aspect-ratio: 9/16; z-index: 4; }

/* ---- Combo TV + Internet configurator ---- */
.combo { margin-top: clamp(40px, 5vw, 64px); padding: clamp(28px, 4vw, 46px); }
.combo-head { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.combo-head .ch-ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--grad-neon); box-shadow: var(--glow-sm); color: #fff; flex: 0 0 48px; }
.combo-head .ch-ico svg { width: 26px; height: 26px; }
.combo-head h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.combo-head p { color: var(--ink-dim); font-size: 0.95rem; width: 100%; }
.combo-config { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 30px; }
.combo-group .combo-label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.combo-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.combo-opts button {
  font-family: var(--font-head); font-weight: 700; font-size: 0.96rem;
  padding: 15px 8px; border-radius: 13px; cursor: pointer;
  background: rgba(3, 10, 24, 0.55); color: var(--ink-dim);
  border: 1px solid var(--glass-brd); transition: all 0.25s var(--ease);
}
.combo-opts button small { display: block; font-weight: 500; font-size: 0.72rem; color: var(--ink-faint); margin-top: 3px; }
.combo-opts button:hover { border-color: var(--neon); color: #fff; }
.combo-opts button.on { background: linear-gradient(160deg, rgba(0,120,255,.35), rgba(0,102,255,.12)); border-color: var(--neon); color: #fff; box-shadow: var(--glow-sm); }
.combo-opts button.on small { color: #bfe3ff; }
.combo-price { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 24px 28px; border-radius: var(--radius); background: linear-gradient(140deg, rgba(0,90,220,.18), rgba(6,16,38,.5)); border: 1px solid var(--glass-brd-strong); }
.combo-price-val { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1; }
.combo-price-val .cur { font-size: 0.5em; color: var(--ink-dim); vertical-align: top; margin-right: 2px; }
.combo-price-val #combo-val { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.combo-price-val small { font-size: 0.34em; color: var(--ink-dim); font-weight: 600; -webkit-text-fill-color: var(--ink-dim); }
.combo-price-sub { color: var(--ink-dim); font-size: 0.92rem; margin-top: 8px; }
.combo-foot { display: flex; align-items: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; justify-content: space-between; }
.combo-screens { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: var(--ink-dim); font-size: 0.9rem; }
.combo-screens b { color: #fff; font-family: var(--font-head); margin-right: 4px; }
.combo-screens .scr { display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; border-radius: 100px; background: rgba(8,20,42,.5); border: 1px solid var(--glass-brd); }
.combo-screens .scr svg { width: 15px; height: 15px; color: var(--neon); }
.combo-mini-note { color: var(--ink-faint); font-size: 0.82rem; display: inline-flex; align-items: center; gap: 7px; }
.combo-mini-note svg { width: 14px; height: 14px; color: var(--neon); }
@media (max-width: 640px) {
  .combo-config { grid-template-columns: 1fr; gap: 20px; }
  .combo-price { flex-direction: column; align-items: stretch; text-align: center; }
  .combo-price .btn { width: 100%; }
}

/* ============================================================
   COBERTURA
   ============================================================ */
.cov-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 5vw, 60px); align-items: center; }
.cep-box { padding: 30px; }
.cep-form { display: flex; gap: 10px; margin: 22px 0 16px; flex-wrap: wrap; }
.cep-input {
  flex: 1; min-width: 180px;
  background: rgba(3, 10, 24, 0.7);
  border: 1px solid var(--glass-brd);
  border-radius: 100px;
  padding: 15px 22px;
  color: #fff; font-size: 1rem; font-family: var(--font-body);
  transition: border-color .25s, box-shadow .25s;
}
.cep-input::placeholder { color: var(--ink-faint); }
.cep-input:focus { outline: none; border-color: var(--neon); box-shadow: var(--glow-sm); }
.cep-result { margin-top: 14px; font-size: 0.95rem; padding: 14px 18px; border-radius: 14px; display: none; align-items: center; gap: 10px; }
.cep-result.ok { display: flex; background: rgba(43,255,136,.08); border: 1px solid rgba(43,255,136,.3); color: #bfffd9; }
.cep-result svg { width: 19px; height: 19px; flex: 0 0 19px; }
.cov-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.cov-tags span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; color: var(--ink-dim); padding: 8px 14px; border-radius: 100px; background: rgba(8,20,42,.5); border: 1px solid var(--glass-brd); }
.cov-tags span svg { width: 14px; height: 14px; color: var(--neon); }

/* stylized map */
.map-frame { position: relative; aspect-ratio: 4/3.2; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--glass-brd); background: radial-gradient(circle at 50% 40%, #06224d 0%, #04122c 55%, #020912 100%); box-shadow: var(--glow-lg); }
.map-frame svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin { position: absolute; transform: translate(-50%, -50%); z-index: 4; }
.map-pin .pin-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 0 4px rgba(0,168,255,.25), 0 0 18px var(--neon); animation: pinPulse 2.4s infinite; }
.map-pin.sede .pin-dot { width: 18px; height: 18px; background: #2bff88; box-shadow: 0 0 0 6px rgba(43,255,136,.2), 0 0 22px #2bff88; }
.map-pin .pin-label { position: absolute; left: 20px; top: -4px; white-space: nowrap; font-size: 0.78rem; font-family: var(--font-head); font-weight: 600; color: var(--ink); background: rgba(4,12,28,.78); border: 1px solid var(--glass-brd); padding: 4px 10px; border-radius: 8px; opacity: 0; transform: translateX(-6px); transition: opacity .25s, transform .25s; }
.map-pin:hover .pin-label { opacity: 1; transform: translateX(0); }
@keyframes pinPulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(0,168,255,.25), 0 0 18px var(--neon); } 50% { box-shadow: 0 0 0 9px rgba(0,168,255,0), 0 0 24px var(--neon); } }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 20px; }
.timeline::before { content: ""; position: absolute; top: 38px; left: 8%; right: 8%; height: 2px; background: rgba(0,168,255,.18); z-index: 0; }
.timeline .tl-progress { content: ""; position: absolute; top: 38px; left: 8%; height: 2px; width: 0; background: var(--grad-neon); box-shadow: 0 0 12px var(--neon); z-index: 1; transition: width 1.4s var(--ease); }
.step { position: relative; z-index: 2; text-align: center; }
.step .st-num { width: 78px; height: 78px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; background: rgba(6, 16, 38, 0.9); border: 1px solid var(--glass-brd); color: var(--neon); position: relative; transition: box-shadow .4s, border-color .4s; }
.step .st-num svg { width: 32px; height: 32px; }
.step.on .st-num { border-color: var(--neon); box-shadow: var(--glow-md); color: #fff; background: linear-gradient(160deg, rgba(0,120,255,.4), rgba(6,16,38,.9)); }
.step .st-idx { position: absolute; top: -6px; right: -6px; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-neon); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; display: grid; place-items: center; box-shadow: var(--glow-sm); }
.step h4 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--ink-dim); font-size: 0.92rem; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testi-wrap { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.6s var(--ease); }
.testi-card { flex: 0 0 100%; padding: 6px; }
.testi-inner { padding: 40px clamp(28px, 5vw, 56px); text-align: center; max-width: 820px; margin-inline: auto; }
.testi-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 22px; color: #ffc83d; }
.testi-stars svg { width: 22px; height: 22px; fill: currentColor; }
.testi-quote { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.4; color: #fff; }
.testi-author { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-author .av { width: 50px; height: 50px; border-radius: 50%; background: var(--grad-neon); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: #fff; box-shadow: var(--glow-sm); }
.testi-author .who { text-align: left; }
.testi-author .who b { display: block; }
.testi-author .who span { font-size: 0.85rem; color: var(--ink-faint); }
.testi-nav { display: flex; justify-content: center; gap: 14px; margin-top: 30px; align-items: center; }
.testi-arrow { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--glass-brd); background: rgba(255,255,255,.03); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: border-color .25s, color .25s, box-shadow .25s; }
.testi-arrow:hover { border-color: var(--neon); color: var(--neon); box-shadow: var(--glow-sm); }
.testi-dots { display: flex; gap: 8px; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,.2); cursor: pointer; transition: background .25s, width .25s; padding: 0; }
.testi-dots button.on { background: var(--neon); width: 26px; border-radius: 100px; }

/* ============================================================
   CORPORATIVO
   ============================================================ */
.corp-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 60px); align-items: center; }
.corp-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0 32px; }
.corp-card { display: flex; gap: 12px; align-items: center; padding: 16px 18px; border-radius: 14px; background: rgba(8,18,40,.5); border: 1px solid var(--glass-brd); transition: transform .3s, box-shadow .3s; }
.corp-card:hover { transform: translateY(-3px); box-shadow: var(--glow-sm); }
.corp-card svg { width: 22px; height: 22px; color: var(--neon); flex: 0 0 22px; }
.corp-card span { font-size: 0.92rem; font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 860px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { overflow: hidden; transition: box-shadow .3s; }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: clamp(1rem, 1.6vw, 1.15rem); padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; }
.faq-q .fq-ico { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: rgba(0,120,255,.14); color: var(--neon); transition: transform .35s var(--ease); }
.faq-q .fq-ico svg { width: 18px; height: 18px; }
.faq-item.open .faq-q .fq-ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-dim); font-size: 1rem; }
.faq-item.open { box-shadow: var(--glow-sm); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { position: relative; overflow: hidden; text-align: center; padding: clamp(90px, 12vw, 160px) 0; }
#cta-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 { font-size: clamp(2.2rem, 5.4vw, 4.4rem); margin-bottom: 22px; }
.cta-final h2 .hl { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-final p { color: var(--ink-dim); font-size: clamp(1.05rem, 1.8vw, 1.3rem); max-width: 600px; margin: 0 auto 38px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--glass-brd); background: rgba(3, 8, 20, 0.7); padding: 70px 0 30px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 44px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--ink-dim); font-size: 0.96rem; max-width: 340px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.03); border: 1px solid var(--glass-brd); color: var(--ink-dim); transition: color .25s, border-color .25s, box-shadow .25s, transform .25s; }
.footer-social a:hover { color: var(--neon); border-color: var(--neon); box-shadow: var(--glow-sm); transform: translateY(-3px); }
.footer-social a svg { width: 20px; height: 20px; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 20px; font-weight: 700; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col ul li a { color: var(--ink-dim); font-size: 0.95rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--neon); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-dim); font-size: 0.95rem; margin-bottom: 14px; }
.footer-contact li svg { width: 18px; height: 18px; color: var(--neon); flex: 0 0 18px; margin-top: 2px; }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--ink-faint); font-size: 0.85rem; }

/* ============================================================
   E-SAÚDE
   ============================================================ */
:root { --health: #00c9a7; --health-dim: rgba(0,201,167,.15); }

.esaude-hero {
  padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 52px);
  margin-bottom: clamp(48px, 6vw, 72px);
}
.esaude-hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--health); background: rgba(0,201,167,.1);
  border: 1px solid rgba(0,201,167,.3); border-radius: 100px;
  padding: 7px 16px; margin-bottom: 28px;
}
.esaude-hero-badge svg { width: 15px; height: 15px; }
.esaude-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 4vw, 56px); align-items: start;
}
.esaude-ico {
  width: 62px; height: 62px; border-radius: 18px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(160deg, rgba(0,201,167,.2), rgba(0,168,255,.1));
  border: 1px solid rgba(0,201,167,.3); color: var(--health);
}
.esaude-ico svg { width: 28px; height: 28px; }
.esaude-hero-left h3 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 14px; }
.esaude-hero-left p { color: var(--ink-dim); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }
.esaude-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.esaude-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 100px; font-size: 0.88rem; font-weight: 600;
  background: rgba(0,201,167,.08); border: 1px solid rgba(0,201,167,.22); color: var(--ink);
}
.esaude-badge svg { width: 15px; height: 15px; color: var(--health); }

.esaude-packs-label {
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 14px;
}
.esaude-packs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 16px; }
.esaude-pack {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 8px; border-radius: 14px; text-align: center;
  background: rgba(8,18,40,.5); border: 1px solid var(--glass-brd);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.esaude-pack:hover { transform: translateY(-4px); box-shadow: var(--glow-sm); border-color: rgba(0,201,167,.4); }
.ep-ico { color: var(--health); }
.ep-ico svg { width: 22px; height: 22px; }
.ep-name { font-family: var(--font-head); font-weight: 700; font-size: 0.82rem; color: #fff; }
.ep-desc { font-size: 0.78rem; color: var(--ink-faint); }
.esaude-pack-note {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.84rem; color: var(--ink-faint); line-height: 1.5;
}
.esaude-pack-note svg { width: 15px; height: 15px; flex: 0 0 15px; margin-top: 2px; color: var(--neon); }

.esaude-clinic-head { margin-bottom: clamp(28px, 4vw, 44px); }
.esaude-clinic-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-top: 10px; }
.esaude-clinic-sub { color: var(--ink-dim); font-size: 1rem; margin-top: 12px; max-width: 560px; }

.esaude-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.esaude-plan-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--health); background: rgba(0,201,167,.1);
  border: 1px solid rgba(0,201,167,.25); border-radius: 100px;
  padding: 5px 13px; margin: 10px 0 6px;
}

@media (max-width: 1080px) {
  .esaude-hero-grid { grid-template-columns: 1fr; }
  .esaude-packs { grid-template-columns: repeat(5, 1fr); }
  .esaude-plans { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .esaude-packs { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .esaude-plans { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .esaude-packs { grid-template-columns: repeat(3, 1fr); }
  .esaude-plans { grid-template-columns: 1fr; }
  .esaude-badges { gap: 8px; }
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 880; display: flex; align-items: center; gap: 0; }
.wa-btn { width: 62px; height: 62px; border-radius: 50%; background: var(--whats); display: grid; place-items: center; box-shadow: 0 8px 30px rgba(37,211,102,.5); position: relative; transition: transform .3s; }
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 32px; height: 32px; color: #fff; }
.wa-btn::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--whats); animation: waRing 2.4s ease-out infinite; }
@keyframes waRing { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }
.wa-tip { position: absolute; right: 76px; bottom: 14px; white-space: nowrap; background: #fff; color: #0a2e18; font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; padding: 9px 15px; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,.3); opacity: 0; transform: translateX(8px); transition: opacity .3s, transform .3s; pointer-events: none; }
.wa-tip::after { content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: #fff; }
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card, .wa-btn::after, .hero-badge .dot { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero-visual { height: 420px; max-width: 520px; margin-top: 20px; }
  .about-grid, .tv-grid, .cov-grid, .corp-grid { grid-template-columns: 1fr; }
  .about-divider { display: none; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-7px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-menu { display: none; }
  .nav-cta .btn-desktop { display: none; }
  .nav-toggle { display: block; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .timeline::before, .timeline .tl-progress { display: none; }
  .tv-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .feat-grid, .plans-grid, .stats-grid, .corp-cards { grid-template-columns: 1fr; }
  .hero-visual { height: 360px; }
  .float-card { padding: 13px; }
  .fc-3 { left: 18%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .testi-inner { padding: 30px 20px; }
  .wa-float { right: 16px; bottom: 16px; }
}
