/* ===== LOGA PLAY - Design system ===== */
:root {
  /* Brand (from logo) */
  --loga-orange: #F58B2E;
  --loga-teal: #2ECAB6;
  --loga-navy: #1F2C4C;
  --loga-navy-light: #2a3d66;
  --loga-dark: #0f1629;
  /* UI */
  --white: #ffffff;
  --gray-100: #f5f5f7;
  --gray-200: #e8e8ed;
  --gray-400: #8e8e93;
  --gray-600: #48484a;
  /* Effects */
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --topbar-height: 34px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--loga-dark);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ===== Header ===== */
.top-info-bar {
  position: relative;
  height: var(--topbar-height);
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-info-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-info-left,
.top-info-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-info-bar a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  white-space: nowrap;
}

.top-info-bar a:hover {
  color: var(--loga-orange);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 24px;
  background: rgba(15, 22, 41, 0.95);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  overflow: visible;
}

.header.scrolled {
  background: rgba(15, 22, 41, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 46px;
  width: auto;
}

.logo-play {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--loga-orange);
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--loga-teal);
}

.nav-cta {
  color: var(--loga-orange) !important;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(245, 139, 46, 0.15);
}

.nav-cta:hover {
  background: rgba(245, 139, 46, 0.25);
  color: var(--white) !important;
}

.nav-cta-platform {
  background: transparent;
  border: 1.5px solid var(--loga-teal);
  color: var(--loga-teal) !important;
}

.nav-cta-platform:hover {
  background: rgba(46, 202, 182, 0.15);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Nav mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .top-info-bar {
    height: 30px;
  }
  .top-info-inner {
    padding: 0 16px;
    justify-content: space-between;
  }
  .top-info-left {
    gap: 12px;
    justify-content: space-between;
    width: 100%;
  }
  .top-info-left a:first-child {
    margin-right: auto;
  }
  .top-info-right {
    display: none;
  }
  .top-info-bar a {
    font-size: 0.74rem;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(15, 22, 41, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
    z-index: 101;
  }
  .nav.open {
    max-height: 600px;
    overflow: visible;
    opacity: 1;
    padding: 8px 0 24px;
  }
  .nav a {
    padding: 14px 24px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
  }
  .nav a:last-child {
    border-bottom: none;
  }
  .nav a:active {
    background: rgba(255, 255, 255, 0.06);
  }
  .menu-toggle {
    display: flex;
    z-index: 102;
    position: relative;
  }
  .nav-cta {
    margin: 8px 24px 4px;
    text-align: center;
    display: block !important;
    border-bottom: none !important;
  }
  .nav-cta-platform {
    margin-bottom: 8px;
  }
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--loga-orange), #e67a20);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(245, 139, 46, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(245, 139, 46, 0.45);
}

.btn-primary .btn-icon {
  animation: playPulse 1.5s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.1); }
}

.btn-outline {
  background: transparent;
  color: var(--loga-teal);
  border-color: var(--loga-teal);
}

.btn-outline:hover {
  background: rgba(46, 202, 182, 0.15);
}

.btn-icon {
  font-size: 0.75em;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 120px 24px 0;
  overflow: hidden;
}

.hero > * {
  position: relative;
  z-index: 2;
}

/* Hero Carousel Backgrounds */
.hero-carousel-bgs {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-carousel-bg.is-active {
  opacity: 1;
}

.hero-carousel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(7, 14, 29, 0.93) 0%, rgba(7, 14, 29, 0.78) 35%, rgba(7, 14, 29, 0.35) 65%, rgba(7, 14, 29, 0.15) 100%);
  pointer-events: none;
}

/* Hero Carousel Slides */
.hero-carousel-slides {
  position: relative;
  max-width: 560px;
  min-height: 220px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hero Carousel Dots — vertical right */
.hero-carousel-dots {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 0;
  transition: background 0.4s ease, height 0.4s ease, border-radius 0.4s ease, box-shadow 0.4s ease;
}

.hero-dot.is-active {
  height: 28px;
  border-radius: 5px;
  background: #F58B2E;
  box-shadow: 0 0 12px rgba(245, 139, 46, 0.5);
}

.hero-dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.55);
}

/* Área superior: texto (sempre acima dos carrosséis) */
.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
  min-height: 0;
  padding-bottom: 24px;
}


.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(46, 202, 182, 0.12) 0%, transparent 50%),
              radial-gradient(ellipse 60% 80% at 80% 80%, rgba(245, 139, 46, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse 50% 50% at 20% 60%, rgba(31, 44, 76, 0.9) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--loga-teal);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--loga-orange);
  bottom: -50px;
  left: -50px;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 200px;
  height: 200px;
  background: var(--loga-navy-light);
  top: 50%;
  left: 30%;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  text-align: left;
  max-width: 560px;
}

.hero-mockup {
  display: none;
}

.hero-mockup-img {
  display: none;
}

/* Hero: 3 linhas curvas + carrosséis de logos (instrucao_hero.md) */
.hero-tracks {
  flex-shrink: 0;
  position: relative;
  height: 320px;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.tracks-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tracks-svg path {
  fill: none;
  stroke: rgba(245, 139, 46, 0.35);
  stroke-width: 2;
}

.track-layer {
  position: absolute;
  inset: 0;
}

.track-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--white);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--loga-orange);
  will-change: left, top;
}

.track-dot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

@media (max-width: 768px) {
  .hero-tracks {
    height: 310px;
  }
}

.hero-tag {
  font-size: 1.1rem;
  color: var(--loga-teal);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.word-play {
  display: inline-block;
  color: var(--loga-orange);
  position: relative;
  animation: wordPlayPulse 2.5s ease-in-out infinite;
  font-weight: 800;
}

@keyframes wordPlayPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}

/* Entrance animations */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.8s ease forwards;
}

.animate-in.delay-1 { animation-delay: 0.15s; }
.animate-in.delay-2 { animation-delay: 0.3s; }
.animate-in.delay-3 { animation-delay: 0.45s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero responsivo */
@media (max-width: 900px) {
  .hero-inner {
    text-align: left;
  }
  .hero-content {
    text-align: left;
    max-width: 100%;
  }
  .hero-cta {
    justify-content: flex-start;
  }
}

/* ===== Manifesto ===== */
.manifesto {
  padding: 100px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(31, 44, 76, 0.4) 50%, transparent 100%);
}

.manifesto-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-line {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  opacity: 0.9;
}

.manifesto-line.highlight {
  color: var(--loga-orange);
  font-weight: 700;
  margin: 24px 0 32px;
}

.manifesto-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.manifesto-cta strong {
  font-size: 1.75rem;
  color: var(--loga-teal);
}

.manifesto-cta span {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Banners Carousel ===== */
.banners-carousel-section {
  overflow: hidden;
  padding: 60px 0 0;
}

.banners-carousel-row {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.banners-carousel-row + .banners-carousel-row {
  margin-top: 20px;
}

.banners-carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.banners-carousel-track img {
  flex-shrink: 0;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.banners-carousel-top .banners-carousel-track img {
  height: 200px;
  width: 320px;
}

.banners-carousel-bottom .banners-carousel-track img {
  height: 150px;
  width: 240px;
}

.banners-track-right {
  animation: banners-scroll-right 90s linear infinite;
}

.banners-track-left {
  animation: banners-scroll-left 80s linear infinite;
}

@keyframes banners-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes banners-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .banners-carousel-top .banners-carousel-track img {
    height: 170px;
    width: 272px;
  }

  .banners-carousel-bottom .banners-carousel-track img {
    height: 130px;
    width: 210px;
  }

  .banners-carousel-track {
    gap: 12px;
  }

  .banners-carousel-row + .banners-carousel-row {
    margin-top: 14px;
  }

  .banners-carousel-section {
    padding: 40px 0 0;
  }
}

/* ===== Play cards (sticky stacking) ===== */
.play-cards {
  padding: 100px 0 80px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  font-size: 1.1rem;
}

.stacking-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stack-card {
  position: sticky;
  top: calc(80px + var(--card-index, 0) * 28px);
  z-index: calc(var(--card-index, 0) + 1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: rgba(22, 30, 48, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.4s ease;
}

.stack-card:hover {
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(46, 202, 182, 0.15);
}

.stack-card-info {
  padding: 48px 48px 48px 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stack-card-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--loga-teal);
  background: rgba(46, 202, 182, 0.1);
  border: 1px solid rgba(46, 202, 182, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
}

.stack-card-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.stack-card-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.stack-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--loga-orange), #e67a20);
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  margin-top: 8px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.stack-card-cta:hover {
  transform: translateY(-2px);
}

.stack-card-visual {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.stack-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.stack-card:hover .stack-card-visual img {
  transform: scale(1.04);
}

/* ===== Seção 4: modelo original + infos na esquerda ===== */
.programs-showcase {
  padding: 0;
  margin: 0;
  background: #000;
}

.programs-showcase-inner {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  height: 800px;
  min-height: 800px;
  overflow: hidden;
  isolation: isolate;
  background: #5e6b78;
}

.programs-showcase-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.programs-showcase-static {
  position: absolute;
  inset: 0;
}

.programs-static-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.programs-static-bg.is-active {
  opacity: 1;
}

.programs-showcase-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.programs-showcase-banner {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: right center;
  image-rendering: auto;
  opacity: 0;
  visibility: hidden;
  transform: scale(1);
  transform-origin: right center;
  transition: opacity 0.55s ease-in-out, visibility 0.55s ease-in-out;
  will-change: opacity, transform;
}

.programs-showcase-banner.active {
  opacity: 1;
  visibility: visible;
  animation: programsBgBreath 5.2s ease-out forwards;
}

@keyframes programsBgBreath {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.programs-showcase-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.programs-showcase-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 36px clamp(16px, 3vw, 48px);
}

.programs-showcase-left {
  width: min(560px, 48%);
  margin-left: clamp(16px, 2.4vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.programs-title {
  font-size: clamp(2.1rem, 4vw, 3.05rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.programs-title-highlight {
  color: #F58B2E;
}

.programs-description {
  max-width: 520px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.programs-cta {
  margin-top: 4px;
}

.programs-showcase-ui {
  position: relative;
  width: clamp(560px, 44vw, 640px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  pointer-events: auto;
}

.programs-cards-viewport {
  width: 100%;
  overflow: visible;
  padding: 10px 0;
}

.programs-cards-track {
  position: relative;
  width: 100%;
  height: 382px;
}

.program-card {
  position: absolute;
  top: 50%;
  left: 0;
  width: 228px;
  height: 228px;
  padding: 0;
  cursor: pointer;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  background: rgba(12, 18, 34, 0.7);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%);
  transition: transform 0.68s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.68s ease, filter 0.68s ease, box-shadow 0.68s ease, height 0.68s cubic-bezier(0.22, 0.61, 0.36, 1), width 0.68s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, opacity, filter;
}

.program-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.program-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 100%);
}

/* Channel card overrides */
.program-card.channel-card {
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid var(--loga-orange, #ff7a27);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.program-card.channel-card::after {
  display: none;
}

.channel-card-logo-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
}

.channel-card-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: width 0.5s ease, height 0.5s ease;
}

.program-card[data-state='active'] .channel-card-logo {
  width: 120px;
  height: 120px;
}

.channel-card-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a2035;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Program highlight card overrides */
.program-card.program-highlight-card {
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
  padding: 0;
}

.program-card.program-highlight-card::after {
  display: none;
}

.program-highlight-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.5s ease;
}

.program-card.program-highlight-card[data-state='active'] .program-highlight-img {
  transform: scale(1.05);
}

.program-highlight-name {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  z-index: 2;
  text-align: center;
}

.program-card.program-highlight-card::before {
  display: none;
}

.programs-carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  margin-top: 40px;
}

.program-card-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.program-card-logo {
  width: 60px;
  height: 60px;
  border-radius: 0;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent;
  padding: 0;
}

.program-card-logo-fallback {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
  background: transparent;
}

.program-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.program-card[data-state='active'] {
  opacity: 1;
  z-index: 6;
  filter: saturate(1.06) contrast(1.04);
  width: 320px;
  height: 440px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  transform: translateY(calc(-50% - 3px)) translateX(calc(var(--slot, 0) * 260px)) scale(1);
}

.program-card[data-state='near'] {
  opacity: 0.9;
  z-index: 4;
  width: 180px;
  height: 220px;
  filter: saturate(0.95) contrast(0.97);
  transform: translateY(-50%) translateX(calc(var(--slot, 0) * 260px + 70px)) scale(1);
}

.program-card[data-state='far'] {
  opacity: 0.74;
  z-index: 3;
  width: 180px;
  height: 220px;
  filter: saturate(0.86) contrast(0.93);
  transform: translateY(-50%) translateX(calc(var(--slot, 0) * 260px + 70px)) scale(1);
}

.program-card[data-hidden='true'] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(calc(var(--slot, 0) * 210px + 70px)) scale(0.96);
}

.programs-nav-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: rgba(7, 15, 31, 0.92);
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.programs-nav-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.programs-nav-btn path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.programs-nav-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.42);
}

@media (prefers-reduced-motion: reduce) {
  .programs-showcase-banner {
    transition-duration: 0.01s;
    animation-duration: 0.01s !important;
  }
  .program-card {
    transition-duration: 0.01s;
  }
}

@media (max-width: 768px) {
  .programs-showcase {
    padding: 0;
  }
  .programs-showcase-inner {
    height: auto;
    min-height: auto;
  }
  .programs-showcase-banner {
    object-fit: cover;
  }
  .programs-showcase-carousel,
  .programs-showcase-overlay {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  .programs-showcase-content {
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    padding: 48px 20px;
  }
  .programs-showcase-left {
    width: 100%;
    margin-left: 0;
  }
  .programs-title {
    font-size: clamp(1.9rem, 8.5vw, 2.3rem);
  }
  .programs-tab {
    font-size: 0.95rem;
    padding: 10px 14px;
  }
  .programs-tabs-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .programs-tabs-card {
    min-height: 84px;
  }
  .programs-showcase-ui {
    width: min(420px, calc(100% - 12px));
    margin-top: auto;
  }
  .programs-cards-track {
    height: 340px;
  }
  .program-card {
    width: 120px;
    height: 150px;
  }
  .program-card[data-state='active'] {
    width: 220px;
    height: 275px;
    transform: translateY(calc(-50% - 2px)) translateX(calc(var(--slot, 0) * 130px)) scale(1);
  }
  .program-card[data-state='near'] {
    height: 150px;
    transform: translateY(-50%) translateX(calc(var(--slot, 0) * 130px)) scale(1);
  }
  .program-card[data-state='far'] {
    height: 150px;
    transform: translateY(-50%) translateX(calc(var(--slot, 0) * 130px)) scale(1);
  }
  .program-card[data-hidden='true'] {
    transform: translateY(-50%) translateX(calc(var(--slot, 0) * 130px)) scale(0.96);
  }
  .program-card-logo {
    width: 60px;
    height: 60px;
  }
  .program-card-title {
    font-size: 0.72rem;
    font-weight: 700;
  }
  .programs-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
  }
}

/* ===== Benefits ===== */
.benefits {
  padding: 100px 0;
  background: rgba(31, 44, 76, 0.3);
  overflow: hidden;
}

.benefits-carousel {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.benefits-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: benefits-scroll 30s linear infinite;
}

@keyframes benefits-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

.benefit-card {
  position: relative;
  background: rgba(25, 32, 48, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px 100px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  width: 320px;
}

.benefit-card:hover {
  border-color: rgba(46, 202, 182, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.benefit-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-card-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.benefit-card-text small {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.benefit-card-icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  opacity: 0.9;
}

.benefit-card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== Plans ===== */
.plans {
  padding: 100px 0;
}

.plans-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 20px;
}

.plans-header-left .section-title {
  text-align: left;
}

.plans-header-left .section-sub {
  text-align: left;
  margin-top: 8px;
}

.plans-tabs {
  display: flex;
  gap: 0;
  position: relative;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.plans-tab {
  position: relative;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 28px;
  cursor: pointer;
  transition: color 0.3s;
  white-space: nowrap;
}

.plans-tab:hover {
  color: rgba(255, 255, 255, 0.8);
}

.plans-tab.is-active {
  color: var(--white);
}

.plans-tab-indicator {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 3px;
  background: var(--loga-orange);
  border-radius: 3px 3px 0 0;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.plans-tab-panel {
  display: none;
}

.plans-tab-panel.is-active {
  display: block;
}

.plans-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 800px;
  margin: 0 auto;
}

.plan-card-speed {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--loga-orange);
  background: rgba(245, 139, 46, 0.12);
  padding: 6px 14px;
  border-radius: 8px;
  align-self: flex-start;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(21, 32, 52, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 38px 22px 22px;
  min-height: 530px;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 139, 46, 0.45);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.plan-card.featured {
  border-color: var(--loga-orange);
  padding-top: 56px;
}

.plan-card-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--loga-orange);
  color: #121212;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 0 0 8px 8px;
  padding: 8px 18px;
}

.plan-card-title {
  font-size: 2.8rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 6px;
}

.plan-card-meta {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.plan-card-logos {
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
}

.plan-card-logos-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: planLogosScroll 28s linear infinite;
  will-change: transform;
}

.plan-card-logos:hover .plan-card-logos-track {
  animation-play-state: paused;
}

.plan-card-logos img {
  width: 72px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  border: 2px solid #FF7A27;
}

/* SVGs de canal já estão na cor laranja nos arquivos — sem filtro necessário */

.plan-card-logos--fixed {
  display: flex;
  gap: 8px;
  overflow: visible;
}

.plan-card-logos--fixed img {
  width: 72px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  border: 2px solid #FF7A27;
}


@keyframes planLogosScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 4px));
  }
}

.plan-speed-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.plan-speed-select {
  width: 100%;
  appearance: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  padding: 14px 16px;
  outline: none;
}

.plan-speed-select:focus {
  border-color: rgba(245, 139, 46, 0.85);
  box-shadow: 0 0 0 3px rgba(245, 139, 46, 0.2);
}

.plan-speed-select option {
  color: #111;
  background: #fff;
}

.plan-card-price {
  margin-top: 6px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  order: 6;
}

.plan-card-price strong {
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.plan-card-price span {
  font-size: 1.7rem;
  font-weight: 700;
}

.plan-card-note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.plan-card-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  order: 5;
}

.plan-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.plan-card-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--loga-teal, #00c8a0);
}

.plan-card-btn {
  margin-top: auto;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ff7a27;
  color: #111;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 12px;
  transition: filter 0.2s ease, transform 0.2s ease;
  order: 7;
}

.plan-card-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.plan-details-link {
  order: 8;
  margin-top: 10px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  align-self: center;
}

.plan-details-link:hover {
  color: var(--loga-teal);
}

.plans-note {
  margin-top: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ===== Modal de detalhes do plano ===== */
.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  padding: 12px;
}

.plan-modal.open {
  display: grid;
  place-items: center;
}

.plan-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 24, 0.7);
  backdrop-filter: blur(4px);
}

.plan-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 24px));
  max-height: calc(100vh - 24px);
  overflow: auto;
  margin: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, #15213a 0%, #0f1629 100%);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.45);
  padding: 26px;
}

.plan-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.plan-modal-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 24px;
}

.plan-modal-left {
  border: 1px solid rgba(46, 202, 182, 0.3);
  border-radius: 16px;
  background: rgba(15, 24, 42, 0.88);
  padding: 18px;
}

.plan-modal-title {
  font-size: 1.6rem;
  line-height: 1.1;
}

.plan-modal-subtitle {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.plan-modal-channels-title {
  margin-top: 18px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

/* Modal category tabs */
.plan-modal-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.plan-modal-cat-tab {
  border: 1px solid transparent;
  border-radius: 999px;
  background: #cfd4dc;
  color: #1f2735;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  padding: 8px 14px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.plan-modal-cat-tab:hover {
  transform: translateY(-1px);
  filter: brightness(0.96);
}

.plan-modal-cat-tab.is-active {
  background: var(--loga-orange, #ff7a27);
  color: #0e1320;
}

.plan-modal-cat-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  animation: modalCatFadeIn 0.3s ease;
  max-height: 340px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 122, 39, 0.5) rgba(255, 255, 255, 0.05);
}

.plan-modal-cat-grid::-webkit-scrollbar {
  width: 6px;
}

.plan-modal-cat-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.plan-modal-cat-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 122, 39, 0.45);
  border-radius: 999px;
  transition: background 0.2s ease;
}

.plan-modal-cat-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 122, 39, 0.7);
}

@keyframes modalCatFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.plan-modal-channel-card {
  border-radius: 8px;
  background: #fff;
  border: 2px solid #FF7A27;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.plan-modal-channel-card img {
  width: 100%;
  height: 40px;
  object-fit: contain;
}

.plan-modal-channel-card img[src$=".PNG"] {
  height: 40px;
  transform: scale(1.3);
}

.plan-modal-channel-card span {
  font-size: 0.78rem;
  color: #1a2035;
  text-align: center;
  font-weight: 600;
}

.plan-modal-right {
  padding-right: 16px;
}

.plan-modal-speed {
  margin-top: 2px;
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(245, 139, 46, 0.6);
  padding: 6px 12px;
  font-size: 0.9rem;
}

.plan-modal-price {
  margin-top: 12px;
  font-size: 2.1rem;
  color: var(--loga-orange);
  font-weight: 700;
}

.plan-modal-benefits {
  margin: 14px 0 20px;
  list-style: none;
  display: grid;
  gap: 7px;
}

.plan-modal-benefits li {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-modal-benefits li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--loga-teal, #00c8a0);
}

.plan-modal-right h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.plan-modal-right p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .plans-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 740px) {
  .plans-cards-grid {
    grid-template-columns: 1fr;
  }
  .plans-tab {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  .plan-card {
    min-height: auto;
  }
  .plan-card-title {
    font-size: 1.7rem;
  }
  .plan-card-price strong {
    font-size: 1.8rem;
  }
  .plan-card-price span {
    font-size: 1.45rem;
  }
  .plan-modal-dialog {
    padding: 20px 14px;
  }
  .plan-modal-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .plan-modal-right {
    padding-right: 0;
  }
  .plan-modal-channels-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===== Channels ===== */
.channels {
  padding: 80px 0;
  overflow: hidden;
}

.channels-plan-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.channels-plan-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 28px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(21, 32, 52, 0.8);
  color: rgba(255, 255, 255, 0.85);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.channels-plan-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 139, 46, 0.4);
}

.channels-plan-tab.is-active {
  background: linear-gradient(135deg, rgba(245, 139, 46, 0.2), rgba(46, 202, 182, 0.12));
  border-color: var(--loga-orange);
  color: #fff;
}

.channels-plan-tab-count {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

.channels-plan-tab.is-active .channels-plan-tab-count {
  color: var(--loga-teal);
}

.channels-plan-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.channels-category {
  background: rgba(21, 32, 52, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
}

.channels-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.channels-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.channels-category-badge.badge-live,
.channels-category-badge.badge-hybrid,
.channels-category-badge.badge-vod {
  background: none;
  color: #fff;
  border: none;
}

.channels-category-count {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.channels-carousel-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.channels-carousel-track {
  display: flex;
  gap: 12px;
  width: max-content;
}

.channels-carousel-track.channels-scroll-left {
  animation: channels-scroll-left 25s linear infinite;
}

.channels-carousel-track.channels-scroll-right {
  animation: channels-scroll-right 25s linear infinite;
}

@keyframes channels-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes channels-scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.channels-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  border-radius: 12px;
  background: rgba(7, 14, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  width: 100px;
}

.channels-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.channels-item img {
  width: 100%;
  max-width: 72px;
  height: 48px;
  object-fit: contain;
}

.channels-item-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 48px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 4px;
}

.channels-item-name {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media (max-width: 768px) {
  .channels-plan-tabs {
    gap: 8px;
  }

  .channels-plan-tab {
    padding: 10px 18px;
    font-size: 0.92rem;
  }

  .channels-category {
    padding: 16px;
  }

  .channels-carousel-track {
    gap: 8px;
  }

  .channels-item {
    width: 85px;
    padding: 8px 6px;
  }

  .channels-item img {
    max-width: 56px;
    height: 36px;
  }

  .channels-item-fallback {
    width: 56px;
    height: 36px;
    font-size: 0.62rem;
  }

  .channels-item-name {
    font-size: 0.65rem;
  }
}

/* ===== Devices ===== */
.devices-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.device-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  min-width: 140px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
  transition: transform var(--transition), border-color var(--transition);
}

.device-item:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 202, 182, 0.3);
}

.device-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== CTA Final ===== */
.cta-final {
  padding: 100px 0;
}

.cta-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(46, 202, 182, 0.15), rgba(245, 139, 46, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ===== Steps / Passo a passo (scroll-driven) ===== */
.steps-section {
  position: relative;
  background: linear-gradient(160deg, #111b2e 0%, #0d1420 50%, #131f35 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: clip;
}

.steps-scroll-area {
  height: 300vh;
  position: relative;
}

.steps-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.steps-sticky-inner {
  width: min(1120px, calc(100% - 48px));
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

/* Esquerda: título + progress */
.steps-left {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.steps-watch-logo {
  width: 280px;
  opacity: 0.85;
}

.steps-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.steps-progress {
  display: flex;
  gap: 20px;
}

.steps-progress-track {
  width: 3px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.steps-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: var(--loga-orange, #ff7a27);
  border-radius: 999px;
  transition: height 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.steps-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s ease;
  opacity: 0.35;
}

.steps-list-item.is-active {
  opacity: 1;
}

.steps-list-item.is-done {
  opacity: 0.55;
}

.steps-list-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.steps-list-item.is-active .steps-list-num {
  background: var(--loga-orange, #ff7a27);
  border-color: var(--loga-orange, #ff7a27);
  color: #111;
  box-shadow: 0 4px 14px rgba(255, 122, 39, 0.4);
}

.steps-list-item.is-done .steps-list-num {
  border-color: var(--loga-orange, #ff7a27);
  color: var(--loga-orange, #ff7a27);
}

.steps-list-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.steps-list-item.is-active .steps-list-label {
  color: #fff;
}

.steps-list-item.is-done .steps-list-label {
  color: rgba(255, 255, 255, 0.7);
}

/* Direita: painel de conteúdo */
.steps-right {
  flex: 1;
  position: relative;
  min-height: 320px;
}

.steps-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 80px;
  gap: 20px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.steps-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.steps-panel-icon {
  width: 88px;
  height: 88px;
  min-width: 88px;
  min-height: 88px;
  border-radius: 22px;
  background: rgba(255, 122, 39, 0.12);
  border: 1px solid rgba(255, 122, 39, 0.2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.steps-panel-icon svg {
  width: 40px;
  height: 40px;
  color: var(--loga-orange, #ff7a27);
}

.steps-panel-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.steps-panel-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  max-width: 480px;
}

.steps-panel-desc strong {
  color: var(--loga-orange, #ff7a27);
  font-weight: 600;
}

/* Passo 4: download layout */
.steps-panel--download {
  flex-direction: column;
  gap: 20px;
}

.steps-download-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps-download-mockup {
  position: absolute;
  right: clamp(24px, 4vw, 80px);
  bottom: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.steps-download-mockup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps-phone-img {
  width: 360px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.5));
}

.steps-store-buttons {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.steps-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--loga-orange, #ff7a27);
  color: #fff;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.steps-store-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.steps-store-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.steps-store-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.steps-store-label {
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.85;
}

.steps-store-name {
  font-size: 1rem;
  font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
  .steps-scroll-area {
    height: 250vh;
  }

  .steps-sticky-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: calc(100% - 32px);
  }

  .steps-left {
    flex: none;
    width: 100%;
    gap: 14px;
  }

  .steps-progress {
    flex-direction: row;
    gap: 12px;
  }

  .steps-progress-track {
    display: none;
  }

  .steps-list {
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
  }

  .steps-list-item {
    flex-direction: column;
    padding: 6px 4px;
    gap: 4px;
  }

  .steps-list-label {
    display: none;
  }

  .steps-list-num {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .steps-right {
    width: 100%;
    min-height: 340px;
  }

  .steps-panel {
    padding-top: 8px;
    bottom: auto;
    gap: 12px;
  }

  .steps-panel-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 14px;
  }

  .steps-panel-title {
    font-size: 1.5rem;
  }

  .steps-panel-desc {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .steps-panel--download {
    flex-direction: column;
    gap: 24px;
  }

  .steps-download-mockup {
    display: none;
  }

  .steps-store-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .steps-store-btn {
    width: auto;
    flex: 0 0 auto;
  }
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0 80px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.faq-left {
  display: flex;
  flex-direction: column;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-right {
  position: sticky;
  top: 120px;
}

.faq-right-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 32px;
}

.faq-right .devices-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-right .device-item {
  padding: 20px;
}

.faq-item {
  background: rgba(22, 30, 48, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(46, 202, 182, 0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--loga-teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item[open] .faq-question {
  color: var(--loga-teal);
}

.faq-answer {
  padding: 0 24px 20px;
  animation: faqFadeIn 0.4s ease;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 12px;
}

.faq-answer p:last-of-type {
  margin-bottom: 0;
}

.faq-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: #25D366;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.faq-whatsapp-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.faq-whatsapp-btn svg {
  flex-shrink: 0;
}

.faq-download-btns {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.faq-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F58B2E;
  color: #fff;
  border-radius: 12px;
  padding: 10px 20px;
  text-decoration: none;
  transition: filter 0.2s ease;
}

.faq-store-btn:hover {
  filter: brightness(1.1);
}

.faq-store-btn svg {
  flex-shrink: 0;
}

.faq-store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.faq-store-btn span small {
  font-size: 0.65rem;
  opacity: 0.85;
}

.faq-store-btn span strong {
  font-size: 0.9rem;
}


/* ===== Footer ===== */
.footer {
  padding: 64px 24px 32px;
  background: #0a1628;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo img {
  height: 48px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-socials a:hover {
  color: var(--loga-orange);
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-style: normal;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.footer-phone-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-stores {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  max-width: 180px;
}

.footer-store-btn:hover {
  border-color: var(--loga-orange);
  background: rgba(245, 139, 46, 0.08);
}

.footer-app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-app-header .footer-col-title {
  margin-bottom: 0;
}

.footer-watch-logo {
  height: 14px;
  opacity: 0.7;
}

.footer-store-btn svg {
  flex-shrink: 0;
}

.footer-store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-store-btn span small {
  font-size: 0.6rem;
  opacity: 0.7;
}

.footer-store-btn span strong {
  font-size: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-legal {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-dev {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.footer-dev:hover {
  opacity: 1;
  filter: brightness(1.3);
}

.footer-dev img {
  height: 18px;
}

.footer-dev span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-dev span strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

/* ===== Cursor glow (optional enhancement) ===== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 202, 182, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ===== Idle Slideshow ===== */
.idle-slideshow {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  cursor: none;
}

.idle-slideshow.active {
  opacity: 1;
  visibility: visible;
}

.idle-slideshow-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.idle-slideshow-img--next {
  opacity: 0;
}

.idle-slideshow-img.fade-out {
  opacity: 0;
}

.idle-slideshow-img--next.fade-in {
  opacity: 1;
}

.idle-slideshow-info {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
  opacity: 0;
  animation: idle-info-fade 1.2s ease 1.5s forwards;
  max-width: 280px;
}

.idle-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 0.02em;
}

.idle-info-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.45;
}

.idle-info-logo {
  width: 80px;
  margin-top: 8px;
  opacity: 0.7;
}

@keyframes idle-info-fade {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .plans-cta {
    flex-direction: column;
  }
  .cta-buttons {
    flex-direction: column;
  }
}

/* ====================================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ==================================================================== */

/* --- Tablet & Large Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 80px 16px 0;
  }

  .hero-sub {
    font-size: 1.05rem;
    margin-bottom: 14px;
  }

  .play-cards {
    padding: 60px 0 60px;
  }

  .stack-card {
    min-height: 320px;
  }

  .stack-card-info {
    padding: 36px 32px 36px 40px;
  }

  .stack-card-title {
    font-size: 1.5rem;
  }

  .benefits {
    padding: 60px 0;
  }

  .benefits-track {
    gap: 16px;
  }

  .benefit-card {
    width: 280px;
    padding: 22px 18px 80px;
  }

  .plans {
    padding: 60px 0;
  }

  .channels {
    padding: 60px 0;
  }


  .device-item {
    padding: 18px 22px;
    min-width: 120px;
  }

  .faq {
    padding: 60px 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-right {
    position: static;
  }

  .faq-right .devices-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer {
    padding: 48px 16px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }

  .section-title {
    text-align: left;
    font-size: clamp(2rem, 5.5vw, 2.5rem);
  }

  .section-sub {
    text-align: left;
    margin-bottom: 32px;
    font-size: 1rem;
  }

  .channels-plan-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 28px;
  }

  .channels-plan-tab {
    padding: 10px 8px;
    font-size: 0.82rem;
    border-radius: 10px;
    text-align: center;
  }

  .channels-plan-tab-count {
    font-size: 0.72rem;
  }

  .programs-tabs-cards {
    max-height: none;
    overflow-y: visible;
  }

  .programs-showcase-left {
    gap: 12px;
  }

  .hero-orb-1 {
    width: 250px;
    height: 250px;
  }

  .hero-orb-2 {
    width: 200px;
    height: 200px;
  }

  .hero-orb-3 {
    width: 130px;
    height: 130px;
  }
}

/* --- Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  /* Top bar */
  .top-info-bar {
    height: 26px;
  }

  .top-info-bar a {
    font-size: 0.68rem;
  }

  .top-info-left {
    gap: 8px;
  }

  /* Header */
  .header {
    padding: 12px 16px;
  }

  .logo-img {
    height: 36px;
  }

  .logo-play {
    font-size: 1.05rem;
  }

  .nav a {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  /* Hero */
  .hero {
    padding: 64px 12px 0;
  }

  .hero-inner {
    gap: 8px;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
    margin-bottom: 14px;
  }

  .hero-tag {
    font-size: 0.92rem;
    margin-bottom: 10px;
  }

  .hero-sub {
    font-size: 0.92rem;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .hero-carousel-dots {
    right: 12px;
    gap: 8px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-dot.is-active {
    height: 22px;
  }

  .hero-tracks {
    height: 280px;
  }

  .track-dot img {
    padding: 4px;
  }

  .hero-orb-1 {
    width: 180px;
    height: 180px;
  }

  .hero-orb-2 {
    width: 140px;
    height: 140px;
  }

  .hero-orb-3 {
    width: 100px;
    height: 100px;
  }

  /* Buttons */
  .btn {
    padding: 12px 22px;
    font-size: 0.92rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
    margin-bottom: 10px;
  }

  .section-sub {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  /* Plans */
  .plans {
    padding: 48px 0;
  }

  .plan-card {
    padding: 30px 16px 18px;
    min-height: auto;
    gap: 12px;
  }

  .plan-card.featured {
    padding-top: 48px;
  }

  .plan-card-title {
    font-size: 1.45rem;
  }

  .plan-card-price strong {
    font-size: 1.65rem;
  }

  .plan-card-price span {
    font-size: 1.3rem;
  }

  .plan-card-btn {
    padding: 12px 10px;
    font-size: 1rem;
  }

  .plan-speed-select {
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .plans-note {
    font-size: 0.82rem;
  }

  .plan-card-logos img {
    width: 60px;
    height: 40px;
    padding: 6px;
  }

  /* Banners */
  .banners-carousel-section {
    padding: 28px 0 0;
  }

  .banners-carousel-top .banners-carousel-track img {
    height: 140px;
    width: 224px;
    border-radius: 10px;
  }

  .banners-carousel-bottom .banners-carousel-track img {
    height: 110px;
    width: 176px;
    border-radius: 10px;
  }

  .banners-carousel-track {
    gap: 8px;
  }

  .banners-carousel-row + .banners-carousel-row {
    margin-top: 10px;
  }

  /* Play cards (stacking) */
  .play-cards {
    padding: 48px 0 48px;
  }

  .stacking-cards {
    gap: 16px;
  }

  .stack-card {
    grid-template-columns: 1fr;
    min-height: auto;
    top: calc(60px + var(--card-index, 0) * 20px);
  }

  .stack-card-visual {
    height: 200px;
    order: -1;
  }

  .stack-card-info {
    padding: 28px 24px 32px;
    gap: 12px;
  }

  .stack-card-title {
    font-size: 1.3rem;
  }

  .stack-card-desc {
    font-size: 0.95rem;
  }

  /* Programs showcase */
  .programs-showcase-inner {
    height: auto;
    min-height: auto;
  }

  .programs-showcase-content {
    padding: 48px 20px;
    gap: 8px;
  }

  .programs-title {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }

  .programs-description {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .programs-tabs {
    gap: 6px;
  }

  .programs-tab {
    font-size: 0.82rem;
    padding: 8px 11px;
  }

  .programs-tabs-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    max-height: none;
    overflow-y: visible;
  }

  .programs-tabs-card {
    min-height: 56px;
    padding: 6px;
  }

  .programs-tabs-card img {
    max-width: 70px;
    max-height: 22px;
  }

  .programs-showcase-ui {
    width: calc(100% - 6px);
  }

  .programs-cards-track {
    height: 320px;
  }

  .program-card {
    width: 100px;
    height: 125px;
    border-radius: 14px;
  }

  .program-card[data-state='active'] {
    width: 200px;
    height: 250px;
    transform: translateY(calc(-50% - 2px)) translateX(calc(var(--slot, 0) * 110px)) scale(1);
  }

  .program-card[data-state='near'] {
    height: 125px;
    transform: translateY(-50%) translateX(calc(var(--slot, 0) * 110px)) scale(1);
  }

  .program-card[data-state='far'] {
    height: 125px;
    transform: translateY(-50%) translateX(calc(var(--slot, 0) * 110px)) scale(1);
  }

  .program-card[data-hidden='true'] {
    transform: translateY(-50%) translateX(calc(var(--slot, 0) * 110px)) scale(0.96);
  }

  .program-card-logo,
  .program-card-logo-fallback {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .program-card-title {
    font-size: 0.62rem;
  }

  .program-card-meta {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 4px;
  }

  .programs-nav-btn {
    width: 36px;
    height: 36px;
  }

  .programs-nav-btn svg {
    width: 16px;
    height: 16px;
  }

  .programs-carousel-controls {
    margin-left: 4px;
    margin-top: 12px;
  }

  /* Benefits */
  .benefits {
    padding: 48px 0;
  }

  .benefits-track {
    gap: 14px;
    animation-duration: 20s;
  }

  .benefit-card {
    width: 260px;
    padding: 20px 18px 70px;
  }

  .benefit-card-title {
    font-size: 1.1rem;
  }

  .benefit-card-text {
    font-size: 0.88rem;
  }

  .benefit-card-icon {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
  }

  /* Channels */
  .channels {
    padding: 48px 0;
  }

  .channels-plan-tab {
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .channels-plan-tab-count {
    font-size: 0.72rem;
  }

  .channels-category {
    padding: 12px;
    border-radius: 14px;
  }

  .channels-carousel-track {
    gap: 6px;
  }

  .channels-item {
    width: 70px;
    padding: 6px 4px;
    border-radius: 8px;
    gap: 4px;
  }

  .channels-item img {
    max-width: 44px;
    height: 28px;
  }

  .channels-item-fallback {
    width: 44px;
    height: 28px;
    font-size: 0.52rem;
  }

  .channels-item-name {
    font-size: 0.56rem;
  }

  .channels-category-badge {
    font-size: 0.78rem;
    padding: 0;
  }

  .channels-category-count {
    font-size: 0.75rem;
  }

  .channels-plan-content {
    gap: 20px;
  }

  /* Devices */

  .device-item {
    padding: 14px 16px;
    min-width: 0;
    flex: 1 1 calc(50% - 10px);
    font-size: 0.85rem;
    gap: 8px;
  }

  .device-icon {
    width: 36px;
    height: 36px;
  }

  /* CTA */
  .cta-final {
    padding: 48px 0;
  }

  .faq {
    padding: 48px 0;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.92rem;
  }

  .faq-answer {
    padding: 0 18px 16px;
  }

  .faq-answer p {
    font-size: 0.88rem;
  }

  .faq-right .devices-list {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer {
    padding: 40px 16px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-logo img {
    height: 64px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-store-btn {
    max-width: 100%;
  }

  .footer-stores {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  /* Modal */
  .plan-modal {
    padding: 6px;
  }

  .plan-modal-dialog {
    padding: 16px 10px;
    border-radius: 14px;
    width: calc(100% - 8px);
  }

  .plan-modal-title {
    font-size: 1.3rem;
  }

  .plan-modal-price {
    font-size: 1.7rem;
  }

  .plan-modal-left {
    padding: 14px;
  }

  .plan-modal-cat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plan-modal-right h4 {
    font-size: 1.05rem;
  }

  .plan-modal-right p {
    font-size: 0.88rem;
  }

  .plan-modal-benefits li {
    font-size: 0.88rem;
  }

  .plan-modal-speed {
    display: none;
  }

  .plan-modal-subtitle {
    font-size: 0.9rem;
  }

  .plan-modal-channels-title {
    font-size: 0.9rem;
  }

  /* Idle slideshow */
  .idle-slideshow-info {
    bottom: 16px;
    right: 16px;
    left: 16px;
    max-width: none;
    padding: 16px 18px;
  }

  .idle-info-title {
    font-size: 0.9rem;
  }

  .idle-info-desc {
    font-size: 0.78rem;
  }

  .idle-info-logo {
    width: 64px;
  }

  /* Cursor glow - disable on touch */
  .cursor-glow {
    display: none;
  }
}

/* --- Very Small Screens (max-width: 360px) --- */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-tracks {
    height: 250px;
  }

  .hero-inner {
    gap: 16px;
  }

  .hero-mockup-img {
    max-height: 200px;
  }

  .program-card {
    width: 80px;
    height: 100px;
  }

  .program-card[data-state='active'] {
    width: 170px;
    height: 212px;
    transform: translateY(calc(-50% - 2px)) translateX(calc(var(--slot, 0) * 90px)) scale(1);
  }

  .program-card[data-state='near'] {
    height: 100px;
    transform: translateY(-50%) translateX(calc(var(--slot, 0) * 90px)) scale(1);
  }

  .program-card[data-state='far'] {
    height: 100px;
    transform: translateY(-50%) translateX(calc(var(--slot, 0) * 90px)) scale(1);
  }

  .program-card[data-hidden='true'] {
    transform: translateY(-50%) translateX(calc(var(--slot, 0) * 90px)) scale(0.96);
  }

  .programs-cards-track {
    height: 260px;
  }

  .programs-showcase-inner {
    height: auto;
    min-height: auto;
  }

  .programs-tabs-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .channels-item {
    width: 62px;
  }

  .device-item {
    flex: 1 1 100%;
  }

  .plan-card-title {
    font-size: 1.3rem;
  }

  .plan-card-price strong {
    font-size: 1.5rem;
  }

  .plan-card-price span {
    font-size: 1.2rem;
  }

  .channels-plan-tab {
    padding: 7px 10px;
    font-size: 0.75rem;
  }

  .banners-carousel-top .banners-carousel-track img {
    height: 110px;
    width: 176px;
  }

  .banners-carousel-bottom .banners-carousel-track img {
    height: 90px;
    width: 144px;
  }

  .section-title {
    font-size: clamp(1.55rem, 5.5vw, 1.9rem);
  }

  .nav a {
    padding: 10px 16px;
    font-size: 0.88rem;
  }
}

/* --- Landscape mobile --- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 60px 16px 0;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-tracks {
    height: 160px;
  }

  .hero-mockup {
    min-height: 140px;
  }

  .hero-mockup-img {
    max-height: 200px;
  }

  .programs-showcase-inner {
    height: auto;
    min-height: 500px;
  }
}

/* --- Touch device improvements --- */
@media (hover: none) and (pointer: coarse) {
  .cursor-glow {
    display: none;
  }

  .stack-card:hover,
  .benefit-card:hover,
  .device-item:hover,
  .channels-item:hover {
    transform: none;
  }

  .stack-card:hover .stack-card-visual img {
    transform: none;
  }

  .benefit-card:active {
    transform: scale(0.98);
  }

  .plan-card:hover {
    transform: none;
  }

  .plan-card:active {
    transform: scale(0.98);
    border-color: rgba(245, 139, 46, 0.45);
  }

  .programs-nav-btn:hover {
    transform: none;
  }

  .programs-nav-btn:active {
    transform: scale(0.92);
    background: rgba(255, 255, 255, 0.5);
  }

  .btn:hover {
    transform: none;
  }

  .btn:active {
    transform: scale(0.97);
  }

  .channels-plan-tab:hover {
    transform: none;
  }

  .channels-plan-tab:active {
    transform: scale(0.97);
  }
}
