/* ============================================================
   Novanet Fibra — Folha de estilo (visual v2 "Fibra Futurista")
   ------------------------------------------------------------
   • Direção: dark tech / HUD de fibra óptica — grid, neon,
     vidro, tipografia técnica (Space Grotesk + JetBrains Mono).
   • Marca e tema nos tokens (:root) abaixo.
   • Suporta tema CLARO e ESCURO (atributo data-theme no <html>).
   ============================================================ */

:root {
  /* ---- Marca Novanet v3 "Blackout Laranja" ----
     Laranja é a estrela; preto e branco carregam o resto.
     O azul fica restrito ao símbolo da logo (assinatura). */
  --brand: #e14d00;         /* laranja Novanet (legível no claro) */
  --brand-2: #ff7a1f;       /* laranja vivo             */
  --brand-3: #b13c00;       /* laranja queimado         */
  --accent: #ff4d00;        /* ember (pontas de gradiente) */
  --accent-2: #ffa25e;      /* âmbar claro              */
  --whats: #25d366;
  --ok: #22c55e;
  --gradient: linear-gradient(115deg, var(--brand-3) 0%, var(--brand) 52%, var(--brand-2) 115%);
  --gradient-brand: linear-gradient(115deg, var(--brand) 0%, var(--accent) 140%);
  --gradient-soft: linear-gradient(120deg, rgba(255,106,0,.13), rgba(255,77,0,.08));

  /* ---- Tokens semânticos: TEMA CLARO (branco de verdade) ---- */
  --bg: #faf9f7;
  --surface: #ffffff;
  --surface-solid: #ffffff;
  --surface-2: #f1efeb;
  --ink: #0d0d0f;
  --ink-soft: #55555c;
  --line: rgba(15,15,20,.09);
  --line-strong: rgba(15,15,20,.18);
  --line-neon: rgba(255,106,0,.42);
  --hero-bg: #050505;
  --header-bg: rgba(250,249,247,.78);
  --header-bg-solid: rgba(250,249,247,.95);
  --grain-opacity: .028;
  --ambient-a: rgba(255,106,0,.07);
  --ambient-b: rgba(15,15,20,.04);
  --grid-line: rgba(15,15,20,.05);

  /* ---- Sistema ---- */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(15,14,12,.05), 0 4px 14px rgba(15,14,12,.06);
  --shadow-md: 0 14px 38px rgba(15,14,12,.1);
  --shadow-lg: 0 32px 74px rgba(15,14,12,.17);
  --shadow-brand: 0 14px 40px -8px rgba(255,106,0,.5);
  --glow-neon: 0 0 26px -4px rgba(255,138,42,.55);
  --container: 1200px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---- TEMA ESCURO (padrão da marca — preto de verdade) ---- */
:root[data-theme="dark"] {
  --brand: #ff6a13;
  --brand-2: #ffa347;
  --brand-3: #e05000;
  --bg: #050505;
  --surface: #101013;
  --surface-solid: #101013;
  --surface-2: #0a0a0c;
  --ink: #f5f4f2;
  --ink-soft: #a3a3ab;
  --line: rgba(255,255,255,.1);
  --line-strong: rgba(255,255,255,.2);
  --line-neon: rgba(255,138,42,.45);
  --header-bg: rgba(6,6,6,.62);
  --header-bg-solid: rgba(6,6,6,.9);
  --grain-opacity: .05;
  --ambient-a: rgba(255,106,0,.11);
  --ambient-b: rgba(255,162,94,.05);
  --grid-line: rgba(255,255,255,.045);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.45);
  --shadow-md: 0 16px 44px rgba(0,0,0,.55);
  --shadow-lg: 0 32px 84px rgba(0,0,0,.68);
  color-scheme: dark;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
/* Luz ambiente global (ciano + laranja bem sutis) */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 620px at 88% -12%, var(--ambient-a), transparent 62%),
    radial-gradient(760px 540px at -12% 108%, var(--ambient-b), transparent 62%);
}
/* Textura de grão (mantém o acabamento premium) */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.06; font-weight: 700; letter-spacing: -.025em; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: rgba(255,106,0,.35); }
:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 840px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Barra de progresso ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: var(--gradient); z-index: 200; transition: width .1s linear; box-shadow: 0 0 14px rgba(255,138,42,.7); }

/* ---------- Botões ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; padding: 14px 26px;
  border-radius: 12px; transition: var(--transition); white-space: nowrap;
  border: 1px solid transparent; isolation: isolate;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }
.btn-primary {
  background: linear-gradient(115deg, var(--brand-3), var(--brand) 55%, #ff9633);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,138,42,.35), var(--shadow-brand);
}
.btn-primary::before { content: ''; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(180deg, rgba(255,255,255,.26), transparent 46%); z-index: -1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(255,138,42,.5), 0 18px 50px -8px rgba(255,106,0,.65), var(--glow-neon); }
.btn-outline { border-color: var(--line-strong); color: var(--ink); background: var(--surface); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,106,0,.25), var(--shadow-sm); }
.btn-ghost { border-color: rgba(255,255,255,.22); color: #fff; background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,138,42,.5); transform: translateY(-2px); }
.btn-light { background: #fff; color: #0a1024; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 18px 46px -10px rgba(255,138,42,.45); }
.btn-whats { background: var(--whats); color: #fff; box-shadow: 0 10px 30px -8px rgba(37,211,102,.55); }
.btn-whats:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -8px rgba(37,211,102,.65); }
/* Shine ao passar o mouse */
.btn-primary, .btn-light { overflow: hidden; }
.btn-primary::after, .btn-light::after {
  content: ''; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); z-index: -1; transition: left .65s cubic-bezier(.4,0,.2,1);
}
.btn-primary:hover::after, .btn-light:hover::after { left: 140%; }
.btn-light::after { background: linear-gradient(100deg, transparent, rgba(255,106,0,.22), transparent); }

/* ---------- Barra superior utilitária ---------- */
.topbar { background: #050506; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 12.5px; font-family: var(--font-mono); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 42px; gap: 16px; }
.topbar-group { display: flex; align-items: center; gap: 22px; }
.topbar a { color: #9a9aa3; display: inline-flex; align-items: center; gap: 7px; font-weight: 500; transition: color var(--transition), text-shadow var(--transition); }
.topbar a:hover { color: var(--brand-2); text-shadow: 0 0 14px rgba(255,138,42,.55); }
.topbar svg { color: var(--brand); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg); backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent; transition: var(--transition);
}
.site-header::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: linear-gradient(90deg, transparent 5%, var(--line-neon), transparent 95%); opacity: 0; transition: opacity var(--transition); }
.site-header.scrolled { background: var(--header-bg-solid); box-shadow: var(--shadow-sm); }
.site-header.scrolled::after { opacity: 1; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-mark { display: grid; place-items: center; width: 48px; height: 40px; flex-shrink: 0; filter: drop-shadow(0 0 12px rgba(255,106,0,.35)); }
.brand-mark svg { width: 100%; height: 100%; overflow: visible; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word-main { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: .01em; color: var(--ink); }
.brand-word-main em { font-style: normal; background: linear-gradient(100deg, var(--brand-2), var(--brand)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.brand-word-sub { font-family: var(--font-mono); font-size: 9px; font-weight: 500; letter-spacing: .52em; color: var(--ink-soft); margin-top: 3px; margin-left: 1px; }
.site-footer .brand-word-main { color: #fff; }
.site-footer .brand-word-sub { color: #97979f; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); transition: color var(--transition), text-shadow var(--transition); position: relative; }
.nav a:hover { color: var(--ink); text-shadow: 0 0 18px rgba(255,138,42,.45); }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gradient); transition: width var(--transition); border-radius: 2px; box-shadow: 0 0 10px rgba(255,138,42,.6); }
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--brand); }
.nav a.active::after { width: 100%; }
.nav-cta { color: var(--brand) !important; font-weight: 700 !important; }
.nav-cta::after { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--line-strong); color: var(--ink); transition: var(--transition); }
.theme-toggle:hover { border-color: var(--brand); color: var(--brand-2); transform: translateY(-1px); box-shadow: var(--glow-neon); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 11px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border: 1px solid var(--line-strong); }
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--transition); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — núcleo de rede holográfico
   ============================================================ */
.hero { position: relative; padding: 88px 0 76px; background: var(--hero-bg); color: #fff; overflow: hidden; }
/* linha de horizonte neon no fim da seção */
.hero::after { content: ''; position: absolute; left: 8%; right: 8%; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,138,42,.5), rgba(255,106,0,.35), transparent); }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
/* nebulosa de fundo */
.hero-bg::before {
  content: ''; position: absolute; inset: -25%;
  background:
    radial-gradient(closest-side, rgba(255,106,0,.4), transparent) 16% 24% / 52% 52% no-repeat,
    radial-gradient(closest-side, rgba(255,255,255,.09), transparent) 84% 12% / 44% 44% no-repeat,
    radial-gradient(closest-side, rgba(255,64,0,.26), transparent) 68% 86% / 50% 50% no-repeat;
  filter: blur(52px); animation: aurora 22s ease-in-out infinite alternate;
}
@keyframes aurora { 0% { transform: translate3d(-2%,-2%,0) scale(1) rotate(0); } 50% { transform: translate3d(3%,2%,0) scale(1.1) rotate(3deg); } 100% { transform: translate3d(-1%,3%,0) scale(1.05) rotate(-2deg); } }
/* grid técnico */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at 62% 40%, #000 0%, transparent 74%);
  mask-image: radial-gradient(circle at 62% 40%, #000 0%, transparent 74%);
}
/* feixes de fibra cruzando a tela */
.beam { position: absolute; height: 1px; width: 36%; opacity: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,138,42,.9), transparent);
  filter: drop-shadow(0 0 6px rgba(255,138,42,.8));
  animation: beam 7.5s linear infinite;
}
.beam.b1 { top: 16%; animation-delay: 0s; }
.beam.b2 { top: 55%; width: 24%; animation-delay: 2.6s; background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent); filter: drop-shadow(0 0 6px rgba(255,255,255,.6)); }
.beam.b3 { top: 82%; width: 30%; animation-delay: 5s; background: linear-gradient(90deg, transparent, rgba(255,162,94,.85), transparent); filter: drop-shadow(0 0 6px rgba(255,162,94,.7)); }
@keyframes beam { 0% { transform: translateX(-45vw); opacity: 0; } 10% { opacity: 1; } 65% { opacity: 1; } 100% { transform: translateX(125vw); opacity: 0; } }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: 56px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 8px 16px; border-radius: 8px; background: rgba(255,138,42,.06); border: 1px solid rgba(255,138,42,.28); color: #ffd7ae; margin-bottom: 28px; backdrop-filter: blur(8px); box-shadow: inset 0 0 22px rgba(255,138,42,.07); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 0 0 rgba(255,138,42,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,138,42,.6);} 70%{box-shadow:0 0 0 9px rgba(255,138,42,0);} 100%{box-shadow:0 0 0 0 rgba(255,138,42,0);} }
.hero h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); margin-bottom: 22px; color: #fff; letter-spacing: -.035em; line-height: 1.01; }
.grad { background: linear-gradient(100deg, var(--brand-2), #ffe3c4 55%, var(--brand)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; background-size: 220% auto; animation: gradShift 7s ease-in-out infinite; }
@keyframes gradShift { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.2rem); color: #b6b6be; max-width: 540px; margin-bottom: 36px; }
.hero-sub strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 10px; }

/* Prova social */
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.proof-avatars { display: flex; }
.proof-avatars span { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--hero-bg); margin-left: -11px; display: grid; place-items: center; font-size: 13px; font-weight: 700; color: #fff; background: var(--gradient); box-shadow: 0 4px 12px rgba(0,0,0,.4); }
.proof-avatars span:first-child { margin-left: 0; }
.proof-avatars span:nth-child(2) { background: linear-gradient(120deg, var(--accent), var(--accent-2)); }
.proof-avatars span:nth-child(3) { background: linear-gradient(120deg, #22c55e, #16a34a); }
.proof-avatars span:nth-child(4) { background: linear-gradient(120deg, #3d3d44, #131316); }
.proof-text { font-size: 13.5px; color: #b6b6be; line-height: 1.4; }
.proof-text strong { color: #fff; }
.proof-stars { color: #fbbf24; letter-spacing: 1px; text-shadow: 0 0 12px rgba(251,191,36,.5); }

/* ---- Painel holográfico (visual do hero) ---- */
.hero-visual { position: relative; display: grid; place-items: center; perspective: 1100px; }
.holo-card {
  position: relative; width: 100%; max-width: 510px; padding: 20px 22px 16px;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(22,20,18,.82), rgba(9,8,7,.92));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 44px 90px -30px rgba(0,0,0,.85), 0 0 70px -24px rgba(255,106,0,.45);
  backdrop-filter: blur(14px);
  transform-style: preserve-3d; will-change: transform;
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow var(--transition);
}
/* cantoneiras de HUD */
.holo-card::before, .holo-card::after { content: ''; position: absolute; width: 22px; height: 22px; border: 2px solid rgba(255,138,42,.55); pointer-events: none; }
.holo-card::before { top: 9px; left: 9px; border-right: none; border-bottom: none; border-top-left-radius: 10px; }
.holo-card::after { bottom: 9px; right: 9px; border-left: none; border-top: none; border-bottom-right-radius: 10px; }
.holo-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: #9c9ca6; padding: 2px 6px 0; }
.holo-live { display: inline-flex; align-items: center; gap: 8px; }
.holo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-2); box-shadow: 0 0 10px rgba(255,138,42,.9); animation: pulse-green 1.8s infinite; }
.holo-status { color: #4ade80; text-shadow: 0 0 12px rgba(74,222,128,.6); }
@keyframes pulse-green { 0%,100%{opacity:1;} 50%{opacity:.35;} }

@keyframes spin { to { transform: rotate(360deg); } }

/* Carrossel holográfico (fotos com tratamento futurista) */
.hero-slider { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 16 / 11; margin: 12px 0 14px; border: 1px solid rgba(255,255,255,.16); background: #0b0b0d; }
.hero-slider .slide { position: absolute; inset: 0; margin: 0; opacity: 0; transform: scale(1.05); transition: opacity .8s ease, transform 1.2s ease; }
.hero-slider .slide.active { opacity: 1; transform: none; }
.hero-slider .slide img { width: 100%; height: 100%; object-fit: cover; }
/* duotone: tinta ciano/laranja + queda pro escuro na base */
.hero-slider .slide::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(255,106,0,.24), transparent 48%, rgba(255,106,0,.14)); }
.hero-slider .slide::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(185deg, rgba(7,6,5,.05) 38%, rgba(7,6,5,.9) 88%); }
.hero-slider .slide figcaption { position: absolute; left: 16px; right: 16px; bottom: 13px; z-index: 2; display: flex; flex-direction: column; gap: 5px; align-items: flex-start; }
.slide-tag { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #ffd7ae; background: rgba(14,11,8,.72); border: 1px solid rgba(255,138,42,.35); padding: 4px 10px; border-radius: 6px; backdrop-filter: blur(6px); }
.hero-slider .slide figcaption strong { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -.02em; text-shadow: 0 2px 16px rgba(0,0,0,.6); }
/* scanlines de holograma */
.hero-slider::after { content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none; background: repeating-linear-gradient(0deg, rgba(255,255,255,.028) 0 1px, transparent 1px 3px); }
.slider-dots { position: absolute; top: 12px; right: 12px; z-index: 4; display: flex; gap: 6px; }
.slider-dots button { width: 8px; height: 8px; border-radius: 999px; padding: 0; background: rgba(255,255,255,.35); transition: var(--transition); }
.slider-dots button.on { width: 22px; background: var(--brand-2); box-shadow: 0 0 10px rgba(255,138,42,.85); }

/* Chips de HUD flutuando sobre o orbe */
.hud-chip {
  position: absolute; z-index: 3; display: flex; flex-direction: column; gap: 1px;
  padding: 10px 15px; border-radius: 11px;
  background: rgba(14,11,8,.88); border: 1px solid rgba(255,138,42,.28);
  box-shadow: 0 16px 36px rgba(0,0,0,.55), 0 0 22px -8px rgba(255,138,42,.5);
  backdrop-filter: blur(8px);
}
.hud-chip span { font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: #8d8d97; }
.hud-chip strong { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.hud-chip.hc1 { top: 16%; left: -16px; animation: float 5s ease-in-out infinite; }
.hud-chip.hc2 { top: 40%; right: -20px; animation: float 5s ease-in-out infinite 1.4s; }
.hud-chip.hc2 strong { color: var(--brand-2); text-shadow: 0 0 16px rgba(255,138,42,.55); }
.hud-chip.hc3 { bottom: 38%; left: -16px; animation: float 5s ease-in-out infinite 2.4s; }
.hud-chip.hc3 strong { color: var(--accent-2); }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

/* Linha de terminal no rodapé do painel */
.holo-term { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12.5px; color: #9c9ca6; border-top: 1px dashed rgba(255,255,255,.16); padding: 12px 6px 2px; }
.holo-term b { color: #4ade80; font-weight: 600; }
.term-prompt { color: var(--brand-2); }
.term-cursor { display: inline-block; width: 7px; height: 14px; background: var(--brand-2); box-shadow: 0 0 10px rgba(255,138,42,.8); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ---- Estatísticas (tiles HUD) ---- */
.stats-row { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 66px; }
.stats-row .stat { position: relative; text-align: left; padding: 18px 20px 15px; border-radius: 14px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12); overflow: hidden; transition: var(--transition); }
.stats-row .stat:hover { border-color: rgba(255,138,42,.35); box-shadow: 0 0 30px -10px rgba(255,138,42,.4); }
.stats-row .stat::before { content: ''; position: absolute; top: 0; left: 0; width: 42%; height: 2px; background: var(--gradient); box-shadow: 0 0 12px rgba(255,138,42,.6); }
.stats-row .stat strong { display: block; font-family: var(--font-display); font-variant-numeric: tabular-nums; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -.03em; color: #fff; text-shadow: 0 0 26px rgba(255,138,42,.35); }
.stats-row .stat span { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: #8d8d97; }

/* ---------- Parceiros / streaming (carrossel) ---------- */
.partners { padding: 52px 0; background: var(--surface-2); border-bottom: 1px solid var(--line); overflow: hidden; }
.partners p { text-align: center; color: var(--ink-soft); font-family: var(--font-mono); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .22em; margin-bottom: 28px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 26px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo-tile { display: inline-flex; align-items: center; gap: 12px; padding: 9px 20px 9px 9px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); flex-shrink: 0; transition: var(--transition); }
.logo-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-neon); }
.logo-icon { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: var(--c); color: #fff; flex-shrink: 0; box-shadow: 0 8px 18px -6px var(--c); }
.logo-icon svg { width: 23px; height: 23px; }
.logo-icon b { font-weight: 800; font-size: 20px; line-height: 1; }
.logo-icon b.sm { font-size: 14px; letter-spacing: -.02em; }
/* Disney+: arco sobre o "D+" (estilo novo da marca) */
.logo-icon.disney { position: relative; }
.logo-icon.disney svg { position: absolute; top: 4px; left: 50%; transform: translateX(-50%); width: 32px; height: 18px; filter: drop-shadow(0 0 4px rgba(255,255,255,.35)); }
.logo-icon.disney b.sm { margin-top: 7px; font-weight: 700; }
.logo-name { font-weight: 700; font-size: 1.05rem; color: var(--ink); letter-spacing: -.01em; white-space: nowrap; }

/* ---------- Seções ---------- */
.section { padding: 106px 0; }
.section-alt { background: var(--surface-2); }
.section-dark { background: var(--hero-bg); color: #fff; position: relative; overflow: hidden; }
.section-dark::before { content: ''; position: absolute; inset: 0; background: radial-gradient(640px 320px at 82% 0%, rgba(255,106,0,.2), transparent 62%), radial-gradient(480px 280px at 8% 100%, rgba(255,106,0,.1), transparent 60%); }
.section-dark::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: radial-gradient(circle at 30% 30%, #000 0%, transparent 76%); mask-image: radial-gradient(circle at 30% 30%, #000 0%, transparent 76%); pointer-events: none; }
.section-dark > .container { position: relative; z-index: 1; }
.section-head { max-width: 700px; margin: 0 auto 60px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .26em; color: var(--brand);
  background: none; padding: 0; border-radius: 0; margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 28px; height: 1px; flex-shrink: 0; }
.eyebrow::before { background: linear-gradient(90deg, transparent, var(--brand)); }
.eyebrow::after { background: linear-gradient(90deg, var(--brand), transparent); }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section-head-light h2 { color: #fff; }
.section-head-light .eyebrow { color: var(--brand-2); }
.section-head-light .eyebrow::before { background: linear-gradient(90deg, transparent, var(--brand-2)); }
.section-head-light .eyebrow::after { background: linear-gradient(90deg, var(--brand-2), transparent); }
.section-head-light p { color: #b6b6be; }

/* ---------- Planos (vitrine escura estilo HUD) ----------
   A seção usa .section-dark, então os valores aqui são fixos
   no tema escuro — ela fica idêntica no tema claro e no escuro. */
@property --spin-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
#planos .section-head .hl { font-style: normal; background: linear-gradient(115deg, #ff6a13, #ffa347); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
#planos .section-head h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
/* palco: holofote atrás do destaque + pulso de luz percorrendo a fibra */
.plans-stage { position: relative; }
.plans-stage::before {
  content: ''; position: absolute; inset: -90px -60px; pointer-events: none;
  background:
    radial-gradient(640px 430px at 50% 40%, rgba(255,106,0,.16), transparent 64%),
    linear-gradient(115deg, transparent 40%, rgba(255,138,42,.05) 50%, transparent 60%);
}
.fiber-line { position: absolute; left: -4%; right: -4%; top: 46%; height: 2px; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255,106,0,.3) 10%, rgba(255,106,0,.3) 90%, transparent); }
.fiber-line i { position: absolute; top: 50%; left: -12%; width: 140px; height: 3px; transform: translateY(-50%); border-radius: 99px; background: linear-gradient(90deg, transparent, #ff8a2a, #fff); filter: drop-shadow(0 0 10px rgba(255,138,42,.95)); animation: fiberPulse 4.6s linear infinite; }
.fiber-line i.p2 { animation-delay: 2.3s; }
@keyframes fiberPulse { 0% { left: -12%; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { left: 104%; opacity: 0; } }
.plans { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; max-width: 1080px; margin: 0 auto; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background:
    linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.015) 46%),
    radial-gradient(130% 90% at 88% -12%, rgba(255,106,0,.11), transparent 56%),
    #0b0b0e;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 32px 28px 28px;
  transition: var(--transition); overflow: hidden;
  /* tilt 3D + elevação via variáveis (o JS controla --rx/--ry/--mx/--my) */
  transform: perspective(1100px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px)) scale(var(--sc, 1));
}
/* varredura de luz no topo do card */
.plan::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,138,42,.55), transparent); opacity: 0; transition: var(--transition); }
/* brilho que segue o mouse */
.plan::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(280px 280px at var(--mx, 50%) var(--my, 50%), rgba(255,138,42,.13), transparent 62%); opacity: 0; transition: opacity .35s ease; }
.plan:hover { --ty: -8px; border-color: rgba(255,138,42,.45); box-shadow: 0 24px 60px -18px rgba(0,0,0,.7), 0 0 46px -14px rgba(255,138,42,.45); }
.plan:hover::before { opacity: 1; }
.plan:hover::after { opacity: 1; }
/* cantoneiras HUD (assinatura do site) */
.plan-corners { position: absolute; inset: 0; pointer-events: none; z-index: 2; opacity: .5; transition: var(--transition); }
.plan-corners::before, .plan-corners::after { content: ''; position: absolute; width: 20px; height: 20px; border: 2px solid rgba(255,138,42,.5); }
.plan-corners::before { top: 9px; left: 9px; border-right: none; border-bottom: none; border-top-left-radius: 10px; }
.plan-corners::after { bottom: 9px; right: 9px; border-left: none; border-top: none; border-bottom-right-radius: 10px; }
.plan:hover .plan-corners { opacity: 1; }
.plan-featured {
  --ty: -14px; --sc: 1.04;
  border: 1px solid transparent;
  overflow: visible;
  background:
    linear-gradient(#0e0e12, #0e0e12) padding-box,
    conic-gradient(from var(--spin-angle),
      rgba(255,106,0,0) 0deg, #ff6a13 80deg, #ffa347 140deg,
      #ff4d00 220deg, rgba(255,106,0,0) 300deg) border-box;
  box-shadow: 0 0 0 1px rgba(255,106,0,.16), 0 30px 80px -24px rgba(255,106,0,.55), 0 60px 130px -50px rgba(255,106,0,.5);
  animation: borderSpin 5s linear infinite;
}
@keyframes borderSpin { to { --spin-angle: 360deg; } }
.plan-featured:hover { --ty: -20px; }
/* selo flutuando sobre a borda superior do destaque */
.plan-tag { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; background: linear-gradient(115deg, var(--accent), var(--accent-2)); color: #fff; padding: 8px 18px; border-radius: 99px; white-space: nowrap; z-index: 3; animation: tagPulse 2.6s ease-in-out infinite; }
@keyframes tagPulse {
  0%, 100% { box-shadow: 0 10px 26px -6px rgba(255,106,0,.6), 0 0 0 0 rgba(255,106,0,.5); }
  50% { box-shadow: 0 10px 30px -4px rgba(255,106,0,.75), 0 0 0 10px rgba(255,106,0,0); }
}
.plan-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.plan-name { font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: #ffa347; }
.plan-idx { font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: .1em; color: rgba(255,255,255,.26); }
.plan-featured .plan-idx { visibility: hidden; } /* dá lugar ao selo "Mais escolhido" */
.plan-speed { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: #fff; }
.plan-speed span { font-size: 4rem; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; background: linear-gradient(115deg, #e05000, #ff6a13 35%, #ffa347 55%, #ffd9b8 70%, #ff6a13 90%); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: speedGrad 4.5s ease-in-out infinite alternate; filter: drop-shadow(0 6px 24px rgba(255,106,0,.35)); }
@keyframes speedGrad { to { background-position: 100% 0; } }
/* medidor de velocidade (preenchido via --meter no HTML) */
.plan-meter { position: relative; height: 6px; border-radius: 99px; background: rgba(255,255,255,.09); margin: 18px 0 18px; overflow: hidden; }
.plan-meter::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0, transparent calc(20% - 2px), #0b0b0e calc(20% - 2px), #0b0b0e 20%); }
.plan-meter i { position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(90deg, #b13c00, #ff6a13 60%, #ffa347); box-shadow: 0 0 16px rgba(255,106,0,.55); transform: scaleX(var(--meter, .5)); transform-origin: left center; transition: transform 1.1s cubic-bezier(.22,1,.36,1) .3s; }
.plan-meter i::after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 46%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent); animation: meterSheen 2.8s ease-in-out infinite; }
@keyframes meterSheen { 0% { transform: translateX(-110%); } 55%, 100% { transform: translateX(320%); } }
.plan.reveal:not(.visible) .plan-meter i { transform: scaleX(0); }
.plan-desc { font-size: 14px; color: #a6a6af; min-height: 66px; margin-bottom: 18px; }
.plan-price { display: flex; align-items: center; margin-bottom: 22px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; background: linear-gradient(120deg, rgba(255,106,0,.12), rgba(255,106,0,.03) 70%); }
.plan-featured .plan-price { border-color: rgba(255,138,42,.3); background: linear-gradient(120deg, rgba(255,106,0,.22), rgba(255,106,0,.05) 70%); box-shadow: inset 0 0 34px -14px rgba(255,106,0,.4); }
.plan-price .price { display: flex; align-items: flex-start; gap: 2px; color: #fff; }
.price { font-family: var(--font-display); font-variant-numeric: tabular-nums; }
.price .cur { font-size: 15px; font-weight: 700; margin-top: 8px; color: #ffa347; }
.price .val { font-size: 44px; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.price .cents { font-size: 18px; font-weight: 700; margin-top: 5px; }
.price .per { align-self: flex-end; font-family: var(--font); font-size: 13px; color: #9a9aa3; font-weight: 600; margin-bottom: 5px; margin-left: 5px; }
.plan-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan-feats li { position: relative; padding-left: 30px; font-size: 14.5px; color: #e8e8ee; }
.plan-feats li::before { content: ''; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 6px; background: rgba(255,106,0,.14); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffa347' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }
.plan .btn-outline { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.2); color: #fff; }
.plan .btn-outline:hover { border-color: var(--brand-2); color: var(--brand-2); }
.plan-perk { display: block; margin-top: 12px; text-align: center; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .08em; color: #ffbf8a; text-shadow: 0 0 14px rgba(255,138,42,.4); }
.plans-note { text-align: center; color: #85858e; font-size: 13px; margin-top: 34px; }
@media (prefers-reduced-motion: reduce) {
  .fiber-line i, .plan-tag, .plan-speed span, .plan-meter i::after, .plan-featured { animation: none; }
}

/* ---------- Vantagens (bento) ---------- */
#vantagens { position: relative; }
#vantagens .section-head .hl { font-style: normal; background: linear-gradient(115deg, #ff6a13, #ffa347); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Mascote que entra pelo canto direito na altura do título
   (ancorado na BORDA da tela: o braço robótico parece vir de fora dela) */
.vantagens-mascote {
  position: absolute; top: 86px; right: 0; z-index: 2;
  width: clamp(130px, 14vw, 200px);
  opacity: 0; transform: translateX(150%) scaleX(var(--flip, 1));
  pointer-events: none; user-select: none;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.22));
}
.vantagens-mascote.fallback { --flip: -1; } /* herói espelhado, apontando pro título */
#vantagens .section-head.visible + .vantagens-mascote,
#vantagens .section-head.visible ~ .vantagens-mascote {
  animation: mascoteEntra .9s cubic-bezier(.22,.9,.32,1.12) .25s forwards,
             mascoteFlutua 5s ease-in-out 1.6s infinite;
}
@keyframes mascoteEntra {
  from { opacity: 0; transform: translateX(150%) scaleX(var(--flip, 1)) rotate(6deg); }
  to   { opacity: 1; transform: translateX(0) scaleX(var(--flip, 1)) rotate(0deg); }
}
@keyframes mascoteFlutua {
  0%, 100% { transform: translateX(0) scaleX(var(--flip, 1)) translateY(0); }
  50%      { transform: translateX(0) scaleX(var(--flip, 1)) translateY(-9px); }
}

.features { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; position: relative; }
.feature { position: relative; z-index: 1; display: flex; align-items: stretch; gap: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; transition: var(--transition); overflow: hidden; }
.feature::after { content: ''; position: absolute; top: -40%; right: -20%; width: 220px; height: 220px; background: var(--gradient-soft); border-radius: 50%; filter: blur(30px); opacity: 0; transition: var(--transition); }
.feature:hover { transform: translateY(-6px); border-color: var(--line-neon); box-shadow: var(--shadow-md), 0 0 36px -14px rgba(255,138,42,.4); }
.feature:hover::after { opacity: 1; }
.feature > * { position: relative; z-index: 1; }
/* filete gradiente na base */
.feature::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--fa, var(--brand)) 35%, var(--fa, var(--brand)) 65%, transparent); opacity: .8; }
/* ícone em medalhão redondo com halo da cor do card (centralizado na altura do card) */
.feat-icon { display: grid; place-items: center; flex-shrink: 0; align-self: center; width: 86px; height: 86px; border-radius: 50%; background: var(--surface-solid); color: var(--fa, var(--brand)); border: 1px solid var(--line); box-shadow: 0 16px 30px -18px rgba(0,0,0,.35); box-shadow: 0 16px 30px -18px rgba(0,0,0,.35), 0 0 0 10px color-mix(in srgb, var(--fa, #ff7a1f) 7%, transparent); }
.feature h3 { font-size: 1.22rem; margin-bottom: 9px; }
.feature p { color: var(--ink-soft); font-size: 15px; }
/* texto alinhado pelo topo: os títulos ficam na mesma altura em todos os cards */
.feat-body { align-self: flex-start; }
/* risquinho colorido embaixo do título */
.feat-body h3::after { content: ''; display: block; width: 28px; height: 3px; border-radius: 99px; background: var(--fa, var(--brand)); margin-top: 10px; }
/* conectores luminosos entre os cards (posicionados pelo main.js) */
.feat-link { position: absolute; z-index: 0; height: 2px; pointer-events: none; background: linear-gradient(90deg, transparent, var(--line-neon) 30%, var(--line-neon) 70%, transparent); }
.feat-link.v { width: 2px; background: linear-gradient(180deg, transparent, var(--line-neon) 30%, var(--line-neon) 70%, transparent); }
.feat-link::after { content: ''; position: absolute; top: 50%; left: 50%; width: 7px; height: 7px; transform: translate(-50%,-50%); border-radius: 50%; background: var(--lc, var(--brand)); animation: featNode 2.6s ease-in-out infinite; }
@keyframes featNode { 0%, 100% { box-shadow: 0 0 4px var(--lc, var(--brand)); } 50% { box-shadow: 0 0 14px var(--lc, var(--brand)), 0 0 0 4px rgba(255,255,255,.06); } }
.feature:nth-child(1) { grid-column: span 3; }
.feature:nth-child(2) { grid-column: span 3; }
.feature:nth-child(3) { grid-column: span 2; }
.feature:nth-child(4) { grid-column: span 2; }
.feature:nth-child(5) { grid-column: span 2; }

/* ---------- Comparativo (versus) ---------- */
.versus { display: grid; grid-template-columns: 195px minmax(0, 1fr) 195px; gap: 20px; align-items: center; }
/* Dimensiona pela ALTURA pra que herói (mais largo) e bravo (mais estreito) fiquem do mesmo tamanho visual. */
.versus-mascot img { height: 340px; width: auto; max-width: 100%; margin: 0 auto; filter: drop-shadow(0 18px 30px rgba(15,14,12,.22)); animation: mascot-float 4.5s ease-in-out infinite; }
/* Arte "brava" definitiva é colorida — só remove o flutuar. */
.versus-mascot-sad img { animation: none; }
/* Fallback (usa o mascote feliz): acinzenta e espelha pra disfarçar. */
.versus-mascot-sad.fallback img { filter: grayscale(1) brightness(.92); transform: scaleX(-1) rotate(3deg); opacity: .9; }
@keyframes mascot-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }

.versus-board { display: grid; gap: 10px; }
.versus-heads, .versus-row { display: grid; grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr); gap: 10px; align-items: center; }
.versus-pill { justify-self: center; padding: 10px 26px; border-radius: 999px; font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; }
.versus-pill-us { background: var(--gradient-brand); color: #fff; box-shadow: var(--shadow-brand); }
.versus-pill-them { background: #3f3f46; color: #d4d4d8; }
.versus-heads { margin-bottom: 4px; }

.versus-tag { justify-self: center; font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px; padding: 6px 10px; white-space: nowrap; }
.versus-cell { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); font-size: 14.5px; font-weight: 600; color: var(--ink); }
.versus-us { border-color: rgba(255,106,0,.28); box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255,106,0,.1); }
.versus-them { color: var(--ink-soft); background: var(--surface-2); font-weight: 500; }
.versus-icon { flex-shrink: 0; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--gradient-brand); color: #fff; box-shadow: 0 6px 16px -6px rgba(255,106,0,.55); }
.versus-icon-x { background: #71717a; box-shadow: none; }

.versus-cta { margin-top: 34px; display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; background: var(--gradient); border-radius: var(--radius); padding: 26px 36px; box-shadow: var(--shadow-brand); }
.versus-cta p { color: #fff; font-size: 19px; line-height: 1.4; }
.versus-cta p strong { display: block; font-family: var(--font-display); font-size: 22px; }

@media (max-width: 1020px) {
  .versus { grid-template-columns: minmax(0, 1fr); }
  .versus-mascot-sad { display: none; }
  .versus-mascot-happy { order: -1; }
  .versus-mascot-happy img { height: 240px; }
}
@media (max-width: 680px) {
  .versus-heads { display: none; }
  .versus-row { grid-template-columns: minmax(0, 1fr); gap: 8px; padding-bottom: 16px; border-bottom: 1px dashed var(--line); }
  .versus-row:last-child { border-bottom: none; padding-bottom: 0; }
  .versus-tag { order: -1; }
  .versus-cell::before { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .75; margin-right: auto; order: 2; padding-left: 8px; }
  .versus-us::before { content: 'Novanet'; color: var(--brand); }
  .versus-them::before { content: 'Comum'; }
  .versus-cta { justify-content: center; text-align: center; }
}

/* ---------- Internet para empresas (banner unificado estilo Space) ---------- */
.eyebrow-light { color: var(--brand-2) !important; }
.eyebrow-light::before { background: linear-gradient(90deg, transparent, var(--brand-2)) !important; }
.eyebrow-light::after { background: linear-gradient(90deg, var(--brand-2), transparent) !important; }

.biz-space { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: stretch; min-height: 440px; background: var(--hero-bg); border: 1px solid rgba(255,255,255,.14); border-radius: 26px; padding: 22px; overflow: hidden; box-shadow: var(--shadow-lg), 0 0 90px -34px rgba(255,106,0,.55); }
/* A foto do escritório cobre o banner INTEIRO — fica atrás do card e das abas (integrada, não isolada) */
.biz-space-photo { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.biz-space-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .5; filter: saturate(.85) contrast(1.02); }
.biz-space-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, #050505 8%, rgba(5,5,5,.86) 42%, rgba(5,5,5,.5) 72%, rgba(5,5,5,.7) 100%), radial-gradient(680px 380px at 12% 0%, rgba(255,106,0,.22), transparent 60%); }

/* Card grande à esquerda */
.biz-space-main { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; padding: 34px clamp(24px, 3vw, 44px); color: #fff; }
.biz-chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; backdrop-filter: blur(6px); margin-bottom: 16px; }
.biz-chip svg { color: var(--brand-2); }
.biz-space-main .eyebrow { margin-bottom: 12px; }
.biz-space-main h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.08; color: #fff; margin-bottom: 16px; max-width: 15ch; }
.biz-space-main p { color: #c5c5cd; font-size: 1.08rem; line-height: 1.6; margin-bottom: 28px; max-width: 430px; }
.biz-space-bar { width: min(320px, 60%); height: 4px; margin-top: 30px; border-radius: 999px; background: var(--gradient-brand); box-shadow: 0 0 22px -4px rgba(255,106,0,.7); }

/* Abas verticais coloridas à direita */
.biz-tabs { position: relative; z-index: 1; display: flex; gap: 12px; align-items: stretch; }
.biz-tab { position: relative; width: 74px; display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 18px 0; border-radius: 20px; background: var(--gradient); box-shadow: 0 18px 40px -18px rgba(255,77,0,.75), inset 0 1px 0 rgba(255,255,255,.18); overflow: hidden; transition: var(--transition); cursor: default; }
.biz-tab::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.18), transparent 42%); pointer-events: none; }
.biz-tab:hover { transform: translateY(-4px); box-shadow: 0 26px 52px -18px rgba(255,77,0,.9), inset 0 1px 0 rgba(255,255,255,.25); }
.biz-tab-ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(0,0,0,.22); color: #fff; flex-shrink: 0; }
.biz-tab-label { writing-mode: vertical-rl; transform: rotate(180deg); color: #fff; font-family: var(--font-mono); font-weight: 600; font-size: 13.5px; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }

/* ---------- Página de teste de velocidade: dicas ---------- */
.speed-tips { margin-top: 42px; padding: 30px clamp(22px, 3vw, 38px); border-radius: 22px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.13); }
.speed-tips h3 { color: #fff; font-size: 1.18rem; margin-bottom: 20px; }
.speed-tips ul { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 28px; margin: 0 0 24px; padding: 0; }
.speed-tips li { display: flex; gap: 12px; align-items: flex-start; color: #c9c9d1; font-size: 14.5px; line-height: 1.55; }
.tip-num { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--gradient); color: #fff; font-family: var(--font-mono); font-weight: 700; font-size: 13px; box-shadow: 0 6px 16px -6px rgba(255,77,0,.7); }
.speed-tips-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.speed-tips-cta span { color: #fff; font-weight: 600; font-size: 15px; }
@media (max-width: 760px) {
  .speed-tips ul { grid-template-columns: 1fr; }
}

/* ---------- Cobertura ---------- */
.cobertura-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cobertura-text .eyebrow { margin-bottom: 18px; }
.cobertura-text h2 { font-size: clamp(2rem,3.6vw,2.7rem); margin-bottom: 14px; }
.cobertura-text > p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 28px; max-width: 460px; }
.cep-form { display: flex; gap: 10px; max-width: 470px; }
.cep-form input { flex: 1; padding: 16px 20px; border: 1.5px solid var(--line-strong); border-radius: 12px; font-size: 15px; font-family: var(--font-mono); letter-spacing: .04em; background: var(--surface); color: var(--ink); transition: var(--transition); }
.cep-form input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(255,106,0,.16), var(--glow-neon); }
.cep-result { margin-top: 16px; font-weight: 600; font-size: 15px; min-height: 24px; line-height: 1.5; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cep-result:empty { display: none; }
.cep-result.ok { color: #22c55e; }
.cep-result.err { color: #ef4444; }
.cep-result.warn { color: #f59e0b; }
.cep-result.load { color: var(--ink-soft); }
.cep-result strong { font-weight: 800; }
.cep-cities { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.cep-cities span { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); padding: 6px 13px; border-radius: 8px; }
:root[data-theme="dark"] .cep-cities span { background: var(--surface); }
.cobertura-visual { display: grid; place-items: center; }
/* Mapa real (Google Maps) da região de cobertura */
.map-card { position: relative; width: 100%; max-width: 520px; aspect-ratio: 4/3; background: #e8eaed; border: 1px solid rgba(15,23,42,.1); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg), 0 0 60px -24px rgba(255,106,0,.35); }
.map-embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-label { position: absolute; z-index: 4; bottom: 26px; left: 50%; transform: translateX(-50%); background: rgba(10,8,6,.78); border: 1px solid rgba(255,138,42,.3); color: #ffe0bf; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; font-weight: 500; padding: 8px 16px; border-radius: 8px; backdrop-filter: blur(6px); white-space: nowrap; pointer-events: none; }

/* ---------- 2ª via de fatura ---------- */
.fatura-card { max-width: 560px; margin: 0 auto; position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); }
.fatura-card::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px; background: linear-gradient(90deg, transparent, var(--line-neon), transparent); }
.fatura-form .field { margin-bottom: 16px; }
.fatura-form label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.fatura-form input { width: 100%; padding: 15px 18px; border: 1.5px solid var(--line-strong); border-radius: 12px; font-size: 16px; font-family: var(--font-mono); letter-spacing: .03em; background: var(--bg); color: var(--ink); transition: var(--transition); }
.fatura-form input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(255,106,0,.14), var(--glow-neon); }
.fatura-form input.invalid { border-color: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,.12); }
#faturaSubmit[disabled] { opacity: .6; cursor: not-allowed; }
#faturaSubmit.loading { pointer-events: none; }
#faturaSubmit .btn-spin { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spinFast .7s linear infinite; }
@keyframes spinFast { to { transform: rotate(360deg); } }

.fatura-result { margin-top: 22px; }
.fatura-result[hidden] { display: none; }
.fatura-msg { padding: 16px 18px; border-radius: 12px; font-size: 14.5px; font-weight: 600; display: flex; align-items: flex-start; gap: 10px; }
.fatura-msg.err { background: rgba(239,68,68,.08); color: #ef4444; border: 1px solid rgba(239,68,68,.25); }
.fatura-msg.info { background: rgba(255,106,0,.08); color: var(--brand); border: 1px solid rgba(255,106,0,.25); }

.invoice { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--bg); }
.invoice + .invoice { margin-top: 14px; }
.invoice-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 18px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
:root[data-theme="dark"] .invoice-head { background: var(--surface); }
.invoice-ref { font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.invoice-ref strong { display: block; font-size: 15px; color: var(--ink); }
.invoice-status { font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; padding: 5px 12px; border-radius: 7px; white-space: nowrap; text-transform: uppercase; letter-spacing: .1em; }
.invoice-status.aberto { background: rgba(245,158,11,.14); color: #b45309; border: 1px solid rgba(245,158,11,.3); }
.invoice-status.pago { background: rgba(34,197,94,.14); color: #16a34a; border: 1px solid rgba(34,197,94,.3); }
.invoice-status.vencido { background: rgba(239,68,68,.14); color: #ef4444; border: 1px solid rgba(239,68,68,.3); }
:root[data-theme="dark"] .invoice-status.aberto { color: #fbbf24; }
:root[data-theme="dark"] .invoice-status.pago { color: #4ade80; }
.invoice-body { padding: 18px; }
.invoice-amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.invoice-amount strong { font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: -.03em; color: var(--ink); }
.invoice-amount span { font-size: 14px; color: var(--ink-soft); }
.invoice-due { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }
.invoice-due b { color: var(--ink); }

.pix-box { background: var(--surface-2); border: 1px dashed var(--line-neon); border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
:root[data-theme="dark"] .pix-box { background: var(--surface); }
.pix-code { flex: 1; font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pix-copy { flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--brand); background: rgba(255,106,0,.1); padding: 8px 13px; border-radius: 8px; transition: var(--transition); }
.pix-copy:hover { background: rgba(255,106,0,.2); box-shadow: var(--glow-neon); }
.pix-copy.done { background: rgba(34,197,94,.14); color: #16a34a; }
:root[data-theme="dark"] .pix-copy.done { color: #4ade80; }
.invoice-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.invoice-actions .btn { flex: 1; min-width: 140px; }

/* Mascote espiando ao lado do card de fatura */
.card-mascot { position: absolute; right: -178px; bottom: -14px; width: 168px; pointer-events: none; filter: drop-shadow(0 14px 28px rgba(0,0,0,.3)); animation: float 5.5s ease-in-out infinite; }
@media (max-width: 1100px) { .card-mascot { display: none; } }

.fatura-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 24px; }
.fatura-link { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 700; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line); padding: 12px 18px; border-radius: 11px; transition: var(--transition); }
.fatura-link:hover { color: var(--brand); border-color: var(--brand); transform: translateY(-2px); box-shadow: 0 0 26px -10px rgba(255,138,42,.5); }

/* ---------- Velocidade + status da rede (HUD) ---------- */
.netgrid { display: grid; grid-template-columns: minmax(0, 400px) 1fr; gap: 44px; align-items: center; }
.speed-card { position: relative; width: 100%; background: linear-gradient(170deg, rgba(22,20,18,.8), rgba(9,8,7,.92)); border: 1px solid rgba(255,255,255,.18); border-radius: 22px; padding: 26px; backdrop-filter: blur(16px); box-shadow: var(--shadow-lg), 0 0 60px -24px rgba(255,106,0,.5); }
.speed-card::before, .speed-card::after { content: ''; position: absolute; width: 20px; height: 20px; border: 2px solid rgba(92,224,255,.55); pointer-events: none; }
.speed-card::before { top: 9px; left: 9px; border-right: none; border-bottom: none; border-top-left-radius: 9px; }
.speed-card::after { bottom: 9px; right: 9px; border-left: none; border-top: none; border-bottom-right-radius: 9px; }
.speed-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: #e9e9ee; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 10px rgba(34,197,94,.9); animation: pulse-green 1.6s infinite; }
.speed-phase { font-family: var(--font-mono); font-size: 11.5px; color: #9c9ca6; }
.gauge { position: relative; display: grid; place-items: center; padding: 8px 0 0; }
/* halo pulsando atrás do velocímetro */
.gauge::before { content: ''; position: absolute; top: 8%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,106,0,.26), transparent 65%); animation: glowPulse 3.6s ease-in-out infinite; pointer-events: none; }
@keyframes glowPulse { 0%,100% { transform: scale(1); opacity: .7; } 50% { transform: scale(1.18); opacity: 1; } }
.gauge-svg { width: 100%; height: auto; }
#gaugeArc { filter: drop-shadow(0 0 7px rgba(255,138,42,.6)); transition: filter var(--transition); }
#gaugeTip { transition: opacity var(--transition); }
.gauge-num { position: absolute; top: 40%; text-align: center; }
.gauge-num span { font-family: var(--font-display); font-variant-numeric: tabular-nums; font-size: 50px; font-weight: 700; color: #fff; letter-spacing: -.04em; text-shadow: 0 0 34px rgba(255,138,42,.5); }
.gauge-num small { display: block; font-family: var(--font-mono); font-size: 12px; color: #9c9ca6; font-weight: 500; margin-top: -2px; letter-spacing: .14em; text-transform: uppercase; }
.speed-card-foot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.sc-metric { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 11px 12px; min-width: 0; transition: var(--transition); }
/* chip da métrica sendo medida agora */
.sc-metric.active { border-color: rgba(255,138,42,.5); background: rgba(255,138,42,.09); box-shadow: 0 0 24px -8px rgba(255,138,42,.65); }
.sc-ico { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.sc-ico.dl { background: rgba(255,138,42,.14); color: #ffa347; box-shadow: inset 0 0 12px rgba(255,138,42,.15); }
.sc-ico.ul { background: rgba(30,167,221,.16); color: #5ce0ff; box-shadow: inset 0 0 12px rgba(92,224,255,.16); }
.sc-ico.ping { background: rgba(74,222,128,.13); color: #4ade80; box-shadow: inset 0 0 12px rgba(74,222,128,.14); }
.sc-metric-txt { min-width: 0; }
.sc-metric-txt span { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #8d8d97; white-space: nowrap; }
.sc-metric-txt strong { font-family: var(--font-display); font-size: 14.5px; color: #fff; white-space: nowrap; }
.speed-retest { width: 100%; margin-top: 14px; padding: 12px; border-radius: 11px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.2); color: #fff; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition); }
.speed-retest:hover { background: rgba(255,255,255,.14); border-color: rgba(255,138,42,.5); box-shadow: var(--glow-neon); }
.speed-retest[disabled] { opacity: .55; cursor: not-allowed; }

.status-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 26px; }
.status-item { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); padding: 22px; transition: var(--transition); }
.status-item:hover { border-color: rgba(255,138,42,.35); box-shadow: 0 0 26px -12px rgba(255,138,42,.45); }
.status-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.status-dot.ok { background: #22c55e; box-shadow: 0 0 14px rgba(34,197,94,.8); animation: pulse-green 2.2s infinite; }
.status-item strong { display: block; font-size: 15px; }
.status-item span { font-family: var(--font-mono); font-size: 12px; color: #4ade80; letter-spacing: .04em; }
.status-updated { color: #9c9ca6; font-size: 14px; }
.status-updated strong { color: #fff; }
.netinfo .status-grid { grid-template-columns: 1fr 1fr; margin-bottom: 18px; }
.netinfo .status-updated { text-align: left; }

/* Painel NOC — tráfego ao vivo (decorativo) */
.noc-panel { position: relative; background: linear-gradient(170deg, rgba(22,20,18,.72), rgba(9,8,7,.86)); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); padding: 20px 22px 18px; margin-bottom: 18px; overflow: hidden; }
.noc-panel::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 100% 27px; pointer-events: none; }
.noc-head { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.noc-title { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: #e9e9ee; }
.noc-legend { display: inline-flex; gap: 14px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; color: #8d8d97; }
.noc-legend span { display: inline-flex; align-items: center; gap: 6px; }
.noc-legend i { width: 8px; height: 8px; border-radius: 2px; }
.noc-legend .dot-dl { background: #ffa347; box-shadow: 0 0 8px rgba(255,138,42,.8); }
.noc-legend .dot-ul { background: #5ce0ff; box-shadow: 0 0 8px rgba(92,224,255,.8); }
.traffic { position: relative; display: flex; align-items: flex-end; gap: 5px; height: 112px; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.16); padding-bottom: 2px; }
.traffic span { flex: 1; min-width: 0; height: calc(var(--h) * 100%); border-radius: 3px 3px 0 0; transform-origin: bottom; background: linear-gradient(180deg, #ffa347, rgba(255,106,0,.2)); box-shadow: 0 0 14px -3px rgba(255,138,42,.5); opacity: .92; animation: barPulse 2.6s ease-in-out infinite alternate; animation-delay: calc(var(--i) * -.37s); }
.traffic span.ul { background: linear-gradient(180deg, #5ce0ff, rgba(30,167,221,.2)); box-shadow: 0 0 14px -3px rgba(92,224,255,.5); }
@keyframes barPulse { from { transform: scaleY(.45); } to { transform: scaleY(1); } }
.noc-meta { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.noc-chip { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 10px 13px; min-width: 0; }
.noc-chip span { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #8d8d97; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.noc-chip strong { font-family: var(--font-display); font-size: 16px; color: #fff; }
.noc-chip:nth-child(1) strong { color: #4ade80; text-shadow: 0 0 14px rgba(74,222,128,.45); }
.noc-chip:nth-child(3) strong { color: var(--brand-2); text-shadow: 0 0 14px rgba(255,138,42,.45); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: var(--transition); }
.faq-item[open] { border-color: var(--line-neon); box-shadow: 0 0 30px -14px rgba(255,138,42,.45); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px; font-weight: 700; font-size: 16px; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-mono); font-size: 24px; font-weight: 400; color: var(--brand-2); transition: transform var(--transition); line-height: 1; text-shadow: 0 0 12px rgba(255,138,42,.5); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; }
.faq-body a { color: var(--brand); font-weight: 600; }

/* ---------- Contato ---------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info .eyebrow { margin-bottom: 18px; }
.contact-info h2 { font-size: clamp(2rem,3.6vw,2.7rem); margin-bottom: 14px; }
.contact-info > p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 28px; max-width: 420px; }
.contact-list { display: flex; flex-direction: column; gap: 10px; }
.contact-item { display: flex; align-items: center; gap: 14px; color: var(--ink); font-weight: 600; padding: 10px; border-radius: 14px; border: 1px solid transparent; transition: var(--transition); }
.contact-item:hover { background: var(--surface); border-color: var(--line); box-shadow: var(--shadow-sm); }
.contact-item .ci { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--gradient-soft); color: var(--brand); flex-shrink: 0; border: 1px solid var(--line-neon); }
.contact-item.is-whats .ci { background: rgba(34,197,94,.12); color: #16a34a; border-color: rgba(34,197,94,.42); }
.contact-item.is-mail .ci { background: rgba(43,127,255,.12); color: #2b7fff; border-color: rgba(43,127,255,.4); }
.contact-item .ct { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.contact-item .ct strong { font-weight: 700; font-size: 15px; }
.contact-item .ct small { font-weight: 500; color: var(--ink-soft); font-size: 13px; }
.contact-badge { margin-left: auto; font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 999px; white-space: nowrap; letter-spacing: .2px; flex-shrink: 0; }
.cb-green { color: #16a34a; background: rgba(34,197,94,.14); }
.cb-amber { color: var(--brand); background: var(--gradient-soft); }
.cb-blue  { color: #2b7fff; background: rgba(43,127,255,.13); }

/* selos de confiança */
.contact-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--line); }
.ct-item { display: flex; align-items: flex-start; gap: 11px; }
.ct-item .ct-ico { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--gradient-soft); color: var(--brand); border: 1px solid var(--line-neon); flex-shrink: 0; }
.ct-item strong { display: block; font-size: 12.5px; font-weight: 700; line-height: 1.25; margin-bottom: 2px; }
.ct-item small { color: var(--ink-soft); font-size: 11.5px; line-height: 1.35; }
.contact-form { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); }
.contact-form::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px; background: linear-gradient(90deg, transparent, var(--line-neon), transparent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line-strong); border-radius: 11px; font-size: 15px; background: var(--bg); color: var(--ink); transition: var(--transition); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(255,106,0,.13), var(--glow-neon); }
.field textarea { resize: vertical; min-height: 92px; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 12px; text-align: center; }
.form-note svg { vertical-align: -2px; margin-right: 5px; opacity: .7; }

/* título com destaque */
.contact-info h2 .hl { font-style: normal; background: linear-gradient(115deg, #ff6a13, #ffa347); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* campos com ícone */
.field-wrap { position: relative; }
.field-wrap .field-ico { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); pointer-events: none; transition: color var(--transition); }
.field-wrap.is-area .field-ico { top: 15px; transform: none; }
.field-wrap input, .field-wrap select, .field-wrap textarea { padding-left: 44px; }
.field-wrap select { appearance: none; -webkit-appearance: none; -moz-appearance: none; padding-right: 40px; cursor: pointer; }
.field-wrap .field-chev { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); pointer-events: none; transition: color var(--transition); }
.field-wrap:focus-within .field-ico, .field-wrap:focus-within .field-chev { color: var(--brand); }

@media (max-width: 600px) {
  .contact-trust { grid-template-columns: 1fr; gap: 12px; }
  .contact-badge { display: none; }
}

/* ---------- CTA final ---------- */
.cta-final { padding: 110px 0; background: var(--hero-bg); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(760px 380px at 50% 115%, rgba(255,106,0,.32), transparent 65%), radial-gradient(420px 240px at 82% 0%, rgba(255,106,0,.14), transparent 60%); }
.cta-final::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 48px 48px; -webkit-mask-image: radial-gradient(circle at 50% 100%, #000, transparent 72%); mask-image: radial-gradient(circle at 50% 100%, #000, transparent 72%); }
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; text-align: left; }
.cta-final h2 { font-size: clamp(2rem,4.4vw,3.2rem); margin-bottom: 14px; color: #fff; }
.cta-final p { font-size: 1.3rem; color: #ffd7ae; margin-bottom: 34px; font-weight: 600; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
/* Mascote Novanet no CTA */
.cta-mascot { display: grid; place-items: center; }
.cta-mascot img { max-height: 400px; filter: drop-shadow(0 22px 44px rgba(0,0,0,.55)) drop-shadow(0 0 46px rgba(30,167,221,.35)); animation: float 5s ease-in-out infinite; }
@media (max-width: 860px) {
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-content: center; }
  .cta-mascot { order: -1; }
  .cta-mascot img { max-height: 240px; }
}

/* ---------- Footer ---------- */
.site-footer { position: relative; background: #060607; color: #b6b6be; padding: 72px 0 0; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,138,42,.4), rgba(255,106,0,.25), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 52px; }
.footer-brand .brand { color: #fff; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; max-width: 320px; margin-bottom: 22px; color: #97979f; }
.socials { display: flex; gap: 10px; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: #b6b6be; transition: var(--transition); }
.socials a:hover { background: var(--gradient); border-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 10px 26px -6px rgba(255,106,0,.6); }
.footer-col h4 { color: #fff; font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14.5px; color: #97979f; padding: 5px 0; transition: color var(--transition), text-shadow var(--transition); }
.footer-col a:hover { color: var(--brand-2); text-shadow: 0 0 14px rgba(255,138,42,.5); }
.footer-hours { display: block; font-size: 13px; color: #64748b; margin-top: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 12px; color: #64748b; flex-wrap: wrap; }

/* ---------- Flutuantes ---------- */
.floats { position: fixed; bottom: 26px; right: 26px; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.whatsapp-float { display: inline-flex; align-items: center; background: var(--whats); color: #fff; padding: 16px; border-radius: 999px; box-shadow: 0 14px 34px rgba(37,211,102,.48), 0 0 30px -6px rgba(37,211,102,.6); transition: var(--transition); overflow: hidden; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(37,211,102,.6); }
.whatsapp-float-label { max-width: 0; opacity: 0; white-space: nowrap; font-weight: 700; transition: var(--transition); }
.whatsapp-float:hover .whatsapp-float-label { max-width: 140px; opacity: 1; margin-left: 10px; }
.whatsapp-float svg { animation: wa-ring 3s ease-in-out infinite; }
@keyframes wa-ring { 0%,88%,100%{transform:rotate(0);} 90%{transform:rotate(-12deg);} 94%{transform:rotate(12deg);} 96%{transform:rotate(-6deg);} }
.to-top { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--surface); color: var(--ink); border: 1px solid var(--line-strong); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: var(--brand-2); border-color: var(--brand); box-shadow: var(--glow-neon); }

/* ---------- Banner de cookies (LGPD) ---------- */
.cookie-banner { position: fixed; bottom: 22px; left: 22px; right: 22px; max-width: 540px; margin: 0 auto; z-index: 150; background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-lg); transform: translateY(180%); transition: transform .45s cubic-bezier(.4,0,.2,1); }
.cookie-banner.show { transform: none; }
.cookie-banner p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { color: var(--brand); font-weight: 600; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .plans { grid-template-columns: repeat(2,1fr); }
  .plan:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .plan-featured { --ty: 0px; --sc: 1; }
  .plan-featured:hover { --ty: -8px; }
  .fiber-line { display: none; }
  .features { grid-template-columns: repeat(2,1fr); }
  .feature { grid-column: span 1 !important; }
  .feature:nth-child(5) { grid-column: span 2 !important; }
  .feat-link { display: none; }
  .vantagens-mascote { width: 110px; top: 66px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--header-bg-solid); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line);
    padding: 8px 22px 22px; box-shadow: var(--shadow-md);
    transform: translateY(-150%); transition: transform var(--transition); z-index: 99;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav a::after { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }

  .hero { padding: 56px 0 58px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: 2; }
  .holo-card { max-width: 430px; margin: 0 auto; }
  .hud-chip.hc1 { left: 2px; }
  .hud-chip.hc2 { right: 2px; }
  .hud-chip.hc3 { left: 8px; }
  .hero-actions .btn { flex: 1; }
  .stats-row { grid-template-columns: 1fr 1fr; margin-top: 44px; }

  .netgrid { grid-template-columns: 1fr; gap: 30px; }
  .netgrid .speed-card { max-width: 400px; margin: 0 auto; }
  .cobertura-inner { grid-template-columns: 1fr; gap: 40px; }
  .cobertura-visual { order: -1; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .status-grid { grid-template-columns: 1fr 1fr; }
  /* Empresas: empilha o card e vira abas horizontais (2x2) */
  .biz-space { grid-template-columns: 1fr; min-height: 0; gap: 18px; }
  .biz-space-main { padding: 22px 20px 6px; }
  .biz-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .biz-tab { width: auto; flex-direction: row; align-items: center; justify-content: flex-start; gap: 11px; padding: 14px 14px; border-radius: 16px; }
  .biz-tab-ico { width: 34px; height: 34px; border-radius: 10px; }
  .biz-tab-label { writing-mode: horizontal-tb; transform: none; font-size: 11.5px; letter-spacing: .03em; white-space: normal; line-height: 1.25; }
}

/* Em telas estreitas o card fica < 400px e "583 Mbps" não cabe nos 3 chips lado a lado:
   empilha em 1 coluna (cada métrica ocupa a largura toda) e afrouxa o padding do card. */
@media (max-width: 480px) {
  .speed-card { padding: 20px 16px; }
  .speed-card-foot { grid-template-columns: 1fr; gap: 8px; }
  .sc-metric { padding: 10px 14px; }
}

@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .plans { grid-template-columns: 1fr; }
  .plan:last-child { grid-column: auto; }
  .plan-desc { min-height: 0; }
  .features { grid-template-columns: 1fr; }
  .feature { grid-column: span 1 !important; }
  .vantagens-mascote { display: none; }
  .feat-icon { width: 66px; height: 66px; }
  .feat-icon svg { width: 26px; height: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: 1fr; }
  .cep-form { flex-direction: column; }
  .cep-form .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .whatsapp-float-label { display: none; }
  .cookie-actions { flex-direction: column; }
  .topbar { display: none; }
  .netinfo .status-grid { grid-template-columns: 1fr; }
  .fatura-card { padding: 24px 20px; }
  .invoice-actions .btn { min-width: 100%; }
  .fatura-links { flex-direction: column; }
  .fatura-link { justify-content: center; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hud-chip { padding: 8px 12px; }
  .hud-chip strong { font-size: 14px; }
  .holo-term { font-size: 11px; }
}

/* ============================================================
   EXPERIÊNCIA — bento de mídia (estilo streaming)
   ============================================================ */
/* seção clara: fundo branco + cards pretos com sombra suave (pedido do cliente) */
#experiencia { background: #ffffff; }
#experiencia .eyebrow { color: #e14d00; }
#experiencia .eyebrow::before { background: linear-gradient(90deg, transparent, #e14d00); }
#experiencia .eyebrow::after { background: linear-gradient(90deg, #e14d00, transparent); }
#experiencia .section-head h2 { color: #12141a; }
#experiencia .section-head p { color: #565b66; }
/* bento compacto e centralizado, tudo à vista como no mockup */
.xp-bento { display: flex; flex-direction: column; gap: 14px; max-width: 1080px; margin: 0 auto; }
/* bento montado com os cards em imagem (texto e borda já embutidos na arte).
   As artes foram recortadas no limite do card — aspectos:
   empresas 1.8736 • game 1.6756 • trabalho 1.6644 • casa 1.5281 • streaming 1.5191.
   NADA de object-fit/overflow aqui: a borda da arte fica na beirada e qualquer
   corte come o contorno. O alinhamento é por largura exata (calc), que faz as
   alturas naturais baterem sozinhas em qualquer largura de tela. */
.xp-row { display: flex; gap: 14px; align-items: flex-start; }
.xp-row-a > .xp-imgcard { flex: 1 1 0; }              /* card Empresas (grande) */
/* largura da coluna = (T − 14px·(1+1.8675)) / (1.8675·(1/1.6768 + 1/1.6644) + 1) */
.xp-col { flex: 0 0 calc((100% - 40.15px) / 3.23576); display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.xp-row-b .xp-b-casa { flex: 15166 1 0; }             /* larguras ∝ aspecto → mesma altura, sem corte */
.xp-row-b .xp-b-stream { flex: 15160 1 0; }
/* cartões: sombra suave que segue a silhueta da arte (borda embutida fica
   inteira — sem overflow/object-fit pra não decepar o contorno) */
.xp-imgcard { position: relative; display: block; border-radius: 20px; min-width: 0; filter: drop-shadow(0 10px 18px rgba(18,20,45,.28)) drop-shadow(0 2px 6px rgba(18,20,45,.16)); transition: transform .3s ease, filter .3s ease; }
.xp-imgcard > img { display: block; width: 100%; height: auto; }
.xp-imgcard:hover { transform: translateY(-4px); filter: drop-shadow(0 18px 26px rgba(18,20,45,.36)) drop-shadow(0 3px 8px rgba(18,20,45,.2)); }
.xp-hit { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; }
.xp-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #0b0b0d; transition: var(--transition); isolation: isolate; }
.xp-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.4,0,.2,1); }
/* duotone + queda pro escuro */
.xp-card::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(255,106,0,.2), transparent 50%, rgba(255,106,0,.1)); }
.xp-card::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(6,6,9,.95) 0%, rgba(6,6,9,.86) 34%, rgba(6,6,9,.42) 64%, rgba(6,6,9,.1) 100%); }
.xp-card:hover { transform: translateY(-5px); border-color: var(--line-neon); box-shadow: 0 24px 56px -20px rgba(0,0,0,.65), 0 0 44px -16px rgba(255,138,42,.45); }
.xp-card:hover > img { transform: scale(1.06); }
.xp-content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(20px, 2.4vw, 30px); color: #fff; }
.xp-content > * { max-width: 62%; }
.xp-tag { display: inline-flex; align-items: center; gap: 6px; width: fit-content; font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--cat, #ffd7ae); background: rgba(9,8,12,.66); border: 1px solid color-mix(in srgb, var(--cat, #ff8a2a) 42%, transparent); padding: 5px 11px; border-radius: 999px; margin-bottom: 12px; backdrop-filter: blur(6px); }
.xp-tag svg { width: 13px; height: 13px; }
.xp-content h3 { color: #fff; font-size: 1.25rem; margin-bottom: 6px; text-shadow: 0 2px 16px rgba(0,0,0,.55); }
.xp-content p { color: #c6d0e6; font-size: 14px; line-height: 1.5; }
.xp-big { grid-column: span 2; grid-row: span 2; }
.xp-big .xp-content > * { max-width: 54%; }
.xp-big .xp-content h3 { font-size: 1.7rem; }
.xp-big .xp-content p { font-size: 15px; }
.xp-biz .xp-content > * { max-width: 70%; }
/* itens de destaque do card Empresas */
.xp-feats { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; margin: 16px 0 4px; padding: 0; max-width: 74%; }
.xp-feats li { display: flex; align-items: center; gap: 10px; }
.xp-feats svg { width: 21px; height: 21px; color: var(--cat, #ff7a1a); flex-shrink: 0; }
.xp-feats strong { display: block; font-size: 13.5px; font-weight: 700; color: #fff; line-height: 1.2; }
.xp-feats span { display: block; font-size: 12px; color: #b9c2d6; line-height: 1.2; margin-top: 2px; }
/* link "Saiba mais" */
.xp-link { display: inline-flex; align-items: center; gap: 6px; width: fit-content; margin-top: 14px; font-family: var(--font); font-weight: 700; font-size: 13.5px; color: var(--cat, #ff7a1a); text-decoration: none; transition: gap .2s ease, opacity .2s ease; }
.xp-link svg { width: 14px; height: 14px; }
.xp-link:hover { gap: 10px; opacity: .85; }
/* faixa de logos de streaming */
.xp-logos { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.xp-logos .logo { font-family: var(--font); font-weight: 800; font-size: 11.5px; letter-spacing: -.005em; color: var(--c); background: rgba(8,8,12,.7); border: 1px solid rgba(255,255,255,.12); padding: 5px 9px; border-radius: 7px; backdrop-filter: blur(6px); white-space: nowrap; }
/* card CTA laranja (estilo Space) */
.xp-cta { grid-column: span 3; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px 32px; background: linear-gradient(120deg, #9c3f0e 0%, var(--accent) 55%, var(--accent-2) 125%); border: none; }

/* Card de Empresas dentro do bento (larguras: 2 colunas) */
.xp-biz { grid-column: span 2; }
.xp-biz-cta { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; padding: 12px 22px; border-radius: 12px; background: var(--gradient-brand); border: none; color: #fff; font-family: var(--font); font-weight: 700; font-size: 14px; cursor: pointer; box-shadow: 0 12px 28px -10px rgba(255,77,0,.6); transition: var(--transition); }
.xp-biz-cta:hover { box-shadow: 0 16px 34px -10px rgba(255,77,0,.78); transform: translateY(-2px); }
.xp-cta::before { background: none; }
.xp-cta::after { content: ''; background: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 32px 32px; -webkit-mask-image: radial-gradient(circle at 90% 10%, #000, transparent 75%); mask-image: radial-gradient(circle at 90% 10%, #000, transparent 75%); }
.xp-cta-copy { position: relative; z-index: 2; }
.xp-cta-copy h3 { color: #fff; font-size: 1.5rem; margin-bottom: 6px; }
.xp-cta-copy p { color: rgba(255,255,255,.92); font-size: 14.5px; max-width: 380px; }
.xp-cta .btn { position: relative; z-index: 2; flex-shrink: 0; }

@media (max-width: 860px) {
  /* empilha tudo: cada card mostra a arte inteira, sem cortar */
  .xp-row, .xp-col { flex-direction: column; }
  .xp-col,
  .xp-row-a > .xp-imgcard,
  .xp-row-b .xp-b-casa,
  .xp-row-b .xp-b-stream { flex: 1 1 auto; }
}
@media (max-width: 640px) {
  .xp-cta { flex-direction: column; align-items: flex-start; justify-content: center; }
}

/* Menos animação para quem prefere */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none !important; }
  .beam { display: none; }
  .vantagens-mascote { opacity: 1; transform: scaleX(var(--flip, 1)); }
}

/* ============================================================
   TOAST — notificação no lugar do alert() nativo
   ============================================================ */
.toast-stack { position: fixed; z-index: 9999; top: 20px; right: 20px; display: flex; flex-direction: column; gap: 12px; max-width: min(380px, calc(100vw - 32px)); pointer-events: none; }
.toast {
  pointer-events: auto; display: flex; align-items: flex-start; gap: 12px;
  background: var(--surface-solid); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: 14px;
  padding: 14px 16px; box-shadow: var(--shadow-lg);
  font-size: 14.5px; line-height: 1.4; font-weight: 500;
  position: relative; overflow: hidden;
  transform: translateX(120%); opacity: 0;
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s ease;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--brand); }
.toast-ico { flex: 0 0 22px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; margin-top: 1px; color: #fff; }
.toast-ico svg { width: 14px; height: 14px; }
.toast-body { flex: 1 1 auto; min-width: 0; padding-top: 1px; }
.toast-close { flex: 0 0 auto; background: none; border: 0; color: var(--ink-soft); cursor: pointer; padding: 2px; margin: -2px -4px 0 0; line-height: 0; border-radius: 6px; transition: color var(--transition), background var(--transition); }
.toast-close:hover { color: var(--ink); background: var(--surface-2); }
.toast-close svg { width: 16px; height: 16px; }
/* variantes */
.toast-error::before { background: #ef4444; }
.toast-error .toast-ico { background: #ef4444; }
.toast-warn::before { background: var(--brand); }
.toast-warn .toast-ico { background: var(--brand); }
.toast-ok::before { background: var(--ok); }
.toast-ok .toast-ico { background: var(--ok); }
/* barra de tempo */
.toast-bar { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: currentColor; opacity: .25; transform-origin: left; animation: toastbar linear forwards; }
.toast-error .toast-bar { color: #ef4444; }
.toast-warn .toast-bar { color: var(--brand); }
.toast-ok .toast-bar { color: var(--ok); }
@keyframes toastbar { from { transform: scaleX(1); } to { transform: scaleX(0); } }
@media (max-width: 520px) {
  .toast-stack { top: auto; bottom: 16px; left: 16px; right: 16px; max-width: none; }
  .toast { transform: translateY(140%); }
  .toast.show { transform: translateY(0); }
}

/* campo com erro de validação */
.field-wrap.has-error input,
.field-wrap.has-error select { border-color: #ef4444; box-shadow: 0 0 0 4px rgba(239,68,68,.12); }
.field-wrap.has-error .field-ico { color: #ef4444; }
.field-wrap.shake { animation: fieldShake .4s cubic-bezier(.36,.07,.19,.97); }
@keyframes fieldShake { 10%,90%{transform:translateX(-1px);} 20%,80%{transform:translateX(2px);} 30%,50%,70%{transform:translateX(-4px);} 40%,60%{transform:translateX(4px);} }
