:root {
  --bg: #0b0b0f;
  --bg-soft: #14141b;
  --card: #1b1b24;
  --text: #f5f5f7;
  --muted: #a7a7b3;
  --accent: #e50914;
  --accent-2: #ff2d39;
  --border: rgba(255, 255, 255, 0.09);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
  animation: glow 5s infinite alternate;
}

.whatsapp-float img {
  width: 32px;
}


@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
  }
  to {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
  }
}


.whatsapp-toast {
  position: fixed;
  bottom: 95px;
  right: 20px;
  background: rgba(0,0,0,0.88);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  z-index: 999;

  display: flex;
  align-items: center;
  gap: 10px;

  opacity: 0;
  transform: translateX(50px);
  transition: 0.4s ease;
}

.whatsapp-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.wa-close {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 14px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top right, #171722 0%, var(--bg) 45%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section {
  padding: 2rem 0;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 14, 0.7);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.4px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: #ddd;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.2rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 120px 0;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0;
  z-index: 0;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/background_hero.jpg") center/cover no-repeat;
  filter: blur(6px) brightness(0.4);
  transform: scale(1.1);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.subheadline {
  color: var(--muted);
  margin: 1rem 0 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.84rem 1.25rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 18px rgba(229, 9, 20, 0.35);
}

.btn-outline {
  border-color: var(--border);
  background: transparent;
  color: #fff;
}

.btn-outline:hover {
  background: #21212b;
}

.hero-card,
.card,
.price-card,
.step,
.faq-item,
.rating-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.4rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.kpi-bar {
  position: relative;
  z-index: 5;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(229, 9, 20, 0.15);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 1rem;
}

.kpi-item h3 {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.kpi-item p {
  color: #aaa;
  font-size: 0.9rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card {
  padding: 1.2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
  text-align: center;
}

.card:hover,
.price-card:hover,
.step:hover,
.rating-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 9, 20, 0.5);
}

.card p {
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.netflix-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.netflix-card h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.netflix-card p {
  color: #b3b3b3;
  font-size: 0.95rem;
}

.netflix-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(229, 9, 20, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.netflix-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(229, 9, 20, 0.6);
  box-shadow: 0 10px 40px rgba(229, 9, 20, 0.2);
}

.netflix-card:hover::before {
  opacity: 1;
}

.media {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(229, 9, 20, 0.45) rgba(255, 255, 255, 0.08);
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.carousel::-webkit-scrollbar-thumb {
  background: rgba(229, 9, 20, 0.45);
  border-radius: 999px;
}

.carousel-track {
  display: flex;
  gap: 0.9rem;
  min-width: max-content;
}

.carousel-item {
  scroll-snap-align: start;
  flex: 0 0 auto;
}

.logo-item {
  width: 150px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ddd;
}

.img-league {
  max-width: 100px;
  height: auto;
}

.poster-item {
  width: 200px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #111;
  border-radius: 10px;
}

.poster-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-item:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.price-card {
  position: relative;
  padding: 1.4rem;
}

.popular {
  border-color: rgba(229, 9, 20, 0.6);
  transform: scale(1.02);
}

.popular-tag {
  position: absolute;
  top: -12px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.duration {
  color: var(--muted);
  margin: 0;
}

.price-card h3 {
  margin: 0.2rem 0 0.6rem;
  font-size: 2rem;
}

.price-card ul {
  margin: 0 0 1.2rem;
  padding-left: 0;
  color: #d2d2db;
  list-style: none;
}

.price-card ul li {
  position: relative;
  padding-left: 22px;
}

.price-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e50914;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step {
  padding: 1.3rem;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.2);
  border: 1px solid rgba(229, 9, 20, 0.4);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.step p {
  color: var(--muted);
}


.ratings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.rating-card {
  padding: 1.2rem;
}

.rating-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.rating-score {
  color: #ffd166;
  font-weight: 700;
  font-size: 0.92rem;
}

.rating-date {
  color: var(--muted);
  font-size: 0.82rem;
}

.rating-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.02rem;
}

.rating-card h3 span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.rating-card p {
  color: #d2d2db;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0.9rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.6rem 0 0.2rem;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--border);
  background: #0a0a0f;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.footer h4 {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.footer a,
.footer p {
  display: block;
  color: var(--muted);
  margin: 0.25rem 0;
}

.footer a:hover {
  color: #fff;
}

.muted {
  color: var(--muted);
  max-width: 34ch;
}

.copyright {
  margin-top: 1.2rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  color: var(--muted);
  text-align: center;
}


.mobile-dots {
  display: none;
}

.mobile-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  transition: transform 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
  opacity: 0.9;
  cursor: pointer;
}

.mobile-dot.active {
  background: var(--accent);
  transform: scale(1.2);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .pricing-grid,
  .steps,
  .ratings-grid,
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    gap: 1.1rem;
  }

  .popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feature-grid[data-mobile-slider],
  .pricing-grid[data-mobile-slider],
  .steps[data-mobile-slider],
  .ratings-grid[data-mobile-slider] {
    display: flex;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 1fr);
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 0.2rem;
    padding: 0.15rem 0.2rem 0.35rem;
  }

  .feature-grid[data-mobile-slider]::-webkit-scrollbar,
  .pricing-grid[data-mobile-slider]::-webkit-scrollbar,
  .steps[data-mobile-slider]::-webkit-scrollbar,
  .ratings-grid[data-mobile-slider]::-webkit-scrollbar {
    display: none;
  }

  .feature-grid[data-mobile-slider],
  .pricing-grid[data-mobile-slider],
  .steps[data-mobile-slider],
  .ratings-grid[data-mobile-slider] {
    scrollbar-width: none;
  }

  .feature-grid[data-mobile-slider] > *,
  .pricing-grid[data-mobile-slider] > *,
  .steps[data-mobile-slider] > *,
  .ratings-grid[data-mobile-slider] > * {
    scroll-snap-align: start;
    flex: 0 0 85%; 
  }

  .mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.9rem;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 4rem 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 14, 0.98);
    border-bottom: 1px solid var(--border);
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 320px;
  }

  .nav-links a {
    padding: 0.95rem 4%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .hero-grid,
  .feature-grid,
  .pricing-grid,
  .steps,
  .ratings-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
