﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESET & BASE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Montserrat', sans-serif; background: #0d0d0d; color: #fff; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
p    { line-height: 1.65; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul   { list-style: none; }

/* â•â•â•â•â•â•â•â• VARIABLES â•â•â•â•â•â•â•â• */
:root {
  --red: #FD0000;
  --red-dark: #800000;
  --green: #24FF00;
  --card-bg: #151515;
  --max-w: 1280px;
  --radius: 16px;
  --section-pad: 5rem 1.5rem;
}

/* â•â•â•â•â•â•â•â• UTILITIES â•â•â•â•â•â•â•â• */
.highlight-red   { color: var(--red);   font-weight: 700; }
.highlight-green { color: var(--green); font-weight: 700; }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 2rem;
}
.section-title--left { text-align: left; }
.section-desc { font-size: 1rem; text-align: center; max-width: 700px; margin: 0 auto 2rem; color: #ccc; }
.label--red { color: var(--red); letter-spacing: .08em; font-size: .9rem; text-align: center; margin-bottom: .5rem; display: block; }

/* â•â•â•â•â•â•â•â• BUTTONS â•â•â•â•â•â•â•â• */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, filter .25s;
  text-align: center;
  line-height: 1;
}
.btn--lg  { padding: 1rem 2.5rem; font-size: 1rem; }
.btn--red { background: linear-gradient(123deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; }
.btn--white { background: linear-gradient(123deg, #fff 0%, #c5c5c5 100%); color: #000; }
.btn:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(253,0,0,.5); filter: brightness(1.08); }

/* â•â•â•â•â•â•â•â• LOGO â•â•â•â•â•â•â•â• */
.logo-img { height: 52px; width: auto; display: block; }

/* â•â•â•â•â•â•â•â• HEADER â•â•â•â•â•â•â•â• */
.header {
  position: sticky; top: 0; z-index: 99;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid;
  border-image: linear-gradient(to right, transparent, var(--red), transparent) 1;
  width: 100%;
}
.header__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}

/* â•â•â•â•â•â•â•â• HERO â•â•â•â•â•â•â•â• */
.hero {
  min-height: 88vh;
  background:
    linear-gradient(to right, rgba(0,0,0,.9) 40%, rgba(0,0,0,.3) 100%),
    /* Quando tiver a imagem: url('assets/images/BG.jpg') center/cover */
    radial-gradient(ellipse at 70% 50%, #3a0000 0%, #0d0d0d 70%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
/* Grain texture */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .5;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 5rem 1.5rem;
  display: flex; align-items: center; gap: 3rem; width: 100%;
}
.hero__text { flex: 0 0 50%; display: flex; flex-direction: column; gap: 1.5rem; }
.hero__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; line-height: 1.2; }
.hero__desc  { font-size: 1rem; color: #ddd; max-width: 430px; margin-bottom: 0; }
.hero__image { flex: 0 0 50%; display: flex; justify-content: center; }

/* Hero 3-telas image */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hero-devices-img {
  max-width: 520px; width: 100%;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.7));
}

/* â•â•â•â•â•â•â•â• WHY SECTION â•â•â•â•â•â•â•â• */
.why-section {
  background: #000;
  border-top: 3px solid var(--red);
  padding: var(--section-pad);
}
.why-section__inner {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.video-wrapper {
  width: 100%; max-width: 360px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 0 50px rgba(253,0,0,.35);
}
.video-player {
  width: 100%; display: block;
  aspect-ratio: 9 / 16;
  background: #000;
  border: none;
}
.video-thumb {
  position: relative; display: block; width: 100%; cursor: pointer;
}
.video-cover-ph {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a0000, #3d0000, #0d0d0d);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.video-cover-ph__inner { text-align: center; }
.video-cover-ph__inner span { display: block; font-size: 2rem; font-weight: 900; color: #fff; }
.video-cover-ph__inner small { display: block; color: #aaa; margin-top: .5rem; font-size: .85rem; }
.video-thumb:hover .video-cover-ph { filter: brightness(.8); }
.play-btn {
  position: absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width: 80px; height: 80px; pointer-events: none;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.6));
  transition: transform .2s;
}
.video-thumb:hover .play-btn { transform: translate(-50%,-50%) scale(1.1); }
.location-notice { font-size: .95rem; color: #ccc; text-align: center; }

/* â•â•â•â•â•â•â•â• PLATFORMS â•â•â•â•â•â•â•â• */
.platforms-section {
  background: #000;
  padding: var(--section-pad);
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
.channels-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  max-width: var(--max-w);
}
.channel-img {
  width: 171px; height: 100px;
  object-fit: contain;
  background: #111;
  border: 1px solid #202020;
  border-radius: 8px;
  transition: transform .3s, filter .3s;
  cursor: pointer;
}
.channel-img:hover { transform: scale(1.04); filter: brightness(1.15); }

/* â•â•â•â•â•â•â•â• FEATURE SECTIONS â•â•â•â•â•â•â•â• */
.feature-section { background: #000; padding: var(--section-pad); }
.feature-section__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; gap: 3rem;
}
.feature-section--reverse .feature-section__inner { flex-direction: row-reverse; }
.feature-section__text { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.feature-section__image { flex: 0 0 auto; }
.feature-section__desc  { color: #ccc; font-size: 1rem; margin-bottom: 0; }

/* Device images */
.feature-device-img {
  max-width: 320px; width: 100%;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.7));
}
.feature-device-img--nb { max-width: 480px; }

/* â•â•â•â•â•â•â•â• TESTIMONIALS â•â•â•â•â•â•â•â• */
.testimonials-section {
  background: #000; border-top: 2px solid var(--red);
  padding: var(--section-pad);
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  overflow: hidden;
}
.carousel { width: 100%; overflow: hidden; mask-image: linear-gradient(to right, transparent 0%,black 10%,black 90%,transparent 100%); }
.carousel__track {
  display: flex; gap: 20px; width: max-content;
  animation: scrollLeft 35s linear infinite;
}
@keyframes scrollLeft { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* Depoimento placeholder */
.dep-ph {
  width: 220px; flex-shrink: 0;
  background: linear-gradient(135deg, #1a1a1a, #111);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 1.25rem 1rem;
  display: flex; flex-direction: column; gap: .6rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.5);
}
.dep-ph .dep-ph__avatar { font-size: 1rem; }
.dep-ph p { font-size: .85rem; color: #eee; font-style: italic; flex: 1; margin-bottom: 0; }
.dep-ph span { font-size: .75rem; color: var(--red); font-weight: 600; }

/* â•â•â•â•â•â•â•â• MOVIES MARQUEE â•â•â•â•â•â•â•â• */
.movies-section {
  background: #000; padding: var(--section-pad);
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  overflow: hidden;
}
.marquee-wrapper {
  width: 100%; overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%,black 8%,black 92%,transparent 100%);
}
.marquee { display: flex; gap: 12px; width: max-content; animation: marqueeLeft 28s linear infinite; }
.marquee--reverse { animation: marqueeRight 32s linear infinite; }
@keyframes marqueeLeft  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes marqueeRight { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }

.movie-poster-img {
  width: 120px; height: 180px; flex-shrink: 0;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 16px rgba(0,0,0,.5);
}

/* â•â•â•â•â•â•â•â• CATEGORIES â•â•â•â•â•â•â•â• */
.categories-section { background: #000; padding: var(--section-pad); }
.categories-section__inner {
  max-width: 850px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 3rem;
}
.cat-card {
  display: flex; align-items: center; gap: 2rem;
  background: #000; border: 1px solid #f50303;
  border-radius: var(--radius); padding: 2rem; overflow: hidden;
  transition: box-shadow .3s;
}
.cat-card:hover { box-shadow: 0 0 32px rgba(245,3,3,.2); }
.cat-card--flip { flex-direction: row-reverse; }
.cat-card__text { flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.cat-card__title { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 400; }
.cat-card__desc  { color: #ccc; font-size: .95rem; margin-bottom: 0; }

.cat-real-img {
  flex: 0 0 42%;
  height: 160px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

/* â•â•â•â•â•â•â•â• PRICING â•â•â•â•â•â•â•â• */
.pricing-section { background: #000; padding: var(--section-pad); }
.pricing-section__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  justify-content: center; align-items: flex-start;
}
.plan {
  flex: 1 1 260px; max-width: 310px;
  background: linear-gradient(to bottom, #151515, #040404);
  border: 1px solid var(--red);
  border-radius: var(--radius); padding: 1.75rem;
  display: flex; flex-direction: column; gap: .75rem;
  position: relative;
  transition: box-shadow .3s;
}
.plan:hover { box-shadow: 0 0 32px rgba(253,0,0,.35); }
.plan--featured {
  background: linear-gradient(123deg, var(--red) 0%, var(--red-dark) 100%);
  border-color: var(--red-dark);
  margin-top: 2.5rem;
}
.plan__badge {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -100%);
  background: #fff; color: #000;
  font-weight: 700; font-size: .9rem; letter-spacing: .1em;
  padding: 4px 14px; border-radius: 8px 8px 0 0; white-space: nowrap;
}
.plan__label {
  font-size: .8rem; letter-spacing: .6em; text-transform: uppercase;
  text-align: center; color: rgba(255,255,255,.8); margin-bottom: 0;
}
.plan__name  { font-size: 2.2rem; font-weight: 700; text-transform: uppercase; text-align: center; }
.plan__desc  { font-size: .9rem; text-align: center; color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 1rem; }
.plan__features { display: flex; flex-direction: column; gap: .5rem; }
.plan__features li { font-size: .88rem; color: #eee; line-height: 1.4; }
.plan__price { font-size: 2.5rem; font-weight: 700; text-align: center; }
.plan__cta   { display: block; width: 100%; padding: .85rem 1rem; }
.plan__installment { font-size: 1rem; font-weight: 700; text-align: center; color: rgba(255,255,255,.9); }

/* â•â•â•â•â•â•â•â• TRUST SECTION â•â•â•â•â•â•â•â• */
.trust-section {
  background: #000; padding: 4rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 3rem;
}
.trust-authenticity {
  display: flex; align-items: center; gap: 1.5rem;
  background: #151515; border-radius: 100px;
  padding: 2rem 2.5rem; max-width: 720px;
}
.trust-seal-img { height: 80px; width: auto; flex-shrink: 0; }
.trust-authenticity__text { font-size: .95rem; color: #ccc; line-height: 1.6; }
.trust-badges { display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.trust-badge  { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.trust-badge-img { max-width: 180px; height: auto; }

/* â•â•â•â•â•â•â•â• FOOTER â•â•â•â•â•â•â•â• */
.footer {
  background: #000; border-top: 1px solid var(--red);
  padding: 2rem 1.5rem; text-align: center; font-size: .9rem; color: #fff;
}
.footer a { color: #fff; transition: color .2s; }
.footer a:hover { color: var(--red); }

/* â•â•â•â•â•â•â•â• NOTIFICATION TOAST â•â•â•â•â•â•â•â• */
.notification-toast {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  z-index: 9999; display: flex; flex-direction: column; gap: .5rem; pointer-events: none;
}
.toast-item {
  background: #151515; border-left: 4px solid #24FF00;
  color: #fff; padding: .75rem 1.25rem; border-radius: 8px;
  font-size: .85rem; max-width: 290px;
  box-shadow: 0 4px 20px rgba(0,0,0,.6);
  animation: toastIn .4s ease forwards;
  pointer-events: auto;
}
@keyframes toastIn  { from{transform:translateX(-120%);opacity:0} to{transform:translateX(0);opacity:1} }
@keyframes toastOut { from{transform:translateX(0);opacity:1}     to{transform:translateX(-120%);opacity:0} }
.toast-item.leaving { animation: toastOut .4s ease forwards; }

/* â•â•â•â•â•â•â•â• RESPONSIVE â•â•â•â•â•â•â•â• */
@media (max-width: 900px) {
  .hero__inner { flex-direction: column; text-align: center; padding: 6rem 1.5rem 3rem; }
  .hero__text  { flex: none; align-items: center; }
  .hero__desc  { max-width: 100%; }
  .hero__image { order: -1; }
  .hero-devices-img { max-width: 320px; }

  .feature-section__inner,
  .feature-section--reverse .feature-section__inner { flex-direction: column; text-align: center; }
  .section-title--left { text-align: center; }
  .feature-section__text { align-items: center; }
  .feature-device-img { max-width: 260px; }
  .feature-device-img--nb { max-width: 340px; }

  .cat-card, .cat-card--flip { flex-direction: column; }
  .cat-real-img { max-width: 100%; flex: none; width: 100%; height: 140px; }
  .channel-img { width: 30%; min-width: 90px; height: 70px; }

  .pricing-section__inner { flex-direction: column; align-items: center; }
  .plan { max-width: 100%; }
  .plan--featured { margin-top: 2.5rem; }

  .trust-authenticity { flex-direction: column; border-radius: var(--radius); text-align: center; }
  .trust-badges { gap: 2rem; }
}
@media (max-width: 500px) {
  :root { --section-pad: 3rem 1rem; }
  .channel-img { width: 28%; min-width: 80px; }
  .plan { padding: 1.25rem; }
  .trust-badges { gap: 1.5rem; }
}

