:root{
  --bg-950:#070910;
  --bg-900:#0d1120;
  --bg-800:#161c2f;
  --background:#070910;
  --foreground:#ffffff;
  --border:rgba(255,255,255,0.08);

  --electric-blue: #35e3ff;
  --electric-blue-deep: #00aef0;
  --electric-green: #2ef2c6;
  --electric-green-deep: #00c98f;

  --accent:var(--electric-blue);
  --accent-2:var(--electric-green);

  --muted-foreground:rgba(255,255,255,0.62);
}

/* Tailwind extension via CDN */
.bg-background{background:var(--bg-950)}
.bg-bg-900{background:var(--bg-900)}
.bg-bg-950{background:var(--bg-950)}
.bg-bg-800{background:var(--bg-800)}
.text-foreground{color:#fff}
.text-neon{color:var(--accent)}
.text-bg-900{color:var(--bg-900)}
.from-neon{
  --tw-gradient-from:var(--accent) var(--tw-gradient-from-position);
  --tw-gradient-to:rgb(34 240 143 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)
}
.to-electric{--tw-gradient-to:var(--accent-2) var(--tw-gradient-to-position)}
.shadow-glow{
  box-shadow:0 8px 26px -8px rgba(34,240,143,.35), 0 0 0 1px rgba(255,255,255,.04)
}
.transition-smooth{transition:all .25s ease}

* { -webkit-font-smoothing:antialiased }
body{ background:var(--bg-950); color:#fff }

/* HERO ===================================================== */
.hero-slider{
  position:relative;
  height:clamp(560px, 78vh, 760px);
  overflow:hidden;
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .8s ease;
  pointer-events:none;
}
.hero-slide.active{
  opacity:1;
  pointer-events:auto;
}
.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-bg .img-slot{
  width:100%;
  height:100%;
  border-radius:0;
  aspect-ratio:auto;
}
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(80% 60% at 20% 50%, rgba(0,0,0,.86), transparent 70%),
    linear-gradient(180deg, rgba(7,9,16,.38) 0%, rgba(7,9,16,.66) 60%, rgba(7,9,16,.96) 100%);
}
.hero-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:1280px;
  margin:0 auto;
  padding:0 1.25rem;
  color:#fff;
}
@media(min-width:1024px){
  .hero-content{ padding:0 2rem }
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.15);
  padding:.4rem .9rem;
  border-radius:9999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
  width:fit-content;
  color:var(--accent);
}
.hero-eyebrow .dot{
  width:8px;
  height:8px;
  border-radius:9999px;
  background:var(--accent-2);
  box-shadow:0 0 12px var(--accent-2);
  animation:pulse 1.6s infinite
}
@keyframes pulse{
  50%{ opacity:.4 }
}
.hero-title{
  margin-top:1.25rem;
  font-size:clamp(2.2rem, 5vw, 4.2rem);
  font-weight:900;
  line-height:1.02;
  letter-spacing:-0.02em;
  max-width:820px;
}
.hero-title .accent{
  background:linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-desc{
  margin-top:1rem;
  font-size:clamp(.95rem, 1.4vw, 1.15rem);
  color:rgba(255,255,255,.78);
  max-width:560px
}
.hero-cta-row{
  margin-top:1.75rem;
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
}
.hero-meta{
  margin-top:2rem;
  display:flex;
  flex-wrap:wrap;
  gap:1.25rem;
  font-size:12px;
  color:rgba(255,255,255,.65)
}
.hero-meta span{
  display:inline-flex;
  align-items:center;
  gap:.4rem
}
.hero-dots{
  position:absolute;
  bottom:1.25rem;
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  gap:.5rem;
  z-index:3
}
.hero-dots button{
  width:30px;
  height:4px;
  border-radius:9999px;
  background:rgba(255,255,255,.25);
  transition:all .3s;
  border:0;
  cursor:pointer
}
.hero-dots button.active{
  background:var(--accent-2);
  width:54px;
  box-shadow:0 0 12px var(--accent-2)
}

/* BUTTONS ================================================== */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#070910;
  font-weight:800;
  border-radius:.85rem;
  box-shadow:0 12px 28px -10px rgba(34,240,143,.45);
  transition:transform .2s ease, box-shadow .25s ease;
  cursor:pointer;
  border:0;
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 36px -12px rgba(34,240,143,.62)
}
.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  background:rgba(255,255,255,.06);
  color:#fff;
  font-weight:700;
  border:1px solid rgba(255,255,255,.15);
  border-radius:.85rem;
  backdrop-filter:blur(8px);
  transition:background .25s;
  cursor:pointer;
}
.btn-ghost:hover{ background:rgba(255,255,255,.12) }
.btn-dark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  background:#070910;
  color:#fff;
  font-weight:800;
  border-radius:.85rem;
  box-shadow:0 14px 30px -12px rgba(0,0,0,.5);
}
.btn-dark:hover{ background:#14192a }
.btn-outline-dark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  border:2px solid #070910;
  color:#070910;
  font-weight:800;
  border-radius:.85rem;
}
.btn-outline-dark:hover{
  background:#070910;
  color:#fff
}

/* HEADINGS ================================================= */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:11px;
  font-weight:800;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:.75rem;
}
.eyebrow::before{
  content:"";
  width:24px;
  height:2px;
  background:linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius:9999px
}
.section-title{
  font-size:clamp(1.7rem, 3vw, 2.6rem);
  font-weight:900;
  line-height:1.05;
  letter-spacing:-0.02em;
  color:#ffffff;
}
.section-sub{
  margin-top:.85rem;
  color:rgba(255,255,255,.7);
  font-size:1rem;
  max-width:640px;
  line-height:1.6
}

/* IMAGE PLACEHOLDERS ====================================== */
.img-slot{
  position:relative;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 12px, rgba(255,255,255,0.05) 12px 24px),
    linear-gradient(135deg, rgba(43,123,255,.18), rgba(34,240,143,.10));
  border:1px dashed rgba(255,255,255,.18);
  border-radius:1.25rem;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.45);
  font-size:11px;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  overflow:hidden;
}
.img-slot-h{ aspect-ratio:16/9 }
.img-slot-v{ aspect-ratio:2/3 }
.img-slot::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(80% 80% at 50% 0%, rgba(43,123,255,.22), transparent 60%);
  pointer-events:none;
}
.img-slot span{
  position:relative;
  z-index:1;
  padding:.5rem 1rem;
  background:rgba(0,0,0,.35);
  border-radius:9999px;
  backdrop-filter:blur(4px)
}

/* CATALOG / EMBLA ========================================= */
.embla{ overflow:hidden }
.embla__viewport{
  overflow-x:hidden;
  overflow-y:visible;
  padding:18px 0 28px;
  margin:-18px 0 -28px;
}
.embla__container{
  display:flex;
  gap:1rem
}
.cat-card{
  flex:0 0 220px;
  aspect-ratio:3/4;
  border-radius:1rem;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,.0) 50%, rgba(0,0,0,.85) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 10px, rgba(255,255,255,0.06) 10px 20px),
    linear-gradient(135deg, #000000, #000000);
  border:1px solid rgba(255,255,255,.08);
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease;
}
.cat-card:hover{
  box-shadow:0 20px 40px -16px rgba(34,240,143,.55)
}
.cat-card .meta{
  position:absolute;
  left:.85rem;
  right:.85rem;
  bottom:.85rem;
  color:#fff;
}
.cat-card .meta .tag{
  font-size:9.5px;
  letter-spacing:.18em;
  font-weight:800;
  color:var(--accent-2);
  text-transform:uppercase
}
.cat-card .meta h3{
  font-size:.95rem;
  font-weight:800;
  line-height:1.2;
  margin-top:.2rem
}
.cat-card .badge{
  position:absolute;
  top:.75rem;
  left:.75rem;
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.15);
  border-radius:9999px;
  padding:.2rem .55rem;
  font-size:10px;
  font-weight:800;
  color:#fff;
  letter-spacing:.1em;
  backdrop-filter:blur(6px);
}
@media (max-width:640px){
  .cat-card{ flex-basis:160px }
}

.nav-arrow{
  width:42px;
  height:42px;
  border-radius:9999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:all .25s;
  cursor:pointer;
}
.nav-arrow:hover{
  background:var(--accent);
  color:#070910;
  border-color:var(--accent)
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  color:rgba(255,255,255,.85);
  padding:.55rem 1rem;
  border-radius:9999px;
  font-size:12.5px;
  font-weight:600;
  transition:all .25s;
}
.chip:hover{
  background:var(--accent);
  color:#070910;
  border-color:var(--accent)
}

/* BENEFITS ================================================= */
.benefit{
  position:relative;
  padding:1.75rem;
  border-radius:1.25rem;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.08);
  transition:transform .25s, border-color .25s, box-shadow .25s;
}
.benefit:hover{
  transform:translateY(-4px);
  border-color:rgba(34,240,143,.34);
  box-shadow:0 18px 38px -20px rgba(34,240,143,.34)
}
.benefit-ico{
  width:54px;
  height:54px;
  border-radius:1rem;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#070910;
  box-shadow:0 8px 20px -8px rgba(34,240,143,.34);
}
.benefit h3{
  margin-top:1.1rem;
  font-size:1.05rem;
  font-weight:800;
  color:#fff
}
.benefit p{
  margin-top:.4rem;
  font-size:.88rem;
  color:rgba(255,255,255,.65);
  line-height:1.55
}

/* DEVICES ================================================== */
.device{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.5rem;
  padding:1.1rem .75rem;
  border-radius:1rem;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.85);
  font-size:12px;
  font-weight:700;
  transition:all .25s;
}
.device:hover{
  border-color:var(--accent);
  color:var(--accent)
}
.device i{ color:var(--accent) }

/* PLANS ==================================================== */
.plans-wrap{
  display:grid;
  gap:1.5rem;
}
@media(min-width:1024px){
  .plans-wrap{
    grid-template-columns:1.05fr 1fr;
    align-items:start;
  }
}

.plan-main{
  position:relative;
  padding:2.25rem 2rem;
  border-radius:1.5rem;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(43,123,255,.24), transparent 60%),
    linear-gradient(160deg, rgba(34,240,143,.12), rgba(43,123,255,.08));
  border:1px solid rgba(34,240,143,.38);
  box-shadow:0 30px 60px -25px rgba(34,240,143,.35), inset 0 0 0 1px rgba(34,240,143,.12);
}
.plan-tag{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#070910;
  font-size:10.5px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding:.4rem .95rem;
  border-radius:9999px;
  box-shadow:0 8px 18px -6px rgba(34,240,143,.4);
  white-space:nowrap;
}
.plan-name{
  font-size:.85rem;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--accent)
}
.plan-headline{
  margin-top:.4rem;
  font-size:1.6rem;
  font-weight:900;
  letter-spacing:-.01em;
  color:#fff
}
.plan-price{
  display:flex;
  align-items:flex-end;
  gap:.35rem;
  margin-top:1rem;
  color:#fff
}
.plan-price .currency{
  font-size:1.1rem;
  font-weight:700;
  padding-bottom:.45rem;
  opacity:.8
}
.plan-price .amount{
  font-size:3.2rem;
  font-weight:900;
  line-height:1;
  letter-spacing:-.03em
}
.plan-price .period{
  font-size:.85rem;
  padding-bottom:.55rem;
  opacity:.65
}
.plan-desc{
  margin-top:.6rem;
  font-size:.92rem;
  color:rgba(255,255,255,.72);
  line-height:1.55
}
.plan-feats{
  margin-top:1.5rem;
  display:flex;
  flex-direction:column;
  gap:.7rem;
  list-style:none;
  padding:0;
}
.plan-feats li{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-size:.9rem;
  color:rgba(255,255,255,.85)
}
.plan-feats li i{
  width:18px;
  height:18px;
  padding:3px;
  border-radius:9999px;
  background:rgba(43,123,255,.16);
  color:var(--accent);
  flex-shrink:0;
}

/* À LA CARTE ============================================= */
.alacarte{
  padding:2rem 1.75rem;
  border-radius:1.5rem;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
}
.alacarte-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.alacarte-title{
  font-size:1.15rem;
  font-weight:900;
  color:#fff
}
.alacarte-sub{
  margin-top:.25rem;
  font-size:.85rem;
  color:rgba(255,255,255,.6)
}
.alacarte-pill{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#070910;
  font-size:10.5px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  padding:.35rem .8rem;
  border-radius:9999px;
}
.alacarte-pill i{
  width:14px;
  height:14px
}

.addon-grid{
  margin-top:1.25rem;
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:.85rem
}
.addon{
  position:relative;
  padding:1rem;
  border-radius:1rem;
  cursor:pointer;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  transition:all .25s;
  text-align:left;
  color:#fff;
  display:flex;
  flex-direction:column;
  gap:.6rem;
  min-height:170px;
  font-family:inherit;
}
.addon:hover{
  border-color:rgba(34,240,143,.38);
  transform:translateY(-2px);
  box-shadow:0 18px 30px -20px rgba(43,123,255,.34)
}
.addon.selected{
  border-color:var(--accent);
  background:linear-gradient(160deg, rgba(43,123,255,.12), rgba(34,240,143,.08));
  box-shadow:0 18px 32px -18px rgba(34,240,143,.42), inset 0 0 0 1px rgba(34,240,143,.35)
}
.addon .check{
  position:absolute;
  top:.6rem;
  right:.6rem;
  width:24px;
  height:24px;
  border-radius:9999px;
  background:rgba(0,0,0,.4);
  border:1.5px solid rgba(255,255,255,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#070910;
  transition:all .2s;
  z-index:2;
}
.addon .check i{
  width:14px;
  height:14px;
  opacity:.7;
  color:#fff
}
.addon.selected .check{
  background:var(--accent-2);
  border-color:var(--accent-2);
  box-shadow:0 0 0 4px rgba(34,240,143,.16)
}
.addon.selected .check i{
  color:#070910;
  opacity:1
}
.addon-logo{
  width:100%;
  aspect-ratio:16/9;
  border-radius:.75rem;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 10px, rgba(255,255,255,0.07) 10px 20px),
    linear-gradient(135deg, rgba(43,123,255,.18), rgba(34,240,143,.10));
  border:0px dashed rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  letter-spacing:.18em;
  font-size:.85rem;
  color:#fff;
  overflow:hidden;
  position:relative;
}
.addon-logo img{
  width:100% !important;
  height:100% !important;
  object-fit:contain;
  object-position:center;
  padding:0 !important;
}

.addon-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.5rem
}
.addon-name{
  font-weight:800;
  color:#fff;
  font-size:.95rem
}
.addon-price{
  font-weight:900;
  color:var(--accent-2);
  font-size:1rem;
  display:inline-flex;
  align-items:baseline;
  gap:.15rem
}
.addon-price .cur{
  font-size:.65rem;
  opacity:.85
}
.addon-price .per{
  font-size:.6rem;
  color:rgba(255,255,255,.5);
  margin-left:.1rem
}

.summary{
  margin-top:1.4rem;
  padding:1.1rem 1.2rem;
  border-radius:1rem;
  background:linear-gradient(160deg, rgba(0,0,0,.4), rgba(0,0,0,.1));
  border:1px solid rgba(34,240,143,.22);
}
.summary-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:.5rem;
  font-size:.86rem;
  color:rgba(255,255,255,.75)
}
.summary-row + .summary-row{ margin-top:.35rem }
.summary-divider{
  height:1px;
  background:rgba(255,255,255,.1);
  margin:.85rem 0
}
.summary-total{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:.5rem
}
.summary-total .lbl{
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.7)
}
.summary-total .val{
  font-size:2rem;
  font-weight:900;
  color:var(--accent-2);
  line-height:1
}
.summary-total .val .cur{
  font-size:.9rem;
  opacity:.85;
  margin-right:.15rem
}
.summary-total .val .per{
  font-size:.7rem;
  color:rgba(255,255,255,.5);
  font-weight:700
}
.plan-cta{
  margin-top:1.1rem;
  width:100%;
  padding:1rem 1rem;
  border-radius:.85rem;
  font-weight:800;
  font-size:.95rem;
}

/* Canais =================================================== */
.channels-section{
  position:relative;
  overflow:hidden;
}
.channels-bg-glow{
  position:absolute;
  inset:auto 0 -20% 0;
  height:80%;
  pointer-events:none;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(53,227,255,.12), transparent 70%),
    radial-gradient(50% 50% at 85% 70%, rgba(46,242,198,.10), transparent 70%);
  filter:blur(20px);
  z-index:0;
}

.channels-showcase{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  gap:1.25rem;
  padding:2.25rem 0 1.5rem;
  border-radius:28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.07);
  box-shadow:
    0 30px 60px -30px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
  overflow:visible;
}
.channels-showcase--single .channels-marquee{
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image:linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.channels-marquee{
  position:relative;
  overflow:hidden;
  padding:1.25rem 0;
}
.channels-track{ width:100% }
.channels-row{
  display:inline-flex;
  align-items:center;
  gap:2rem;
  padding-right:2rem;
  animation:channels-scroll 80s linear infinite;
  white-space:nowrap;
  will-change:transform;
}
.channels-showcase:hover .channels-row,
.channels-row:hover,
.channels-row.is-paused{ animation-play-state:paused }

@keyframes channels-scroll{
  from{ transform:translateX(0) }
  to{ transform:translateX(-50%) }
}

/* Cartão do canal — círculo elegante */
.channel-card{
  position:relative;
  flex:0 0 auto;
  width:152px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.85rem;
  background:transparent;
  border:0;
  cursor:pointer;
  isolation:isolate;
}

.channel-logo{
  position:relative;
  z-index:2;
  width:140px;
  height:140px;
  border-radius:9999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,.10), rgba(255,255,255,.02) 60%),
    linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.10);
  /*box-shadow:
    0 18px 40px -22px rgba(0,0,0,.75),
    inset 0 1px 0 rgba(255,255,255,.08);*/
  overflow:hidden;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.channel-logo::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:inherit;
  padding:2px;
  background:linear-gradient(135deg, rgba(53,227,255,.0), rgba(46,242,198,.0));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;
  opacity:0;
  transition:opacity .35s ease, background .35s ease;
  pointer-events:none;
}
.channel-card:hover .channel-logo{
  transform:translateY(-4px) scale(1.06);
  border-color:rgba(46,242,198,.45);
  box-shadow:
    0 26px 50px -22px rgba(46,242,198,.40),
    0 0 0 1px rgba(46,242,198,.18),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.channel-card:hover .channel-logo::before{
  opacity:1;
  background:linear-gradient(135deg, rgba(53,227,255,.7), rgba(46,242,198,.7));
}
.channel-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 4px 10px rgba(0,0,0,.45));
  transition:filter .35s ease, transform .35s ease;
  border-radius: 100%;
}
.channel-card:hover .channel-logo img{
  filter:drop-shadow(0 6px 14px rgba(46,242,198,.4));
  transform:scale(1.04);
}
.channel-fallback{
  display:grid;
  place-items:center;
  width:74%;
  height:74%;
  border-radius:9999px;
  font-size:14px;
  font-weight:900;
  letter-spacing:.04em;
  color:#070910;
  box-shadow:inset 0 0 0 1.5px rgba(255,255,255,.3), 0 6px 14px -6px rgba(0,0,0,.6);
}

.channel-name{
  position:relative;
  z-index:2;
  font-size:.78rem;
  font-weight:700;
  color:rgba(255,255,255,.78);
  letter-spacing:.01em;
  text-align:center;
  max-width:120px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  transition:color .25s ease;
}
.channel-card:hover .channel-name{ color:#fff }

/* Tooltip de descrição */
.channel-tooltip{
  position:absolute;
  left:50%;
  bottom:calc(100% + 14px);
  transform:translate(-50%, 6px);
  width:230px;
  max-width:62vw;
  padding:.7rem .85rem;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(22,28,47,.96), rgba(13,17,32,.96));
  border:1px solid rgba(46,242,198,.25);
  box-shadow:
    0 18px 40px -18px rgba(0,0,0,.75),
    0 0 0 1px rgba(255,255,255,.04),
    inset 0 1px 0 rgba(255,255,255,.05);
  color:rgba(255,255,255,.88);
  font-size:.74rem;
  line-height:1.35;
  font-weight:500;
  text-align:center;
  white-space:normal;
  pointer-events:none;
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease, transform .3s ease, visibility .25s;
  z-index:20;
  backdrop-filter:blur(6px);
}
.channel-tooltip::after{
  content:"";
  position:absolute;
  left:50%;
  top:100%;
  width:10px;
  height:10px;
  background:linear-gradient(135deg, rgba(22,28,47,.96), rgba(13,17,32,.96));
  border-right:1px solid rgba(46,242,198,.25);
  border-bottom:1px solid rgba(46,242,198,.25);
  transform:translate(-50%, -55%) rotate(45deg);
}
.channel-tooltip strong{
  display:block;
  color:var(--accent-2);
  font-size:.72rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:.2rem;
  font-weight:800;
}
.channel-card.is-open .channel-tooltip{
  opacity:1;
  visibility:visible;
  transform:translate(-50%, 0);
  pointer-events:auto;
}
.channel-card.is-open .channel-logo{
  transform:translateY(-4px) scale(1.06);
  border-color:rgba(46,242,198,.55);
  box-shadow:
    0 26px 50px -22px rgba(46,242,198,.45),
    0 0 0 1px rgba(46,242,198,.25),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.channel-card.is-open .channel-logo::before{
  opacity:1;
  background:linear-gradient(135deg, rgba(53,227,255,.85), rgba(46,242,198,.85));
}

/* Rodapé da seção */
.channels-footnote{
  display:inline-flex;
  align-self:center;
  align-items:center;
  gap:.55rem;
  margin-top:.25rem;
  padding:.55rem 1rem;
  border-radius:9999px;
  background:rgba(13,17,32,.6);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.7);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.04em;
}
.live-dot{
  width:8px;
  height:8px;
  border-radius:9999px;
  background:#ff3b3b;
  box-shadow:0 0 0 0 rgba(255,59,59,.6);
  animation:live-pulse 1.8s ease-out infinite;
}
@keyframes live-pulse{
  0%   { box-shadow:0 0 0 0 rgba(255,59,59,.55) }
  70%  { box-shadow:0 0 0 10px rgba(255,59,59,0) }
  100% { box-shadow:0 0 0 0 rgba(255,59,59,0) }
}

.channels-count{
  display:inline-flex;
  gap:.6rem;
  align-items:center;
  padding:.5rem .9rem;
  border-radius:9999px;
  background:rgba(34,240,143,.12);
  border:1px solid rgba(43,123,255,.4);
  color:var(--accent-2);
  font-size:11.5px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-top:1rem;
}

/* Responsivo */
@media (max-width: 768px){
  .channel-card{ width:128px }
  .channel-logo{ width:118px; height:118px }
  .channel-name{ font-size:.74rem; max-width:128px }
  .channels-row{ gap:1.6rem; padding-right:1.6rem }
  .channels-showcase{ padding:1.5rem 0 1rem; border-radius:22px }
  .channel-tooltip{ width:210px; font-size:.72rem }
}
@media (max-width: 480px){
  .channel-card{ width:108px }
  .channel-logo{ width:100px; height:100px }
  .channels-row{ gap:1.2rem; padding-right:1.2rem }
}

@media (prefers-reduced-motion: reduce){
  .channels-row{ animation:none }
  .live-dot{ animation:none }
  .channel-tooltip{ transition:opacity .15s ease }
}

/* Depoimentos ============================================ */
.testi{
  padding:1.75rem;
  border-radius:1.25rem;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
}
.testi .stars{
  display:flex;
  gap:2px;
  color:var(--accent-2);
  margin-bottom:.85rem
}
.testi p{
  font-size:.95rem;
  color:rgba(255,255,255,.85);
  line-height:1.6
}
.testi .who{
  margin-top:1.1rem;
  display:flex;
  align-items:center;
  gap:.75rem
}
.testi .av{
  width:42px;
  height:42px;
  border-radius:9999px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:800;
}
.testi .who div{ line-height:1.2 }
.testi .who .n{
  font-weight:800;
  color:#fff;
  font-size:.9rem
}
.testi .who .c{
  font-size:.75rem;
  color:rgba(255,255,255,.55)
}

/* CHAMADA FINAL ========================================== */
.cta-final{
  position:relative;
  overflow:hidden;
  border-radius:2rem;
  padding:3rem 2rem;
  background:linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
}
@media(min-width:768px){
  .cta-final{ padding:4rem 3.5rem }
}

/* FAQ ===================================================== */
.faq-grid{
  display:grid;
  gap:.85rem
}
.faq-item{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:1rem;
  overflow:hidden;
  transition:border-color .25s, box-shadow .25s;
}
.faq-item:hover{ border-color:rgba(34,240,143,.25) }
.faq-item.open{
  border-color:rgba(34,240,143,.45);
  box-shadow:0 18px 36px -22px rgba(34,240,143,.34)
}
.faq-q{
  width:100%;
  text-align:left;
  padding:1.15rem 1.3rem;
  display:flex;
  align-items:center;
  gap:1rem;
  color:#fff;
  font-weight:700;
  font-size:.97rem;
  background:transparent;
  border:0;
  cursor:pointer;
  font-family:inherit;
}
.faq-q .num{
  flex:0 0 auto;
  width:32px;
  height:32px;
  border-radius:.6rem;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#070910;
  font-weight:900;
  font-size:.8rem;
  display:flex;
  align-items:center;
  justify-content:center;
}
.faq-q .txt{ flex:1 }
.faq-q .ico{
  flex:0 0 auto;
  width:32px;
  height:32px;
  border-radius:9999px;
  background:rgba(34,240,143,.12);
  color:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .25s, background .25s;
}
.faq-item.open .faq-q .ico{
  transform:rotate(45deg);
  background:var(--accent-2);
  color:#070910
}
.faq-a{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .35s ease;
}
.faq-item.open .faq-a{ grid-template-rows:1fr }
.faq-a-inner{ overflow:hidden }
.faq-a-text{
  padding:0 1.3rem 1.3rem 4.05rem;
  color:rgba(255,255,255,.78);
  font-size:.92rem;
  line-height:1.65;
  white-space:pre-line;
}

/* RODAPÉ ================================================== */
.qlink{
  display:flex;
  align-items:center;
  gap:.75rem;
  color:#fff;
}

.qlink-icon-accent{
  width:42px;
  height:42px;
  border-radius:.85rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#ffffff;
}

.qlink-icon-ghost{
  width:42px;
  height:42px;
  border-radius:.85rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
}

.footer-col h4{
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:.85rem;
}

.footer-col a{
  display:block;
  color:rgba(255,255,255,.6);
  font-size:.88rem;
  padding:.3rem 0;
  transition:color .2s;
}

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

.social{
  width:38px;
  height:38px;
  border-radius:.7rem;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:all .25s;
}

.social:hover{
  background:var(--accent);
  color:#070910;
  border-color:var(--accent);
}

/* ÍCONES DO FONT AWESOME */
.qlink-icon-accent i,
.qlink-icon-ghost i,
.social i{
  font-size:1.1rem;
  line-height:1;
  display:block;
  color:inherit;
  font-family: inherit;
}

/* Whatsapp Flutuante ===================================== */
.fab-whatsapp{
  position:fixed;
  right:1rem;
  bottom:1rem;
  z-index:60;
  width:56px;
  height:56px;
  border-radius:9999px;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 14px 30px -8px rgba(37,211,102,.55);
  animation:float 3s ease-in-out infinite;
}
@keyframes float{
  50%{ transform:translateY(-6px) }
}

/* ICON TOOLS ============================================== */
[data-lucide]{
  width:1.25rem;
  height:1.25rem;
  stroke-width:2
}
.icon-lg [data-lucide]{
  width:1.4rem;
  height:1.4rem
}

/* RESPONSIVE ============================================== */
@media (max-width:540px){
  .addon-grid{ grid-template-columns:1fr }
  .plan-main, .alacarte{ padding:1.5rem 1.25rem }
}


/* ===== CATÁLOGO - slider automático + imagens 768x1024 ===== */
.cat-slider{ overflow:hidden }
.cat-slider .cat-track{
  display:flex;
  gap:1rem;
  transition:transform .7s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}
.cat-card img.cat-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:inherit;
  z-index:0;
}
.cat-card .badge, .cat-card .meta { z-index:1 }

/* Font Awesome */
.fa-solid, .fa-regular, .fa-brands{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:1.25rem;
  height:1.25rem;
  font-size:1rem;
  line-height:1;
}
.icon-lg .fa-solid, .icon-lg .fa-regular, .icon-lg .fa-brands{
  width:1.4rem;
  height:1.4rem;
  font-size:1.1rem;
}
.fab-whatsapp .fa-brands{ font-size:1.6rem; width:auto; height:auto }
.plan-feats li .fa-solid{
  width:18px;
  height:18px;
  padding:3px;
  border-radius:9999px;
  background:rgba(43,123,255,.16);
  color:var(--accent);
  font-size:.7rem;
}

/* ===== CATÁLOGO - Marquee 100% largura, infinito ===== */
.cat-marquee{
  width:100vw;
  margin-left:calc(50% - 50vw);
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
          mask-image:linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  padding:18px 0 28px;
}
.cat-marquee-track{
  display:inline-flex;
  flex-wrap:nowrap;
  gap:1rem;
  padding-right:1rem;
  will-change:transform;
  transform:translate3d(0,0,0);
  backface-visibility:hidden;
}
@media (prefers-reduced-motion: reduce){
  .cat-marquee-track{ transform:none !important }
}
