/* ============================================
   MELOTV – PREMIUM STYLESHEET
   ============================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #050505;
  color: #fff;
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* TOKENS */
:root {
  --black: #050505;
  --black2: #0d0d0d;
  --yellow: #FFC400;
  --yellow-glow: #FFD84D;
  --white: #ffffff;
  --gray: #BDBDBD;
  --gray2: #2a2a2a;
  --gray3: #1a1a1a;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --yellow-alpha: rgba(255,196,0,0.15);
  --yellow-alpha2: rgba(255,196,0,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-glow: 0 0 40px rgba(255,196,0,0.3);
  --shadow-glow-sm: 0 0 20px rgba(255,196,0,0.2);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* CONTAINER */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   ACCENT & HELPERS
   ============================================ */
.accent { color: var(--yellow); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  height: 72px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */

.logo-img{
  height:70px;
  width:auto;
  max-width:none;
  max-height:none;
  display:block;
  margin-left:60px;
}

/* Nav */
.nav { display: flex; gap: 8px; margin-right: auto; }
.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* Header CTA */
.btn-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-header:hover {
  background: var(--yellow-glow);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-sm);
}
.btn-icon { font-size: 0.7rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(20px);
  padding: 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.mobile-menu.open { max-height: 500px; padding: 20px 24px 32px; }
.mobile-link {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-cta {
  margin-top: 20px;
  background: var(--yellow);
  color: #000;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.9rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 80px 80px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  overflow: hidden;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 30%, rgba(255,196,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 70% at 10% 70%, rgba(255,196,0,0.04) 0%, transparent 60%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; background: rgba(255,196,0,0.07); top: -200px; right: 0; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(255,196,0,0.05); bottom: 0; right: 200px; }
.hero-orb-3 { width: 300px; height: 300px; background: rgba(255,150,0,0.04); top: 50%; left: 30%; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  transform: translateY(-35px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,196,0,0.1);
  border: 1px solid rgba(255,196,0,0.25);
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.headline-sub-small{
  font-size: 0.58em;
  font-weight: 600;
}

.hero-sub-small{
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4.0rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.headline-sub {
  display: block;
  color: var(--gray);
  font-size: 0.55em;
  font-weight: 700;
  margin-top: 4px;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-sub strong { color: #fff; }

.hero-actions { display: flex; flex-direction: column; gap: 20px; }
.hero-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-meta span { font-size: 0.82rem; color: var(--gray); }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: #000;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 30px rgba(255,196,0,0.35), 0 4px 20px rgba(0,0,0,0.3);
  align-self: flex-start;
  white-space: nowrap;
}
.btn-primary .btn-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.btn-primary .btn-text { position: relative; }
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 50px rgba(255,196,0,0.5), 0 8px 30px rgba(0,0,0,0.3);
}

/* ============================================
   TV MOCKUP
   ============================================ */
.hero-tv-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transform: translateY(-20px);
}

.hero-tv-glow {
  position: absolute;
  width: 80%;
  height: 60%;
  background: radial-gradient(
    ellipse,
    rgba(255,196,0,0.2) 0%,
    transparent 70%
  );
  top: 10%;
  left: 10%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-tv {
  width: 100%;
  max-width: 820px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.8));
}

.tv-screen {
  background: #0a0a0a;
  border-radius: 16px 16px 4px 4px;
  border: 3px solid #1f1f1f;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/13;
}

.tv-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 6px;
}

.tv-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tv-dots {
  display: flex;
  gap: 5px;
}

.tv-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}

.tv-dots span:nth-child(1) {
  background: #ff5f57;
}

.tv-dots span:nth-child(2) {
  background: #febc2e;
}

.tv-dots span:nth-child(3) {
  background: #28c840;
}

.tv-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-left: auto;
}

.tv-poster-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
}

.tv-poster {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.tv-poster:hover {
  transform: scale(1.04);
}

.poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 6px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7) 0%,
    transparent 60%
  );
}

.poster-overlay span {
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.05em;
}

/* TV poster colors */
.tv-poster{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.tp1{
  background-image: url('img/tvposter/poster1.jpg');
}

.tp2{
  background-image: url('img/tvposter/poster2.jpg');
}

.tp3{
  background-image: url('img/tvposter/poster3.jpg');
}

.tp4{
  background-image: url('img/tvposter/poster4.jpg');
}

.tp5{
  background-image: url('img/tvposter/poster5.jpg');
}

.tp6{
  background-image: url('img/tvposter/poster6.jpg');
}.tv-poster{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.tp1{
  background-image: url('img/tvposter/poster1.jpg');
}

.tp2{
  background-image: url('img/tvposter/poster2.jpg');
}

.tp3{
  background-image: url('img/tvposter/poster3.jpg');
}

.tp4{
  background-image: url('img/tvposter/poster4.jpg');
}

.tp5{
  background-image: url('img/tvposter/poster5.jpg');
}

.tp6{
  background-image: url('img/tvposter/poster6.jpg');
}


/* TV Stand */
.tv-stand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tv-neck {
  width: 60px;
  height: 24px;
  background: linear-gradient(
    to bottom,
    #1a1a1a,
    #222
  );
}

.tv-base {
  width: 140px;
  height: 10px;
  background: linear-gradient(
    to bottom,
    #222,
    #1a1a1a
  );
  border-radius: 0 0 8px 8px;
}
/* Floating chips */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,13,13,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.float-chip strong { font-size: 0.8rem; font-weight: 700; display: block; }
.float-chip small { font-size: 0.65rem; color: var(--gray); }
.chip-icon { font-size: 1.4rem; }
.hero-tv-wrapper{
  position: relative;
}

.chips-top{
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 100;
}

.chips-top .float-chip{
  position: static;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  padding: 28px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 40px;
  flex: 1;
  min-width: 200px;
  justify-content: center;
}
.trust-item strong { display: block; font-size: 0.9rem; font-weight: 700; }
.trust-item small { font-size: 0.75rem; color: var(--gray); }
.trust-icon { font-size: 1.5rem; }
.trust-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* ============================================
   SECTION COMMON
   ============================================ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--yellow-alpha2);
  border: 1px solid rgba(255,196,0,0.2);
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-desc { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; }

/* ============================================
  COMPATIBILITY
   ============================================ */
.section-compat {
  padding: 100px 0;
}

.compat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Centraliza os 2 últimos cards */
.compat-card:nth-child(4) {
  grid-column: 1 / 2;
}

.compat-card:nth-child(5) {
  grid-column: 2 / 3;
}

.compat-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  overflow: hidden;
  cursor: default;
  transition: all var(--transition);
}

.compat-card:hover {
  border-color: rgba(255,196,0,0.3);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}

.compat-card:hover .compat-glow {
  opacity: 1;
}

/* ============================================
   Compatibilidade tamanho icones
   ============================================ */

.compat-icon-img{
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
  margin: 0 auto 15px;
}
/* ============================================
   
   ============================================ */
.compat-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compat-icon-wrap svg {
  width: 100%;
  height: 100%;
  transition: transform var(--transition);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.compat-card:hover .compat-icon-wrap svg {
  transform: scale(1.1) translateY(-3px);
}

.compat-label {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.compat-tag {
  font-size: 0.72rem;
  color: var(--yellow);
  background: var(--yellow-alpha2);
  border: 1px solid rgba(255,196,0,0.2);
  padding: 2px 10px;
  border-radius: 100px;
  display: inline-block;
}

.compat-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 80px;
  background: rgba(255,196,0,0.15);
  filter: blur(30px);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
/* ============================================
   DIFERENCIAIS
   ============================================ */
.section-diff { padding: 100px 0; background: var(--black2); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  overflow: hidden;
  transition: all var(--transition);
}
.diff-card:hover { border-color: rgba(255,196,0,0.2); transform: translateY(-4px); }
.diff-card--accent {
  background: rgba(255,196,0,0.04);
  border-color: rgba(255,196,0,0.15);
}
.diff-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  position: absolute;
  top: 16px; right: 24px;
  line-height: 1;
  pointer-events: none;
}
.diff-icon-wrap { margin-bottom: 20px; }
.diff-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.diff-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }
.diff-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.diff-fill {
  height: 100%;
  background: linear-gradient(to right, var(--yellow), var(--yellow-glow));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.4,0,0.2,1) 0.3s;
}
.diff-fill.animated { transform: scaleX(1); }
.diff-stat { font-size: 0.75rem; color: var(--yellow); font-weight: 600; }

/* ============================================
   CATALOG
   ============================================ */
.card-art img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-catalog { padding: 100px 0; }
.catalog-row { margin-bottom: 56px; }
.catalog-row-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.catalog-row-title { font-size: 1.3rem; font-weight: 700; }
.live-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ff4444;
  background: rgba(255,68,68,0.1);
  border: 1px solid rgba(255,68,68,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  animation: pulse 2s infinite;
}
.count-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--yellow);
  background: var(--yellow-alpha2);
  border: 1px solid rgba(255,196,0,0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

.catalog-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,196,0,0.3) transparent;
}
.catalog-scroll::-webkit-scrollbar { height: 4px; }
.catalog-scroll::-webkit-scrollbar-track { background: transparent; }
.catalog-scroll::-webkit-scrollbar-thumb { background: rgba(255,196,0,0.3); border-radius: 2px; }

.catalog-card {
  flex-shrink: 0;
  width: 160px;
  cursor: pointer;
  transition: transform var(--transition);
}
.catalog-card:hover { transform: scale(1.05); }
.card-art {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}
.art-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  gap: 8px;
}
.card-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.card-badge {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.card-badge.live { background: #ff4444; color: #fff; }
.card-badge.hd { background: var(--yellow); color: #000; }
.card-badge.new { background: #22c55e; color: #fff; }

/* Sport card arts */
.ca-sport1 { background: linear-gradient(160deg, #0f2027, #203a43, #2c5364); }
.ca-sport2 { background: linear-gradient(160deg, #1a3c1a, #2d5a2d, #4a8c4a); }
.ca-sport3 { background: linear-gradient(160deg, #3d0000, #780000, #c20000); }
.ca-sport4 { background: linear-gradient(160deg, #030b17, #0a1929, #1565c0); }
.ca-sport5 { background: linear-gradient(160deg, #1a1005, #3d2b05, #8b6914); }
.ca-sport6 { background: linear-gradient(160deg, #0a0a0a, #1a1a2e, #16213e); }

.sport-icon { font-size: 2.2rem; }
.sport-title { font-size: 0.75rem; font-weight: 800; line-height: 1.2; color: #fff; }
.sport-sub { font-size: 0.55rem; color: var(--yellow); font-weight: 600; }

/* Movie card arts */
.ca-movie1 { background: linear-gradient(160deg, #1a0010, #5c0025, #9b0038); }
.ca-movie2 { background: linear-gradient(160deg, #000a1a, #00204d, #003d99); }
.ca-movie3 { background: linear-gradient(160deg, #030520, #0a0f3d, #1a2080); }
.ca-movie4 { background: linear-gradient(160deg, #1a0d00, #4d2700, #8a4500); }
.ca-movie5 { background: linear-gradient(160deg, #0a0010, #1a0035, #3d0070); }
.ca-movie6 { background: linear-gradient(160deg, #0a1505, #1a3a0a, #2d6314); }

/* Series */
.ca-series1 { background: linear-gradient(160deg, #100010, #35003d, #6a0080); }
.ca-series2 { background: linear-gradient(160deg, #1a0000, #4d0000, #900000); }
.ca-series3 { background: linear-gradient(160deg, #000a0a, #002020, #004040); }
.ca-series4 { background: linear-gradient(160deg, #0d0d00, #2a2a00, #555500); }
.ca-series5 { background: linear-gradient(160deg, #0a0a1a, #1a1a40, #2a2a80); }
.ca-series6 { background: linear-gradient(160deg, #001a0d, #004025, #006640); }

.movie-art { justify-content: flex-end; }
.movie-genre{
  position:absolute;
  top:10px;
  left:10px;
  z-index:10;

  color:#FFC400;
  background:rgba(0,0,0,.75);

  padding:5px 10px;
  border-radius:5px;

  font-size:9px;
  font-weight:700;
  text-transform:uppercase;
}
.movie-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  text-align: left;
  align-self: flex-start;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.movie-rating { font-size: 0.6rem; color: var(--yellow); align-self: flex-start; }

/* ============================================
   CAROUSEL (Filmes, Séries & Canais – scroll suave)
   ============================================ */
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.carousel-track-wrap {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 32px, black calc(100% - 32px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 32px, black calc(100% - 32px), transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 14px;
  width: max-content;
  /* NO transition here — we handle it via JS requestAnimationFrame for smooth scroll */
  will-change: transform;
  cursor: grab;
  padding: 8px 32px 14px;
  user-select: none;
}
.carousel-track.snap { transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.carousel-track.is-dragging { cursor: grabbing; transition: none !important; }
.carousel-track .catalog-card { flex-shrink: 0; }

.carousel-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
  transform: scale(1.1);
}

/* Channel carousel card */
.channel-carousel-card {
  flex-shrink: 0;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.chc-logo {
  width: 150px;
  height: 100px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.chc-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.channel-carousel-card:hover .chc-logo {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(255,196,0,0.4);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 20px rgba(255,196,0,0.1);
}
.chc-name {
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
}
.chc-num {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}
.chc-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

/* ============================================
   CANAIS AO VIVO
   ============================================ */
.channel-category { margin-bottom: 36px; }
.ch-cat-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
  padding-left: 2px;
}
.channels-live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}
.channel-live-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.channel-live-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,196,0,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.channel-live-card:hover {
  border-color: rgba(255,196,0,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.channel-live-card:hover::before { opacity: 1; }

.clc-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.clc-name {
  font-size: 0.45rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
  opacity: 0.9;
}
.clc-num {
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
}
.clc-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.clc-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.clc-live-dot {
  font-size: 0.6rem;
  font-weight: 700;
  color: #ff4444;
  letter-spacing: 0.04em;
}

.chc-logo{
  overflow:hidden;
}

.chc-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
/* Logo color palettes per channel */
.clc-premiere  { background: linear-gradient(135deg, #0a0050, #1a00b0); }
.clc-cazé      { background: linear-gradient(135deg, #7b00e0, #b030ff); }
.clc-sportv    { background: linear-gradient(135deg, #003a80, #005ce6); }
.clc-espn      { background: linear-gradient(135deg, #c00000, #ff0000); }
.clc-band      { background: linear-gradient(135deg, #003300, #006600); }
.clc-dazn      { background: linear-gradient(135deg, #000000, #222222); border: 1px solid rgba(255,255,255,0.1); }
.clc-hbo       { background: linear-gradient(135deg, #000000, #1a1a1a); border: 1px solid rgba(255,255,255,0.15); }
.clc-max       { background: linear-gradient(135deg, #0030b0, #0050e0); }
.clc-telecine  { background: linear-gradient(135deg, #8b0000, #cc0000); }
.clc-cinemax   { background: linear-gradient(135deg, #004040, #007070); }
.clc-foxm      { background: linear-gradient(135deg, #001a50, #003080); }
.clc-amc       { background: linear-gradient(135deg, #2a1500, #5a3000); }
.clc-cnn       { background: linear-gradient(135deg, #aa0000, #dd0000); }
.clc-globo     { background: linear-gradient(135deg, #004400, #006600); }
.clc-record    { background: linear-gradient(135deg, #550000, #880000); }
.clc-jovem     { background: linear-gradient(135deg, #003366, #0055aa); }
.clc-globo2    { background: linear-gradient(135deg, #003300, #005500); }
.clc-sbt       { background: linear-gradient(135deg, #002244, #003388); }
.clc-record2   { background: linear-gradient(135deg, #440000, #770000); }
.clc-multishow { background: linear-gradient(135deg, #440044, #880088); }
.clc-discovery { background: linear-gradient(135deg, #002244, #0033aa); }
.clc-nat       { background: linear-gradient(135deg, #443300, #886600); }

/* ============================================
   COMPARATIVO
   ============================================ */
.section-compare { padding: 100px 0; background: var(--black2); }
.compare-wrapper {
  display: flex;
  gap: 0;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.compare-side {
  flex: 1;
  padding: 40px 36px;
  border-radius: var(--radius-lg);
}
.compare-other {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-right: none;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.compare-melo {
  background: rgba(255,196,0,0.04);
  border: 2px solid rgba(255,196,0,0.3);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-vs {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.compare-header-block { margin-bottom: 24px; }
.compare-header-block h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.compare-header-block p { font-size: 0.82rem; color: var(--gray); }
.most-sold-badge {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.compare-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.compare-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.ci-check { border-bottom-color: rgba(255,196,0,0.1); }
.ci-brand { font-weight: 600; }
.ci-price { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.compare-total {
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  text-align: center;
}
.compare-total span { display: block; font-size: 0.8rem; color: var(--gray); margin-bottom: 4px; }
.compare-total strong { font-size: 1.6rem; font-weight: 900; }
.compare-total-melo { background: rgba(255,196,0,0.08); border: 1px solid rgba(255,196,0,0.2); }
.compare-total-melo strong { color: var(--yellow); }
.compare-total-melo strong small { font-size: 0.9rem; font-weight: 500; }
.compare-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 2; margin-top: 16px; }

/* ============================================
   PLANS
   ============================================ */
.section-plans { padding: 100px 0; }
.plans-toggle {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
}
.toggle-btn {
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.toggle-btn.active {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 0 20px rgba(255,196,0,0.3);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  overflow: hidden;
  transition: all var(--transition);
}
.plan-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.15); }
.plan-card--featured {
  background: rgba(255,196,0,0.04);
  border: 2px solid rgba(255,196,0,0.35);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255,196,0,0.1), 0 0 0 1px rgba(255,196,0,0.1);
}
.plan-card--featured:hover { transform: translateY(-14px); }
.plan-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
  z-index: 1;
}
.plan-header { margin-bottom: 28px; text-align: center; padding-top: 12px; }
.plan-screens { display: flex; justify-content: center; gap: 6px; margin-bottom: 12px; }
.screen-dot { width: 10px; height: 10px; background: var(--yellow); border-radius: 50%; }
.plan-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 900; margin-bottom: 6px; }
.plan-desc { font-size: 0.82rem; color: var(--gray); }
.plan-price { text-align: center; margin-bottom: 28px; padding: 20px; background: rgba(255,255,255,0.03); border-radius: 12px; }
.price-from { font-size: 0.72rem; color: var(--gray); display: block; margin-bottom: 4px; }
.price-value { display: flex; align-items: baseline; gap: 4px; justify-content: center; }
.price-cur { font-size: 1rem; font-weight: 700; color: var(--gray); }
.price-num { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 900; color: #fff; line-height: 1; }
.plan-card--featured .price-num { color: var(--yellow); }
.price-per { font-size: 0.8rem; color: var(--gray); display: block; margin-top: 2px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { font-size: 0.875rem; color: rgba(255,255,255,0.75); padding-left: 4px; }
.btn-plan {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(255,255,255,0.07);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-plan:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.btn-plan--featured {
  background: var(--yellow);
  color: #000;
  border: none;
  box-shadow: 0 0 30px rgba(255,196,0,0.3);
}
.btn-plan--featured:hover { background: var(--yellow-glow); box-shadow: 0 0 50px rgba(255,196,0,0.5); }
.plan-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 100px;
  background: rgba(255,255,255,0.04);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
}
.plan-glow--featured { background: rgba(255,196,0,0.12); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.section-how { padding: 100px 0; background: var(--black2); }
.how-steps {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 52px;
}
.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
}
.step-icon-wrap {
  position: relative;
  width: 80px; height: 80px;
  background: rgba(255,196,0,0.08);
  border: 2px solid rgba(255,196,0,0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.step-num {
  position: absolute;
  top: -10px; right: -10px;
  width: 24px; height: 24px;
  background: var(--yellow);
  color: #000;
  font-size: 0.7rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.step-arrow {
  position: absolute;
  right: -24px;
  top: 28px;
  font-size: 1.5rem;
  color: var(--yellow);
  opacity: 0.5;
}
.how-cta { text-align: center; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.section-testimonials { padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.testi-card:hover { border-color: rgba(255,196,0,0.2); transform: translateY(-3px); }
.testi-stars { color: var(--yellow); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.ta1 { background: linear-gradient(135deg, #1565c0, #0d47a1); }
.ta2 { background: linear-gradient(135deg, #c62828, #b71c1c); }
.ta3 { background: linear-gradient(135deg, #2e7d32, #1b5e20); }
.ta4 { background: linear-gradient(135deg, #6a1b9a, #4a148c); }
.ta5 { background: linear-gradient(135deg, #e65100, #bf360c); }
.ta6 { background: linear-gradient(135deg, #00695c, #004d40); }
.testi-author strong { display: block; font-size: 0.875rem; }
.testi-author small { font-size: 0.75rem; color: var(--gray); }

/* ============================================
   FAQ
   ============================================ */
.section-faq { padding: 100px 0; background: var(--black2); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(255,196,0,0.25); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--yellow); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--yellow);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 24px 22px; font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ============================================
   CTA FINAL
   ============================================ */
.section-cta-final {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-final-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-orb-1 { width: 500px; height: 500px; background: rgba(255,196,0,0.1); top: -200px; left: 50%; transform: translateX(-50%); }
.cta-orb-2 { width: 300px; height: 300px; background: rgba(255,150,0,0.06); bottom: -100px; right: 10%; }
.cta-final-content { position: relative; }
.cta-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 20px;
}
.cta-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.btn-cta-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: #000;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 20px 52px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 60px rgba(255,196,0,0.4), 0 8px 40px rgba(0,0,0,0.4);
  margin-bottom: 32px;
}
.btn-cta-final:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 100px rgba(255,196,0,0.6), 0 12px 50px rgba(0,0,0,0.4);
}
.cta-meta { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.cta-meta span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  background: var(--black2);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 16px 0 20px; max-width: 300px; }
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity var(--transition);
}
.footer-wa:hover { opacity: 0.8; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-disc { font-size: 0.72rem !important; }

/* ============================================
   WA FLOAT
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.wa-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(37,211,102,0.55);
  opacity: 0;
  animation: waPulse 4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.25); opacity: 0;   }
  100% { transform: scale(1.25); opacity: 0;   }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger for grids */
.compat-grid .reveal:nth-child(1) { transition-delay: 0s; }
.compat-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.compat-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.compat-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.compat-grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.compat-grid .reveal:nth-child(6) { transition-delay: 0.30s; }
.compat-grid .reveal:nth-child(7) { transition-delay: 0.36s; }
.compat-grid .reveal:nth-child(8) { transition-delay: 0.42s; }

.plans-grid .plan-card:nth-child(1) { transition-delay: 0s; }
.plans-grid .plan-card:nth-child(2) { transition-delay: 0.1s; }
.plans-grid .plan-card:nth-child(3) { transition-delay: 0.2s; }

.testimonials-grid .testi-card:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .testi-card:nth-child(2) { transition-delay: 0.08s; }
.testimonials-grid .testi-card:nth-child(3) { transition-delay: 0.16s; }
.testimonials-grid .testi-card:nth-child(4) { transition-delay: 0.24s; }
.testimonials-grid .testi-card:nth-child(5) { transition-delay: 0.32s; }
.testimonials-grid .testi-card:nth-child(6) { transition-delay: 0.40s; }

/* ============================================
   MAGNETIC BUTTON EFFECT
   ============================================ */
.magnetic { transform-style: preserve-3d; }

/* ============================================
   RESPONSIVE
   ============================================ */

/* ── Tablet grande (≤1024px) ── */
@media (max-width: 1024px) {
  /* Header */
  .header-inner { padding: 0 24px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .btn-header { display: none; }
  .mobile-menu { display: flex; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
    text-align: center;
    gap: 40px;
  }
  .hero-content { order: 1; transform: none; }
  .hero-tv-wrapper { order: 0; max-width: 600px; width: 100%; margin: 0 auto; transform: none; }
  .hero-tv { max-width: 100%; }
  .hero-actions { align-items: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-badge { margin: 0 auto 24px; }
  .btn-primary { align-self: center; }

  /* Trust */
  .trust-items { flex-direction: column; gap: 0; }
  .trust-item { width: 100%; padding: 14px 24px; justify-content: flex-start; min-width: unset; }
  .trust-divider { width: 100%; height: 1px; flex-shrink: 0; }

  /* Chips */
  .chips-top { gap: 8px; top: -36px; }
  .float-chip { padding: 8px 12px; }
  .float-chip strong { font-size: 0.72rem; }
  .float-chip small { font-size: 0.6rem; }

  /* Compat */
  .compat-grid { grid-template-columns: repeat(3, 1fr); }
  .compat-card:nth-child(4), .compat-card:nth-child(5) { grid-column: auto; }

  /* Diferenciais */
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid .diff-card:last-child { grid-column: 1 / -1; }

  /* Plans */
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-6px); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

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

  /* Compare */
  .compare-wrapper { flex-direction: column; }
  .compare-other {
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .compare-melo { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  .compare-vs {
    width: auto;
    height: 40px;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.06);
    border-right: 1px solid rgba(255,255,255,0.06);
  }

  /* How */
  .how-steps { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
}

/* ── Tablet pequeno / Mobile grande (≤768px) ── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Hero */
  .hero { padding: 88px 20px 48px; gap: 32px; min-height: auto; }
  .hero-headline { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-sub-small { font-size: 0.9rem; }
  .hero-tv-wrapper { max-width: 100%; }
  .hero-tv { max-width: 100%; }

  /* Chips top – esconde o 3º chip */
  .chips-top .float-chip:last-child { display: none; }

  /* Trust */
  .trust-items { flex-direction: column; gap: 0; }
  .trust-item { width: 100%; padding: 14px 24px; justify-content: flex-start; min-width: unset; }
  .trust-divider { width: 100%; height: 1px; flex-shrink: 0; }

  /* Sections */
  .section-compat, .section-diff, .section-catalog,
  .section-compare, .section-plans, .section-how,
  .section-faq, .section-testimonials { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }

  /* Compat */
  .compat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .compat-card:nth-child(5) { grid-column: 1 / -1; max-width: 260px; margin: 0 auto; }
  .compat-icon-img { width: 70px; height: 70px; }

  /* Diferenciais */
  .diff-grid { grid-template-columns: 1fr; }
  .diff-grid .diff-card:last-child { grid-column: auto; }

  /* Catalog */
  .catalog-row-header { flex-wrap: wrap; gap: 12px; }
  .catalog-card { width: 130px; }
  .channel-carousel-card { width: 120px; }

  /* Compare */
  .compare-other, .compare-melo { padding: 28px 20px; }
  .compare-total strong { font-size: 1.3rem; }

  /* Plans */
  .plan-card { padding: 28px 20px; }

  /* How */
  .how-steps { gap: 28px; }
  .how-step { max-width: 340px; width: 100%; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  /* FAQ */
  .faq-q { font-size: 0.9rem; padding: 18px 20px; }
  .faq-a p { padding: 0 20px 18px; }

  /* CTA Final */
  .section-cta-final { padding: 80px 20px; }
  .cta-sub { font-size: 0.95rem; }
  .btn-cta-final { padding: 18px 36px; font-size: 0.9rem; }
  .cta-meta { gap: 16px; }

  /* Footer */
  .footer { padding: 60px 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

/* ── Mobile (≤480px) ── */
@media (max-width: 480px) {
  /* Header */
  .header-inner { height: 62px; padding: 0 16px; }
  .logo-img { height: 40px; }
  .mobile-link { padding: 12px 0; font-size: 0.95rem; }

  /* Hero */
  .hero { padding: 78px 16px 40px; gap: 28px; }
  .hero-badge { font-size: 0.78rem; padding: 6px 14px; }
  .hero-headline { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-sub-small { font-size: 0.85rem; }
  .hero-tv-wrapper { max-width: 100%; }
  .chips-top { display: none; }
  .btn-primary {
    padding: 14px 28px;
    font-size: 0.82rem;
    width: 100%;
    justify-content: center;
  }

  /* Trust */
  .trust-items { flex-direction: column; gap: 0; }
  .trust-item { width: 100%; padding: 14px 20px; justify-content: flex-start; min-width: unset; }
  .trust-divider { width: 100%; height: 1px; flex-shrink: 0; }

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

  /* Compat */
  .compat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .compat-card:nth-child(5) { grid-column: 1 / -1; max-width: none; }
  .compat-card { padding: 22px 14px; }
  .compat-icon-img { width: 56px; height: 56px; }
  .compat-label { font-size: 0.82rem; }

  /* Diferenciais */
  .diff-card { padding: 28px 20px; }
  .diff-num { font-size: 3.5rem; }

  /* Catalog */
  .catalog-row-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .catalog-card { width: 115px; }
  .channel-carousel-card { width: 105px; }
  .chc-title { font-size: 0.72rem; }

  /* Compare */
  .compare-wrapper { max-width: 100%; }
  .compare-other, .compare-melo { padding: 24px 16px; }
  .compare-header-block h3 { font-size: 1.1rem; }
  .compare-item { font-size: 0.82rem; }
  .compare-total strong { font-size: 1.2rem; }
  .section-compare { padding: 64px 0; }

  /* Plans */
  .plans-grid { max-width: 100%; }
  .plan-card { padding: 24px 18px; }
  .price-num { font-size: 2.5rem; }
  .btn-plan { padding: 12px; font-size: 0.82rem; }
  .btn-plan--featured { padding: 14px; }

  /* How */
  .how-step { max-width: 100%; }
  .step-icon-wrap { width: 68px; height: 68px; font-size: 1.7rem; }
  .step-content h3 { font-size: 1rem; }
  .step-content p { font-size: 0.82rem; }
  .how-cta .btn-primary { width: 100%; }

  /* FAQ */
  .faq-list { gap: 8px; }
  .faq-q { font-size: 0.85rem; padding: 16px 16px; gap: 12px; }
  .faq-item.open .faq-a { max-height: 280px; }
  .faq-a p { padding: 0 16px 16px; font-size: 0.85rem; }

  /* CTA Final */
  .section-cta-final { padding: 64px 16px; }
  .cta-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .cta-sub { font-size: 0.88rem; }
  .btn-cta-final { padding: 16px 28px; font-size: 0.85rem; width: 100%; }
  .cta-meta { flex-direction: column; align-items: center; gap: 8px; }
  .cta-meta span { font-size: 0.8rem; }

  /* Footer */
  .footer { padding: 48px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; padding-top: 20px; }

  /* WhatsApp float */
  .wa-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 24px; height: 24px; }

  /* Carousel */
  .carousel-track-wrap {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 16px, black calc(100% - 16px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 16px, black calc(100% - 16px), transparent 100%);
  }
  .carousel-track { padding: 8px 16px 14px; }

  /* Testimonials */
  .testi-card { padding: 22px 18px; }

  /* Sections padding */
  .section-compat, .section-diff, .section-catalog,
  .section-compare, .section-plans, .section-how,
  .section-faq, .section-testimonials { padding: 60px 0; }
}

/* ── Mobile muito pequeno (≤360px) ── */
@media (max-width: 360px) {
  .hero { padding: 72px 14px 36px; }
  .hero-headline { font-size: 1.7rem; }
  .container { padding: 0 14px; }
  .compat-card { padding: 18px 10px; }
  .compat-icon-img { width: 48px; height: 48px; }
  .plan-card { padding: 20px 14px; }
  .price-num { font-size: 2.2rem; }
}

/* Ultra wide */
@media (min-width: 1600px) {
  .hero { padding: 120px 120px 100px; }
  .container { max-width: 1400px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
