/* ==========================================================================
   WEBFIBER · LANDING EXPERIMENTAL "700 MEGA" — folha de estilo
   Paleta e medidas editáveis nas variáveis abaixo.
   ========================================================================== */

:root {
  /* Paleta da marca */
  --azul-abismo: #02071A;        /* fundo base */
  --azul-noite: #041233;
  --azul-royal: #0064FF;         /* primária (mesma do site oficial) */
  --azul-vivo: #2E8BFF;
  --ciano: #00E0FF;
  --amarelo: #FCD400;            /* destaque de preço/velocidade */
  --magenta: #FF2E92;            /* badge de oferta */
  --verde-wa: #25D366;           /* WhatsApp */
  --verde-wa-2: #1FAD53;
  --branco: #FFFFFF;

  /* Vidro e bordas */
  --glass: rgba(255, 255, 255, .055);
  --glass-2: rgba(255, 255, 255, .09);
  --stroke: rgba(255, 255, 255, .12);
  --stroke-soft: rgba(255, 255, 255, .08);

  /* Texto */
  --txt: #EAF2FF;
  --txt-dim: rgba(234, 242, 255, .72);
  --txt-faint: rgba(234, 242, 255, .5);

  /* Tipografia */
  --f-display: 'Anton', Impact, sans-serif;
  --f-body: 'Poppins', system-ui, sans-serif;

  /* Ritmo */
  --radius: 22px;
  --radius-sm: 14px;
  --gap: clamp(16px, 2.4vw, 28px);
  --sec-pad: clamp(64px, 9vw, 120px);
  --header-h: 72px;
}

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  background:
    radial-gradient(1200px 800px at 85% -10%, rgba(0, 100, 255, .22), transparent 60%),
    radial-gradient(900px 700px at -10% 25%, rgba(0, 224, 255, .10), transparent 55%),
    linear-gradient(180deg, var(--azul-noite) 0%, var(--azul-abismo) 38%);
  color: var(--txt);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
summary { cursor: pointer; }
.container { width: min(1180px, 92vw); margin-inline: auto; }
.container--narrow { width: min(860px, 92vw); }
.ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
:focus-visible { outline: 3px solid var(--ciano); outline-offset: 3px; border-radius: 6px; }

/* ---------- Aurora global ---------- */
.aurora { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.aurora__orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; will-change: transform; }
.aurora__orb--a { width: 46vw; height: 46vw; background: rgba(0, 100, 255, .35); top: -12vw; right: -10vw; animation: drift 26s ease-in-out infinite alternate; }
.aurora__orb--b { width: 34vw; height: 34vw; background: rgba(0, 224, 255, .16); top: 42%; left: -14vw; animation: drift 32s ease-in-out infinite alternate-reverse; }
.aurora__orb--c { width: 30vw; height: 30vw; background: rgba(255, 46, 146, .12); bottom: -10vw; right: 8vw; animation: drift 38s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(6vw, 4vw, 0) scale(1.15); }
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-weight: 700; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .25s cubic-bezier(.2, .9, .3, 1.4), box-shadow .25s, background .25s;
  will-change: transform;
}
.btn:active { transform: scale(.96); }

.btn--wa {
  background: linear-gradient(135deg, var(--verde-wa), var(--verde-wa-2));
  color: #04230F;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .35), inset 0 1px 0 rgba(255, 255, 255, .35);
  position: relative; overflow: hidden;
}
.btn--wa::after { /* brilho que varre o botão */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .45) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform .7s ease;
}
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37, 211, 102, .5); }
.btn--wa:hover::after { transform: translateX(130%); }

.btn--ghost {
  background: var(--glass); color: var(--txt);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--glass-2); transform: translateY(-3px); border-color: rgba(255,255,255,.25); }

.btn--xl { font-size: clamp(1rem, 1.1vw + .6rem, 1.18rem); padding: 1.05em 1.9em; }
.btn--lg { font-size: 1.05rem; padding: .95em 1.7em; }
.btn--sm { font-size: .92rem; padding: .7em 1.25em; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.topbar.is-scrolled {
  background: rgba(3, 10, 30, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}
.topbar__inner { height: var(--header-h); display: flex; align-items: center; gap: 28px; }
.topbar__brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.topbar__brand img { width: 40px; height: auto; filter: drop-shadow(0 2px 10px rgba(0, 224, 255, .35)); }
.topbar__ctatxt--short { display: none; }
.topbar__name { font-weight: 800; font-size: 1.18rem; letter-spacing: .2px; display: flex; flex-direction: column; line-height: 1; }
.topbar__name small { font-size: .55rem; letter-spacing: .42em; color: var(--txt-dim); font-weight: 600; margin-top: 3px; }
.topbar__nav { display: flex; gap: 26px; font-size: .95rem; font-weight: 500; color: var(--txt-dim); }
.topbar__nav a { position: relative; padding: 6px 0; transition: color .25s; }
.topbar__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--ciano), var(--azul-royal)); border-radius: 2px; transition: width .3s;
}
.topbar__nav a:hover { color: var(--txt); }
.topbar__nav a:hover::after { width: 100%; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: min(100svh, 860px);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 34px) 0 24px;
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9;
  /* protege a área do texto (esquerda): fibra aparece mais à direita/baixo */
  mask-image: linear-gradient(100deg, transparent 0%, rgba(0,0,0,.25) 34%, #000 62%);
  -webkit-mask-image: linear-gradient(100deg, transparent 0%, rgba(0,0,0,.25) 34%, #000 62%);
}
.hero__waves {
  position: absolute; inset: auto 0 -2px 0; height: 140px; pointer-events: none;
  background:
    radial-gradient(120% 90px at 50% 115%, rgba(0, 224, 255, .25), transparent 70%);
  mask-image: linear-gradient(to top, #000 30%, transparent);
}
.hero__grid {
  position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center; gap: clamp(28px, 5vw, 64px);
}

/* — Copy — */
.badge {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: .55em 1.1em; border-radius: 999px;
  background: rgba(255, 46, 146, .14); color: #FF8AC2;
  border: 1px solid rgba(255, 46, 146, .4);
  box-shadow: 0 0 24px rgba(255, 46, 146, .25);
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .35; transform: scale(.8); } }

.hero__title { display: block; margin-top: 22px; line-height: .95; }
.hero__mega { display: flex; align-items: baseline; gap: .12em; flex-wrap: wrap; }
.hero__num {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(5.2rem, 14.5vw, 11.5rem);
  letter-spacing: .01em; color: var(--branco);
  text-shadow: 0 0 60px rgba(0, 100, 255, .55), 0 8px 30px rgba(0, 0, 0, .45);
}
.hero__unit {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(3rem, 8.2vw, 6.6rem);
  background: linear-gradient(180deg, #FFE45C, var(--amarelo) 55%, #E0A800);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: .12em .06em .06em; margin: -.12em -.06em -.06em; /* preserva acentos/brilho do clip */
  filter: drop-shadow(0 6px 24px rgba(252, 212, 0, .35));
}
.hero__price { display: block; margin-top: 6px; font-size: clamp(1.15rem, 2.3vw, 1.7rem); font-weight: 500; color: var(--txt-dim); }
.hero__price strong {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem); color: var(--branco); letter-spacing: .01em;
  text-shadow: 0 0 36px rgba(0, 224, 255, .35);
}
.hero__price strong small { font-size: .55em; }
.hero__price i { font-style: normal; font-size: .85em; color: var(--txt-faint); }

.hero__sub { margin-top: 18px; max-width: 56ch; font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--txt-dim); }
.hero__sub strong { color: var(--txt); }
.hero__sub em { font-style: normal; color: var(--amarelo); font-weight: 600; }

.hero__seals { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero__seals li {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .88rem; font-weight: 600;
  padding: .55em 1em; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--stroke);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero__seals .ico { color: var(--ciano); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__micro { display: flex; align-items: center; gap: .6em; margin-top: 18px; font-size: .88rem; color: var(--txt-faint); }
.hero__pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--verde-wa); box-shadow: 0 0 0 0 rgba(37, 211, 102, .6); animation: pulse 2s infinite; flex: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 11px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* — Palco 3D — */
.hero__stage { perspective: 1100px; }
.stage { position: relative; transform-style: preserve-3d; transition: transform .35s ease-out; }

.stage__tv {
  position: relative; border-radius: var(--radius); padding: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .03));
  border: 1px solid var(--stroke);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .55), 0 0 60px rgba(0, 100, 255, .22);
  transform: translateZ(40px);
}
.stage__screen { position: relative; border-radius: calc(var(--radius) - 8px); overflow: hidden; }
.stage__screen img { width: 100%; }
.stage__screen::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(255,255,255,.16), transparent 38%); }
.stage__playbar {
  position: absolute; left: 12px; right: 12px; bottom: 10px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 12px;
  background: rgba(2, 8, 26, .65); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.stage__play { width: 26px; height: 26px; border-radius: 50%; background: var(--branco); display: grid; place-items: center; flex: none; }
.stage__play svg { width: 13px; height: 13px; fill: #0064FF; margin-left: 1px; }
.stage__track { flex: 1; height: 5px; border-radius: 99px; background: rgba(255, 255, 255, .2); overflow: hidden; }
.stage__progress { display: block; height: 100%; width: 40%; border-radius: 99px; background: linear-gradient(90deg, var(--ciano), var(--azul-royal)); animation: filmprogress 14s linear infinite; }
@keyframes filmprogress { from { width: 6%; } to { width: 96%; } }
.stage__hd { font-size: .68rem; font-weight: 700; letter-spacing: .08em; padding: .25em .6em; border-radius: 6px; background: var(--amarelo); color: #221C00; }

.stage__chip {
  position: absolute; left: -16px; bottom: -18px;
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .82rem; font-weight: 600; white-space: nowrap;
  padding: .7em 1.1em; border-radius: 999px;
  background: rgba(3, 12, 34, .85); border: 1px solid var(--stroke);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .45);
}
.stage__chip .ico { color: var(--amarelo); }

.stage__speed {
  position: absolute; right: -26px; top: -34px; width: clamp(150px, 14vw, 190px);
  padding: 16px 14px 14px; text-align: center; border-radius: var(--radius-sm);
  background: rgba(4, 14, 38, .8); border: 1px solid var(--stroke);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .5), 0 0 40px rgba(0, 224, 255, .12);
  transform: translateZ(70px);
}
.gauge { width: 100%; }
.gauge__bg, .gauge__bar { fill: none; stroke-width: 13; stroke-linecap: round; }
.gauge__bg { stroke: rgba(255, 255, 255, .1); }
.gauge__bar { stroke: url(#gaugeGrad); stroke-dasharray: 251.3; stroke-dashoffset: 251.3; }
.gauge__needle { stroke: var(--branco); stroke-width: 4; transform-origin: 100px 115px; transform: rotate(-90deg); }
.gauge__needle circle { fill: var(--branco); stroke: none; }
.stage__speedval { margin-top: 4px; line-height: 1; }
.stage__speedval b { font-family: var(--f-display); font-weight: 400; font-size: 1.9rem; color: var(--amarelo); }
.stage__speedval span { font-size: .85rem; color: var(--txt-dim); font-weight: 600; }
.stage__speedlabel { font-size: .7rem; color: var(--txt-faint); margin-top: 4px; }

.stage__orb {
  position: absolute; display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 600; white-space: nowrap;
  padding: .6em 1em; border-radius: 999px;
  background: var(--glass-2); border: 1px solid var(--stroke);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
}
.stage__orb--game { left: -34px; top: 12%; color: #9BE8FF; transform: translateZ(85px); }
.stage__orb--game .ico { color: var(--ciano); }
.stage__orb--wifi { right: -18px; bottom: 26%; color: #FFE9A8; transform: translateZ(95px); }
.stage__orb--wifi .ico { color: var(--amarelo); }
.stage__orb--call { left: 8%; bottom: -52px; color: #FFB7D9; transform: translateZ(60px); }
.stage__orb--call .ico { color: var(--magenta); }

/* flutuações contínuas */
.float-a { animation: floaty 7s ease-in-out infinite; }
.float-b { animation: floaty 6s ease-in-out 1.2s infinite; }
.float-c { animation: floaty 5.5s ease-in-out .6s infinite; }
.float-d { animation: floaty 6.5s ease-in-out 1.8s infinite; }
.float-e { animation: floaty 7.5s ease-in-out .3s infinite; }
@keyframes floaty { 50% { transform: translateY(-12px); } }
.stage__tv.float-a { animation-name: floaty-z40; }
@keyframes floaty-z40 { 0%, 100% { transform: translateZ(40px) translateY(0); } 50% { transform: translateZ(40px) translateY(-12px); } }
.stage__speed.float-b { animation-name: floaty-z70; }
@keyframes floaty-z70 { 0%, 100% { transform: translateZ(70px) translateY(0); } 50% { transform: translateZ(70px) translateY(-10px); } }
.stage__orb--game.float-c { animation-name: floaty-z85; }
@keyframes floaty-z85 { 0%, 100% { transform: translateZ(85px) translateY(0); } 50% { transform: translateZ(85px) translateY(-9px); } }
.stage__orb--wifi.float-d { animation-name: floaty-z95; }
@keyframes floaty-z95 { 0%, 100% { transform: translateZ(95px) translateY(0); } 50% { transform: translateZ(95px) translateY(-11px); } }
.stage__orb--call.float-e { animation-name: floaty-z60; }
@keyframes floaty-z60 { 0%, 100% { transform: translateZ(60px) translateY(0); } 50% { transform: translateZ(60px) translateY(-8px); } }

.hero__scroll {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--stroke); border-radius: 999px;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 9px; margin-left: -2px;
  border-radius: 4px; background: var(--ciano); animation: scrollhint 1.8s ease-in-out infinite;
}
@keyframes scrollhint { 60% { transform: translateY(14px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

/* ==========================================================================
   MARQUEE faixa
   ========================================================================== */
.marquee {
  position: relative; padding: 18px 0; overflow: hidden;
  background: linear-gradient(90deg, rgba(0, 100, 255, .16), rgba(0, 224, 255, .1), rgba(0, 100, 255, .16));
  border-block: 1px solid var(--stroke-soft);
}
.marquee__track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: 34px; padding-right: 34px; white-space: nowrap; }
.marquee__group span { font-family: var(--f-display); font-size: 1.15rem; letter-spacing: .08em; color: var(--txt); }
.marquee__group span:first-child { color: var(--amarelo); }
.marquee__group i { color: var(--ciano); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   SEÇÕES — base
   ========================================================================== */
.section { padding-block: var(--sec-pad); position: relative; }
.section__head { text-align: center; max-width: 760px; margin-inline: auto; margin-bottom: clamp(36px, 5vw, 64px); }
.kicker {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ciano); margin-bottom: 14px;
}
.section__head h2, .final h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.18; font-weight: 800; text-wrap: balance; }
.grad-text {
  background: linear-gradient(90deg, var(--ciano), var(--azul-vivo) 55%, var(--amarelo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: .15em .05em; margin: -.15em -.05em; /* não comer acentos */
}
.section__lead { margin-top: 14px; color: var(--txt-dim); font-size: clamp(.98rem, 1.2vw, 1.08rem); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   BENEFÍCIOS
   ========================================================================== */
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.bcard {
  position: relative; padding: 30px 26px; border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  border: 1px solid var(--stroke-soft);
  transition: transform .35s ease, border-color .35s, box-shadow .35s;
  overflow: hidden;
}
.bcard::before { /* brilho no topo */
  content: ""; position: absolute; inset: -1px -1px auto;
  height: 80px; border-radius: inherit;
  background: radial-gradient(60% 100% at 50% 0%, rgba(255, 255, 255, .16), transparent);
  opacity: 0; transition: opacity .35s;
}
.bcard:hover { transform: translateY(-8px); border-color: rgba(0, 224, 255, .35); box-shadow: 0 24px 50px rgba(0, 0, 0, .45), 0 0 40px rgba(0, 100, 255, .15); }
.bcard:hover::before { opacity: 1; }
.bcard__ico {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; margin-bottom: 18px;
}
.bcard__ico svg { width: 28px; height: 28px; fill: currentColor; }
.bcard__ico--cyan   { background: rgba(0, 224, 255, .13); color: var(--ciano); box-shadow: 0 0 28px rgba(0, 224, 255, .2); }
.bcard__ico--yellow { background: rgba(252, 212, 0, .13); color: var(--amarelo); box-shadow: 0 0 28px rgba(252, 212, 0, .18); }
.bcard__ico--blue   { background: rgba(46, 139, 255, .15); color: var(--azul-vivo); box-shadow: 0 0 28px rgba(46, 139, 255, .22); }
.bcard__ico--magenta{ background: rgba(255, 46, 146, .13); color: var(--magenta); box-shadow: 0 0 28px rgba(255, 46, 146, .2); }
.bcard__ico--green  { background: rgba(37, 211, 102, .13); color: var(--verde-wa); box-shadow: 0 0 28px rgba(37, 211, 102, .2); }
.bcard__ico--cyan2  { background: rgba(0, 224, 255, .1); color: #8FE3FF; box-shadow: 0 0 28px rgba(0, 224, 255, .16); }
.bcard h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.bcard p { font-size: .94rem; color: var(--txt-dim); }

/* ==========================================================================
   EXPERIÊNCIA
   ========================================================================== */
.exp { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.exp__card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--glass); border: 1px solid var(--stroke-soft);
  transition: transform .35s ease, box-shadow .35s;
}
.exp__card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 26px 60px rgba(0, 0, 0, .5); }
.exp__card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; transition: transform .6s ease; }
.exp__card:hover img { transform: scale(1.06); }
.exp__body { padding: 20px 22px 24px; }
.exp__body h3 { font-size: 1.08rem; margin-bottom: 6px; }
.exp__body p { font-size: .92rem; color: var(--txt-dim); }

/* Pôsteres em marquee */
.posters { margin-top: clamp(40px, 6vw, 64px); display: grid; gap: 18px; overflow: hidden; }
.posters__row { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.posters__group { display: flex; gap: 18px; width: max-content; padding-right: 18px; }
.posters__row--left  .posters__track { animation: marquee 44s linear infinite; }
.posters__row--right .posters__track { animation: marquee 44s linear infinite reverse; }
.posters__track { display: flex; width: max-content; will-change: transform; }
/* Pôsteres reais do catálogo — mantém o formato/proporção original de cada imagem */
.poster-img {
  height: clamp(160px, 17vw, 235px) !important; width: auto !important;
  max-width: none; flex: none;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .45);
  transition: transform .35s ease, box-shadow .35s;
}
.poster-img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 22px 44px rgba(0, 0, 0, .55), 0 0 34px rgba(0, 100, 255, .25);
}

.exp__channels { margin-top: 28px; text-align: center; font-size: .92rem; color: var(--txt-faint); }
.exp__channels b { color: var(--txt-dim); font-weight: 600; }

/* ==========================================================================
   PLANOS
   ========================================================================== */
.section--plans {
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(0, 100, 255, .14), transparent 65%);
}
.plans { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: var(--gap); align-items: start; }

.plan { border-radius: calc(var(--radius) + 4px); position: relative; }

/* — card herói com borda animada — */
.plan--hero {
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(170deg, rgba(8, 22, 54, .96), rgba(3, 10, 30, .96)) padding-box,
    conic-gradient(from var(--spin, 0deg), var(--azul-royal), var(--ciano), var(--amarelo), var(--magenta), var(--azul-royal)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .55), 0 0 80px rgba(0, 100, 255, .22);
  animation: spin-border 7s linear infinite;
}
@property --spin { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes spin-border { to { --spin: 360deg; } }

.plan__flag {
  position: absolute; top: -16px; left: clamp(28px, 4vw, 46px);
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .55em 1.2em; border-radius: 999px;
  background: linear-gradient(135deg, var(--magenta), #C40E66); color: #fff;
  box-shadow: 0 10px 26px rgba(255, 46, 146, .4);
}
.plan__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px; }
.plan__speed { display: flex; align-items: baseline; gap: .1em; line-height: 1; }
.plan--hero .plan__speed b { font-family: var(--f-display); font-weight: 400; font-size: clamp(4rem, 7vw, 6rem); }
.plan--hero .plan__speed span {
  font-family: var(--f-display); font-size: clamp(2rem, 3.6vw, 3rem);
  background: linear-gradient(180deg, #FFE45C, var(--amarelo) 55%, #E0A800);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: .12em .06em; margin: -.12em -.06em;
}
.plan__tag { width: 100%; color: var(--txt-dim); font-size: .95rem; }
.plan__price { display: flex; align-items: baseline; gap: 10px; margin-top: 18px; line-height: 1; flex-wrap: wrap; }
.plan__price i { font-style: normal; color: var(--txt-faint); font-size: .9rem; }
.plan__price b { font-family: var(--f-display); font-weight: 400; font-size: clamp(4rem, 7.2vw, 6rem); color: var(--amarelo); text-shadow: 0 0 44px rgba(252, 212, 0, .35); }
.plan__price b small { font-size: .42em; margin-right: .1em; color: var(--txt); }
.plan__price b span { font-size: .5em; }
.plan__feats { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.plan__feats li { display: flex; gap: .6em; align-items: center; font-size: .94rem; color: var(--txt-dim); }
.plan__feats li::before {
  content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; flex: none;
  border-radius: 50%; font-size: .7rem; font-weight: 800;
  background: rgba(37, 211, 102, .18); color: var(--verde-wa);
}
.plan__cta { margin-top: 28px; width: 100%; }
.plan__safe { margin-top: 12px; text-align: center; font-size: .82rem; color: var(--txt-faint); }

/* — cards mini — */
.plans__side { display: grid; gap: var(--gap); }
.plan--mini {
  padding: 24px 26px;
  background: var(--glass); border: 1px solid var(--stroke-soft);
  transition: transform .3s, border-color .3s;
}
.plan--mini:hover { transform: translateY(-5px); border-color: rgba(0, 224, 255, .3); }
.plan--mini .plan__speed b { font-family: var(--f-display); font-weight: 400; font-size: 2.6rem; }
.plan--mini .plan__speed span { font-family: var(--f-display); font-size: 1.5rem; color: var(--ciano); }
.plan__price--mini { margin-top: 8px; }
.plan__price--mini b { font-size: 2rem; color: var(--txt); text-shadow: none; }
.plan--mini .btn { margin-top: 14px; width: 100%; }
.plans__note { font-size: .9rem; color: var(--txt-faint); }
.plans__note a { color: var(--ciano); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   COMPARADOR antes/depois
   ========================================================================== */
.cmp {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--stroke); min-height: 380px;
  user-select: none; touch-action: pan-y;
}
.cmp__after, .cmp__before { position: absolute; inset: 0; padding: clamp(24px, 4vw, 48px); }
.cmp__after {
  background: linear-gradient(225deg, #06245E, #021133 70%);
  display: flex; flex-direction: column; align-items: flex-end; text-align: right;
}
.cmp__list--after li { flex-direction: row-reverse; text-align: right; }
.cmp__after .cmp__scene--after { position: static; margin-top: auto; padding-top: 18px; }
.cmp__before {
  background: linear-gradient(135deg, #2A2A33, #131318 70%);
  clip-path: inset(0 calc(100% - var(--cut, 50%)) 0 0);
}
.cmp__label {
  display: inline-block; font-family: var(--f-display); font-size: 1.1rem; letter-spacing: .06em;
  padding: .4em 1em; border-radius: 10px; margin-bottom: 22px;
}
.cmp__label--after { background: rgba(0, 224, 255, .15); color: var(--ciano); border: 1px solid rgba(0, 224, 255, .35); }
.cmp__label--before { background: rgba(255, 80, 80, .12); color: #FF9D9D; border: 1px solid rgba(255, 80, 80, .3); }
.cmp__list { display: grid; gap: 12px; max-width: 420px; }
.cmp__list li { display: flex; gap: .7em; font-size: clamp(.92rem, 1.4vw, 1.05rem); font-weight: 500; }
.ok, .no { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; font-size: .72rem; font-weight: 800; flex: none; margin-top: 2px; }
.ok { background: rgba(37, 211, 102, .2); color: var(--verde-wa); }
.no { background: rgba(255, 80, 80, .18); color: #FF8080; }

.cmp__scene { position: absolute; right: clamp(18px, 5vw, 60px); bottom: clamp(18px, 4vw, 44px); display: flex; align-items: center; gap: 12px; }
.cmp__play { width: 44px; height: 44px; border-radius: 50%; background: var(--ciano); display: grid; place-items: center; box-shadow: 0 0 34px rgba(0, 224, 255, .5); }
.cmp__play svg { width: 20px; height: 20px; fill: #03222E; margin-left: 2px; }
.cmp__bar { width: clamp(80px, 14vw, 170px); height: 6px; border-radius: 99px; background: rgba(255, 255, 255, .18); overflow: hidden; }
.cmp__bar span { display: block; height: 100%; width: 75%; background: linear-gradient(90deg, var(--ciano), var(--azul-vivo)); border-radius: 99px; animation: filmprogress 9s linear infinite; }
.cmp__spinner {
  width: 38px; height: 38px; border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, .15); border-top-color: #FF8080;
  animation: spin 1.1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cmp__buffer { font-size: .85rem; color: #FF9D9D; animation: blink 1.4s ease-in-out infinite; }

.cmp__handle {
  position: absolute; top: 0; bottom: 0; left: var(--cut, 50%); width: 0; z-index: 5; cursor: ew-resize;
}
.cmp__handle::before { content: ""; position: absolute; top: 0; bottom: 0; left: -1.5px; width: 3px; background: linear-gradient(180deg, var(--ciano), var(--azul-royal)); box-shadow: 0 0 22px rgba(0, 224, 255, .6); }
.cmp__grip {
  position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--branco); display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5), 0 0 0 6px rgba(255, 255, 255, .12);
}
.cmp__grip svg { width: 22px; height: 22px; fill: var(--azul-royal); }

/* ==========================================================================
   COBERTURA
   ========================================================================== */
.areas { max-width: 880px; margin-inline: auto; text-align: center; }
.areas__cta { margin-top: 8px; }

/* ==========================================================================
   VERSUS
   ========================================================================== */
.versus {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--gap); align-items: stretch;
  max-width: 960px; margin-inline: auto;
}
.versus__col { padding: 30px 30px 34px; border-radius: var(--radius); }
.versus__col h3 { font-size: 1.15rem; margin-bottom: 18px; }
.versus__col h3 small { display: block; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ciano); margin-top: 4px; }
.versus__col ul { display: grid; gap: 12px; }
.versus__col li { display: flex; gap: .7em; align-items: flex-start; font-size: .95rem; }
.versus__col--them { background: rgba(255, 255, 255, .03); border: 1px solid var(--stroke-soft); color: var(--txt-dim); }
.versus__col--us {
  background: linear-gradient(165deg, rgba(0, 100, 255, .2), rgba(0, 32, 90, .25));
  border: 1px solid rgba(0, 224, 255, .35);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .45), 0 0 50px rgba(0, 100, 255, .18);
}
.versus__vs {
  align-self: center; font-family: var(--f-display); font-size: 1.4rem;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--amarelo); color: #221C00; box-shadow: 0 0 40px rgba(252, 212, 0, .4);
}

/* ==========================================================================
   CONFIANÇA
   ========================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); text-align: center; margin-bottom: clamp(40px, 6vw, 60px); }
.stat {
  padding: 28px 16px; border-radius: var(--radius);
  background: var(--glass); border: 1px solid var(--stroke-soft);
}
.stat b { display: block; font-family: var(--f-display); font-weight: 400; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; color: var(--branco); }
.stat:nth-child(1) b { color: var(--ciano); }
.stat:nth-child(2) b { color: var(--azul-vivo); }
.stat:nth-child(3) b { color: var(--amarelo); }
.stat:nth-child(4) b { color: var(--verde-wa); }
.stat span { display: block; margin-top: 8px; font-size: .85rem; color: var(--txt-dim); }

.reviews { overflow: hidden; }
.reviews__row { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.reviews__group { display: flex; gap: 18px; width: max-content; padding-right: 18px; align-items: center; }
.reviews__group img {
  width: 280px; border-radius: 14px; border: 1px solid var(--stroke-soft);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .4);
  background: #fff;
}
.reviews__track { display: flex; width: max-content; animation: marquee 60s linear infinite; }
.reviews__row:hover .reviews__track { animation-play-state: paused; }
.reviews__note { margin-top: 18px; text-align: center; font-size: .82rem; color: var(--txt-faint); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { display: grid; gap: 14px; }
.faq__item {
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--glass); border: 1px solid var(--stroke-soft);
  transition: border-color .3s, background .3s;
}
.faq__item[open] { border-color: rgba(0, 224, 255, .35); background: rgba(0, 100, 255, .08); }
.faq__item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; font-weight: 600; font-size: .98rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--ciano);
  transition: transform .3s; flex: none; line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 22px 20px; color: var(--txt-dim); font-size: .94rem; }
.faq__item p b { color: var(--txt); }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.final {
  position: relative; overflow: hidden;
  padding-block: clamp(70px, 10vw, 130px);
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(0, 224, 255, .16), transparent 60%),
    linear-gradient(135deg, #0050CC 0%, #032B7A 55%, #021133 100%);
}
.final__waves {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    radial-gradient(140% 70px at 50% -30px, rgba(255, 255, 255, .14), transparent 70%),
    radial-gradient(120% 120px at 50% calc(100% + 60px), rgba(0, 224, 255, .25), transparent 70%);
}
.final__grid { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; gap: var(--gap); align-items: center; }
.final h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.final__hl {
  background: linear-gradient(90deg, #FFE45C, var(--amarelo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: .15em .05em; margin: -.15em -.05em;
}
.final__offer { margin-top: 16px; font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: rgba(255, 255, 255, .88); }
.final__offer b { font-weight: 800; }
.final__price { color: var(--amarelo); }
.final__btn { margin-top: 30px; box-shadow: 0 18px 50px rgba(0, 0, 0, .4), 0 0 60px rgba(37, 211, 102, .35); }
.final__micro { margin-top: 14px; font-size: .88rem; color: rgba(255, 255, 255, .6); }
.final__milo { display: grid; place-items: center; position: relative; }
.final__milo::before { /* holofote atrás do Milo */
  content: ""; position: absolute; width: 130%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 224, 255, .25), rgba(0, 100, 255, .1) 45%, transparent 70%);
}
.final__milo img {
  position: relative;
  width: min(380px, 86%);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .5)) drop-shadow(0 0 40px rgba(0, 224, 255, .25));
  animation: floaty 6s ease-in-out infinite;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { padding: 60px 0 110px; background: #01040F; border-top: 1px solid var(--stroke-soft); }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: clamp(28px, 5vw, 60px); }
.footer__brand img { width: 56px; margin-bottom: 14px; }
.footer__brand p { font-size: .9rem; color: var(--txt-faint); max-width: 34ch; }
.footer__col h4 { font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-dim); margin-bottom: 16px; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { font-size: .92rem; color: var(--txt-faint); transition: color .25s; }
.footer__col a:hover { color: var(--ciano); }
.footer__areas { font-size: .88rem; color: var(--txt-faint); line-height: 1.9; }
.footer__base { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--stroke-soft); font-size: .8rem; color: rgba(234, 242, 255, .35); }

/* ==========================================================================
   FAB + STICKY BAR
   ========================================================================== */
.fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 60;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-wa), var(--verde-wa-2));
  display: grid; place-items: center;
  box-shadow: 0 14px 40px rgba(37, 211, 102, .45);
  animation: fabpulse 2.6s infinite;
  transition: transform .25s;
}
.fab:hover { transform: scale(1.1); }
.fab svg { width: 32px; height: 32px; fill: #fff; }
@keyframes fabpulse {
  0% { box-shadow: 0 14px 40px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .45); }
  70% { box-shadow: 0 14px 40px rgba(37, 211, 102, .45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 14px 40px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.stickybar {
  /* SEMPRE fixa no mobile (regra do dono): visível do topo ao fim da rolagem */
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(2, 7, 24, .92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--stroke);
}
.stickybar p { font-size: .92rem; line-height: 1.25; }
.stickybar__price { color: var(--amarelo); }
.stickybar .btn { flex: none; }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1060px) {
  .bgrid { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; }
  .plans__side { grid-template-columns: 1fr 1fr; }
  .plans__note { grid-column: 1 / -1; text-align: center; }
}

@media (max-width: 860px) {
  .topbar__nav { display: none; }
  .topbar__ctatxt { display: none; }
  .topbar__ctatxt--short { display: inline; }
  .hero { padding-top: calc(var(--header-h) + 24px); padding-bottom: 16px; min-height: 0; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__stage { margin-top: 30px; padding: 0 8px 46px; }
  .stage__speed { right: -6px; top: -28px; }
  .stage__orb--game { left: -6px; }
  .stage__orb--call { bottom: -46px; }
  .stage__chip { left: -4px; }
  .hero__scroll { display: none; }
  .exp { grid-template-columns: 1fr; }
  .versus { grid-template-columns: 1fr; }
  .versus__vs { justify-self: center; margin-block: -8px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .final__grid { grid-template-columns: 1fr; text-align: center; }
  .final__milo { order: -1; }
  .final__milo img { width: min(220px, 56%); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer { padding-bottom: 140px; }
  .fab { display: none; }            /* no mobile a stickybar assume */
  .stickybar { display: flex; }
}

@media (max-width: 560px) {
  .bgrid { grid-template-columns: 1fr; }
  .plans__side { grid-template-columns: 1fr; }
  .plan__feats { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .areas__chips li { font-size: .85rem; }
}

/* Comparador: no celular o slider não tem largura — vira 2 painéis empilhados */
@media (max-width: 720px) {
  .cmp { min-height: 0; border: 0; border-radius: 0; overflow: visible; display: grid; gap: 16px; }
  .cmp__before, .cmp__after { position: static; clip-path: none !important; border-radius: var(--radius); padding: 24px 22px; }
  .cmp__before { border: 1px solid rgba(255, 80, 80, .25); }
  .cmp__after { border: 1px solid rgba(0, 224, 255, .35); align-items: flex-start; text-align: left; }
  .cmp__list--after li { flex-direction: row; text-align: left; }
  .cmp__scene { position: static; margin-top: 18px; }
  .cmp__handle { display: none; }
}

/* ==========================================================================
   ACESSIBILIDADE / PERFORMANCE
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   STREAMING BY WATCH — bloco incluso nos planos 850 Mega / 1 Giga
   Toque premium: glow laranja da marca Watch sobre a base azul WebFiber
   ========================================================================== */
.section--watch {
  background: radial-gradient(900px 520px at 50% 0%, rgba(255, 78, 32, .09), transparent 62%);
}
.watch__logo { display: block; margin: 0 auto 20px; width: min(240px, 64%); height: auto; filter: drop-shadow(0 6px 24px rgba(255, 78, 32, .25)); }
.watch__hl {
  background: linear-gradient(90deg, #FF8A5C, #FF4E20);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: .15em .05em; margin: -.15em -.05em;
}
.watch__hero { perspective: 1100px; max-width: 980px; margin: 0 auto clamp(30px, 5vw, 54px); text-align: center; }
.watch__hero img {
  width: 100%; height: auto;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, .55)) drop-shadow(0 0 50px rgba(255, 78, 32, .14));
  transition: transform .35s ease-out; will-change: transform;
}
.watch__hint { margin-top: 14px; font-size: .8rem; color: var(--txt-faint); }
.watch__grid { display: grid; grid-template-columns: 1.15fr 1.15fr .7fr; gap: var(--gap); align-items: center; }
.watch__card img { width: 100%; height: auto; filter: drop-shadow(0 18px 38px rgba(0, 0, 0, .5)); transition: transform .35s ease; }
.watch__card:hover img { transform: translateY(-8px) scale(1.02); }
.watch__card figcaption { text-align: center; margin-top: 12px; font-size: .9rem; color: var(--txt-dim); }
.watch__canais { margin-top: clamp(36px, 5vw, 60px); text-align: center; }
.watch__canais > p { font-size: .98rem; color: var(--txt-dim); margin-bottom: 18px; }
.watch__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.watch__logos img {
  height: 58px; width: auto;
  background: rgba(255, 255, 255, .07); border: 1px solid var(--stroke-soft);
  border-radius: 14px; padding: 10px 18px;
  transition: transform .25s, border-color .25s;
}
.watch__logos img:hover { transform: translateY(-4px); border-color: rgba(255, 78, 32, .4); }
.watch__mais { margin-top: 16px; font-size: .88rem; color: var(--txt-faint); }

/* marquee de logos de canais (1 Giga) */
.canais-marquee { overflow: hidden; margin-top: 8px; }
.canais-marquee .posters__group { align-items: center; gap: 14px; }
.canais-marquee img {
  /* fundo claro: logos escuras (AMC, Universal, CNN…) ficam visíveis no tema azul */
  height: 95px; width: auto; flex: none;
  background: rgba(255, 255, 255, .92); border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 16px; padding: 16px 26px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
}

@media (max-width: 860px) {
  .watch__grid { grid-template-columns: 1fr 1fr; }
  .watch__grid .watch__card:last-child { grid-column: 1 / -1; max-width: 230px; margin-inline: auto; }
  .watch__logos img { height: 46px; padding: 8px 12px; }
  .canais-marquee img { height: 78px; padding: 12px 18px; }
  .watch__hint { display: none; }
}
