/* ═══════════════════════════════════════════════════════════
   FONTES AUTO-HOSPEDADAS — Sem dependência Google Fonts
   ═══════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('fonts/montserrat-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* ═══════════════════════════════════════════════════════════════════════════
   XTREAM MUSIC — Landing Page estilo Spotify
   Dark mode · Neon Pink · Premium Music App
   ═══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pink:        #ff7a00;
  --pink-light:  #ff9433;
  --purple:      #00a2ff;
  --blue:        #00a2ff;
  --green:      #1db954;
  --yellow:     #eab308;
  --bg:         #000000;
  --bg-card:    #121212;
  --bg-elevated:#1a1a1a;
  --bg-hover:   #282828;
  --text:       #ffffff;
  --text-2:     #b3b3b3;
  --text-3:     #727272;
  --border:     rgba(255,255,255,.08);
  --radius:     12px;
  --radius-lg:  20px;
  --font:       'Montserrat', system-ui, sans-serif;
  --header-h:   72px;
  --promo-h:    36px;
  --glow-pink:  0 0 30px rgba(255, 122, 0,.35);
  --glow-purple:0 0 30px rgba(0, 162, 255,.25);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--promo-h));
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Trava o layout para não "balançar" horizontalmente no mobile */
main,
.header,
.promo-bar,
.footer,
.section,
.hero,
.stats-bar,
.cta-final {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.15rem;
  box-sizing: border-box;
}
.container-narrow {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 1.15rem;
  box-sizing: border-box;
}

.text-pink { color: var(--pink); }
.text-gradient {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Promo bar ───────────────────────────────────────────────────────────── */
.promo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--promo-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: linear-gradient(90deg, #1c0d00, #2b1400, #001f33);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--pink-light);
  border-bottom: 1px solid rgba(255, 122, 0,.2);
  overflow: hidden;
}

.promo-bar.promo-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 122, 0, .12) 50%,
    transparent 60%
  );
  animation: promo-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes promo-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.promo-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: var(--promo-h);
  left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.header.scrolled {
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .45);
  border-bottom: 1px solid rgba(255, 122, 0, .08);
}

.nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.logo img { height: 36px; width: auto; }

/* Brand lockup: ícone X + wordmark */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon-x {
  height: 38px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-official {
  height: auto;
  width: auto;
  max-height: 38px;
  object-fit: contain;
}

.brand-lockup-sm .brand-icon-x { height: 30px; }
.brand-lockup-sm .logo-official { max-height: 30px; }

.brand-lockup-lg {
  justify-content: center;
  margin-bottom: 1.5rem;
}
.brand-lockup-lg .brand-icon-x { height: 52px; }
.brand-lockup-lg .logo-official { max-height: 48px; }

.header .brand-lockup .brand-icon-x { height: 36px; }
.header .brand-lockup .logo-official { max-height: 34px; }

.app-header .brand-icon-x {
  height: 22px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 600;
  transition: color .2s;
}

.nav-links a:hover { color: var(--text); }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--glow-pink);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shine {
  0%, 70%, 100% { left: -120%; }
  35% { left: 140%; }
}

.btn-primary:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 122, 0, .5);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn-sm { padding: .5rem 1.25rem; font-size: .8rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-xl { padding: 1.15rem 2.75rem; font-size: 1.05rem; }

.nav .btn-primary { margin-left: 0; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--promo-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-glow-1 {
  width: 600px; height: 600px;
  top: -10%; right: -5%;
  background: radial-gradient(circle, rgba(255, 122, 0,.15) 0%, transparent 70%);
  transition: transform .1s linear;
  will-change: transform;
}

.hero-glow-2 {
  width: 500px; height: 500px;
  bottom: 0; left: -10%;
  background: radial-gradient(circle, rgba(0, 162, 255,.12) 0%, transparent 70%);
  transition: transform .1s linear;
  will-change: transform;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0;
  animation: particle-float 8s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { left: 12%; top: 20%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 28%; top: 65%; animation-delay: 1.2s; width: 3px; height: 3px; background: var(--purple); }
.hero-particles span:nth-child(3) { left: 55%; top: 15%; animation-delay: 2.4s; }
.hero-particles span:nth-child(4) { left: 78%; top: 45%; animation-delay: .8s; width: 5px; height: 5px; }
.hero-particles span:nth-child(5) { left: 88%; top: 72%; animation-delay: 3.6s; background: var(--purple); }
.hero-particles span:nth-child(6) { left: 42%; top: 82%; animation-delay: 2s; width: 3px; height: 3px; }
.hero-particles span:nth-child(7) { left: 65%; top: 58%; animation-delay: 4.4s; }
.hero-particles span:nth-child(8) { left: 8%; top: 48%; animation-delay: 1.8s; width: 5px; height: 5px; background: var(--purple); }

@keyframes particle-float {
  0%, 100% { opacity: 0; transform: translateY(0) scale(.5); }
  15% { opacity: .6; }
  50% { opacity: .35; transform: translateY(-40px) scale(1); }
  85% { opacity: 0; }
}

.hero-eq {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  opacity: .06;
  background: repeating-linear-gradient(
    90deg,
    var(--pink) 0px, var(--pink) 3px,
    transparent 3px, transparent 12px
  );
  mask-image: linear-gradient(to top, black, transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: .4rem 1rem;
  background: rgba(255, 122, 0,.12);
  border: 1px solid rgba(255, 122, 0,.3);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--pink-light);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.hero-title span { display: block; }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.hero-price {
  display: inline-flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.75rem;
  padding: 1rem 1.35rem;
  background: rgba(255, 122, 0,.08);
  border: 1px solid rgba(255, 122, 0,.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--glow-pink);
}

.hero-price-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pink-light);
}

.hero-price-value {
  display: flex;
  align-items: baseline;
  gap: .2rem;
}

.hero-price-value span:first-child {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-2);
}

.hero-price-value strong {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  letter-spacing: -.03em;
}

.hero-price-compare {
  font-size: .82rem;
  color: var(--text-3);
  margin-top: .25rem;
  text-decoration: line-through;
  opacity: .85;
}

.hero-price-value span:last-child {
  font-size: 1rem;
  color: var(--text-3);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-trust {
  font-size: .82rem;
  color: var(--text-3);
}

.hero-resell-link {
  display: inline-block;
  margin-top: .75rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-3);
  text-decoration: none;
  transition: color .2s;
}

.hero-resell-link:hover { color: var(--pink-light); }

.hero-resell-pill {
  display: inline-flex;
  align-items: center;
  margin-top: .5rem;
  padding: .45rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 162, 255,.35);
  background: rgba(0, 162, 255,.1);
  font-size: .85rem;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  transition: all .2s;
}

.hero-resell-pill:hover {
  color: #fff;
  background: rgba(0, 162, 255,.25);
  border-color: rgba(0, 162, 255,.55);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}

.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  min-height: 560px;
  max-width: 100%;
  overflow: hidden;
}

/* Auroras de fundo */
.phone-aura {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
}

.phone-aura-pink {
  width: 280px;
  height: 400px;
  left: 18%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255, 122, 0, .35) 0%, transparent 70%);
  animation: aura-pulse 4s ease-in-out infinite;
}

.phone-aura-purple {
  width: 200px;
  height: 280px;
  right: 8%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(0, 162, 255, .25) 0%, transparent 70%);
  animation: aura-pulse-purple 5s ease-in-out infinite;
}

@keyframes aura-pulse {
  0%, 100% { opacity: .6; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.08); }
}

@keyframes aura-pulse-purple {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.1); }
}

/* Ondas sonoras entre celular e fone */
.phone-waves {
  position: absolute;
  left: 58%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}

.phone-waves span {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 122, 0, .35);
  border-radius: 50%;
  animation: sound-ring 2.8s ease-out infinite;
}

.phone-waves span:nth-child(2) { animation-delay: .9s; }
.phone-waves span:nth-child(3) { animation-delay: 1.8s; }

@keyframes sound-ring {
  0% { transform: scale(.4); opacity: .8; border-color: rgba(255, 122, 0, .5); }
  100% { transform: scale(2.2); opacity: 0; border-color: rgba(0, 162, 255, .1); }
}

/* Stage: celular + fone lado a lado */
.phone-stage {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.phone-mockup .phone-frame {
  width: 268px;
  flex-shrink: 0;
  background: linear-gradient(165deg, #222 0%, #111 50%, #1a1a1a 100%);
  border-radius: 36px;
  padding: 12px;
  border: 2px solid #3a3a3a;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, .65),
    0 0 0 1px rgba(255, 255, 255, .04),
    var(--glow-pink);
  position: relative;
  z-index: 3;
  animation: phone-float 5s ease-in-out infinite;
}

.phone-btn {
  position: absolute;
  width: 3px;
  background: #2a2a2a;
  border-radius: 2px;
  z-index: 4;
}

.phone-btn-vol {
  left: -2px;
  top: 28%;
  height: 28px;
  box-shadow: 0 18px 0 #2a2a2a;
}

.phone-btn-power {
  right: -2px;
  top: 22%;
  height: 40px;
}

.phone-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, .07) 0%,
    transparent 35%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 10;
  border-radius: inherit;
}

.phone-mockup .phone-screen {
  position: relative;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone-mockup .phone-notch {
  width: 82px;
  height: 24px;
  background: #000;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
  box-shadow: inset 0 -2px 6px rgba(255, 122, 0, .15);
}

.phone-mockup .phone-screen {
  background: #0a0a0a;
  border-radius: 24px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

/* ── Fones — ao lado do celular, nunca por cima ─────────────────────── */
.phone-mockup .headphones-deco {
  position: relative;
  width: 132px;
  height: 118px;
  flex-shrink: 0;
  margin-bottom: 52px;
  z-index: 2;
  animation: hp-float 5s ease-in-out infinite;
  animation-delay: .6s;
  filter: drop-shadow(0 12px 28px rgba(255, 122, 0, .25));
}

@keyframes hp-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
}

.phone-mockup .hp-eq {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}

.phone-mockup .hp-eq span {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--pink), var(--purple));
  animation: hp-eq-bounce 1s ease-in-out infinite alternate;
}

.phone-mockup .hp-eq span:nth-child(1) { height: 8px; animation-delay: 0s; }
.phone-mockup .hp-eq span:nth-child(2) { height: 16px; animation-delay: .15s; }
.phone-mockup .hp-eq span:nth-child(3) { height: 22px; animation-delay: .3s; }
.phone-mockup .hp-eq span:nth-child(4) { height: 14px; animation-delay: .45s; }
.phone-mockup .hp-eq span:nth-child(5) { height: 10px; animation-delay: .6s; }

@keyframes hp-eq-bounce {
  from { transform: scaleY(.55); opacity: .7; }
  to { transform: scaleY(1); opacity: 1; }
}

.phone-mockup .hp-band {
  position: absolute;
  top: 0;
  left: 20px;
  width: 92px;
  height: 58px;
  border: 5px solid #444;
  border-bottom: none;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 -6px 20px rgba(255, 122, 0, .18);
}

.phone-mockup .hp-cup {
  position: absolute;
  bottom: 6px;
  width: 48px;
  height: 58px;
  background: linear-gradient(180deg, #2a2a2a 0%, #141414 100%);
  border: 3px solid #444;
  border-radius: 14px;
}

.phone-mockup .hp-cup-l {
  left: 0;
  box-shadow: inset 3px 0 10px rgba(255, 122, 0, .2);
}

.phone-mockup .hp-cup-r {
  right: 0;
  box-shadow: inset -3px 0 10px rgba(0, 162, 255, .15);
}

.phone-mockup .hp-cup-r::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .03);
}

.phone-mockup .hp-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--pink);
  text-shadow: 0 0 12px rgba(255, 122, 0, .8);
}

.phone-mockup .hp-glow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(255, 122, 0, .4) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.phone-mockup .floating-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.note-4 {
  top: 55%;
  right: 18%;
  animation-delay: 1.5s;
  font-size: 1.2rem;
  color: var(--purple);
  opacity: .35;
}

@media (max-width: 768px) {
  .phone-mockup {
    padding: 1rem 0;
    min-height: auto;
  }

  .phone-stage {
    gap: 0;
  }

  .phone-mockup .phone-frame {
    width: min(236px, 72vw);
    animation: none;
  }

  .phone-mockup .phone-screen {
    min-height: 460px;
  }

  /* No mobile, o fone ao lado estourava a largura e gerava scroll horizontal */
  .phone-mockup .headphones-deco,
  .phone-waves,
  .phone-aura-purple,
  .floating-notes {
    display: none;
  }
}

/* ── App UI — tela Explorar (recriada em CSS) ─────────────────────────── */
.app-ui {
  font-family: 'Montserrat', system-ui, sans-serif;
  color: #fff;
  font-size: 10px;
}

.app-ui-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px 6px;
}

.app-ui-back {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  flex-shrink: 0;
}

.app-ui-search {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, .07);
  border-radius: 20px;
  color: #888;
  font-size: 8.5px;
  font-weight: 500;
}

.app-ui-search svg { flex-shrink: 0; opacity: .7; }

.app-ui-search span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-ui-bell {
  position: relative;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  flex-shrink: 0;
}

.app-ui-bell em {
  position: absolute;
  top: -2px;
  right: -4px;
  font-style: normal;
  font-size: 7px;
  font-weight: 800;
  background: var(--pink);
  color: #fff;
  padding: 1px 4px;
  border-radius: 8px;
  line-height: 1.2;
}

.app-ui-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 800;
  flex-shrink: 0;
}

.app-ui-page-title {
  font-size: 22px;
  font-weight: 800;
  padding: 4px 12px 8px;
  letter-spacing: -.02em;
  line-height: 1.1;
}

.app-ui-section {
  padding: 0 10px 10px;
}

.app-ui-section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.app-ui-section-title i {
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--pink), var(--purple));
  flex-shrink: 0;
}

.app-ui-genres {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.app-ui-genres span {
  position: relative;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--g, var(--pink));
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  transition: transform .2s ease;
}

.app-ui-genres span:hover {
  transform: scale(1.03);
}

.app-ui-genres span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, .22) 100%);
  pointer-events: none;
}

.app-ui-playlists {
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.app-ui-pl-card {
  position: relative;
  width: 88px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
}

.app-ui-pl-card-fade {
  opacity: .45;
  mask-image: linear-gradient(to right, #000 40%, transparent);
}

.app-ui-pl-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  aspect-ratio: 1;
}

.app-ui-pl-mosaic i {
  display: block;
  background: var(--c, var(--pink));
  min-height: 0;
}

.app-ui-pl-play {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 122, 0, .4);
  animation: play-pulse 2.5s ease-in-out infinite;
}

.app-ui-nowplaying {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(20, 20, 20, .95);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.app-ui-np-art {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  flex-shrink: 0;
}

.app-ui-np-meta {
  flex: 1;
  min-width: 0;
  line-height: 1.25;
}

.app-ui-np-meta strong {
  display: block;
  font-size: 8.5px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-ui-np-meta span {
  font-size: 7.5px;
  color: #888;
}

.app-ui-np-controls {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #aaa;
  flex-shrink: 0;
}

.app-ui-np-play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 122, 0, .45);
  animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 122, 0, .45); }
  50% { box-shadow: 0 0 20px rgba(255, 122, 0, .7); }
}

.app-ui-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 6px 10px;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: 7px;
  font-weight: 600;
  color: #666;
}

.app-ui-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.app-ui-nav .active {
  color: var(--purple);
}

.app-ui-nav .active svg {
  stroke: var(--purple);
}

/* Hero showcase — preview honesto do app */
.hero-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .85rem;
}

.hero-phone {
  width: 260px;
  background: #111;
  border-radius: 36px;
  padding: 10px;
  border: 2px solid #333;
  box-shadow: 0 25px 70px rgba(0,0,0,.55), var(--glow-pink);
  position: relative;
}

.hero-phone-notch {
  width: 72px;
  height: 22px;
  background: #000;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 8px;
}

.hero-phone-screen {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border-radius: 26px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone-splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.25rem;
  gap: .75rem;
}

.hero-phone-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: contain;
}

.hero-phone-wordmark {
  width: min(200px, 85%);
  height: auto;
}

.hero-phone-splash p {
  font-size: .82rem;
  color: var(--text-2);
  font-weight: 600;
}

.hero-phone-shot {
  width: 100%;
  height: auto;
  display: block;
}

.hero-eq-mini {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
  margin-top: .5rem;
}

.hero-eq-mini span {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--pink), var(--purple));
  animation: eq-bounce 1.2s ease-in-out infinite;
}

.hero-eq-mini span:nth-child(1) { height: 12px; animation-delay: 0s; }
.hero-eq-mini span:nth-child(2) { height: 22px; animation-delay: .1s; }
.hero-eq-mini span:nth-child(3) { height: 16px; animation-delay: .2s; }
.hero-eq-mini span:nth-child(4) { height: 28px; animation-delay: .15s; }
.hero-eq-mini span:nth-child(5) { height: 18px; animation-delay: .25s; }
.hero-eq-mini span:nth-child(6) { height: 26px; animation-delay: .05s; }
.hero-eq-mini span:nth-child(7) { height: 14px; animation-delay: .3s; }
.hero-eq-mini span:nth-child(8) { height: 20px; animation-delay: .12s; }

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(.6); opacity: .7; }
  50% { transform: scaleY(1); opacity: 1; }
}

.hero-showcase-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-top: .5rem;
}

.hero-showcase-desc {
  font-size: .85rem;
  color: var(--text-2);
  max-width: 320px;
  line-height: 1.5;
}

.hero-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}

.hero-showcase-note {
  font-size: .72rem;
  color: var(--text-3);
  max-width: 300px;
  line-height: 1.45;
}

/* Revenda compacta */
.reseller-compact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(0, 162, 255,.1), rgba(59,130,246,.06));
  border: 1px solid rgba(0, 162, 255,.25);
  border-radius: var(--radius-lg);
}

.reseller-benefits-compact {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem 1.25rem;
  margin: 1.25rem 0 1.75rem;
  text-align: left;
}

.reseller-benefits-compact li {
  font-size: .85rem;
  color: var(--text-2);
  padding-left: 1.1rem;
  position: relative;
}

.reseller-benefits-compact li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 800;
}

.reseller-stat-cards {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.reseller-stat {
  padding: 1.1rem 1.25rem;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.reseller-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--pink);
  margin-bottom: .15rem;
}

.reseller-stat span {
  font-size: .78rem;
  color: var(--text-2);
  font-weight: 600;
}

.app-preview-badge {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(255, 122, 0,.15);
  border: 1px solid rgba(255, 122, 0,.35);
  color: var(--pink-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* legacy app mockup helpers (não usados no hero) */
.app-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: 1px;
}

.app-search-icon { margin-left: auto; color: var(--text-3); }

.app-hero-card {
  margin: 0 .75rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 122, 0,.2), rgba(0, 162, 255,.15));
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.app-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-bottom: .75rem;
}

.app-wave span {
  flex: 1;
  background: linear-gradient(to top, var(--pink), var(--purple));
  border-radius: 2px;
  animation: wave 1.2s ease-in-out infinite alternate;
}

.app-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.app-wave span:nth-child(2) { height: 60%; animation-delay: .1s; }
.app-wave span:nth-child(3) { height: 45%; animation-delay: .2s; }
.app-wave span:nth-child(4) { height: 80%; animation-delay: .3s; }
.app-wave span:nth-child(5) { height: 55%; animation-delay: .4s; }
.app-wave span:nth-child(6) { height: 70%; animation-delay: .5s; }
.app-wave span:nth-child(7) { height: 40%; animation-delay: .6s; }
.app-wave span:nth-child(8) { height: 90%; animation-delay: .7s; }
.app-wave span:nth-child(9) { height: 50%; animation-delay: .8s; }
.app-wave span:nth-child(10) { height: 35%; animation-delay: .9s; }

@keyframes wave {
  from { transform: scaleY(.6); }
  to { transform: scaleY(1); }
}

.app-tagline {
  font-size: .85rem;
  line-height: 1.4;
  color: var(--text-2);
}

.app-tagline strong { color: var(--pink); font-weight: 800; }

.app-section {
  padding: .75rem;
}

.app-section h4 {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.app-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
}

.app-card {
  padding: .6rem;
  background: var(--c, var(--pink));
  border-radius: 8px;
  font-size: .65rem;
  font-weight: 700;
  opacity: .85;
}

.app-playlist { display: flex; flex-direction: column; gap: .4rem; }

.app-pl-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  color: var(--text-2);
}

.app-pl-art {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--c, var(--purple));
  flex-shrink: 0;
}

.app-nav {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: .6rem .5rem;
  background: #111;
  border-top: 1px solid var(--border);
  font-size: .55rem;
  color: var(--text-3);
}

.app-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.app-nav .active { color: var(--pink); }

.app-play-btn {
  width: 44px; height: 44px;
  background: var(--pink);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  margin-top: -20px;
  box-shadow: var(--glow-pink);
}

/* Headphones decoration */
.headphones-deco {
  position: absolute;
  right: -30px;
  bottom: 20px;
  width: 140px;
  height: 120px;
  z-index: 1;
  opacity: .7;
}

.hp-band {
  position: absolute;
  top: 0; left: 20px;
  width: 100px; height: 60px;
  border: 6px solid #333;
  border-bottom: none;
  border-radius: 50px 50px 0 0;
}

.hp-cup {
  position: absolute;
  bottom: 10px;
  width: 50px; height: 60px;
  background: #1a1a1a;
  border: 3px solid #333;
  border-radius: 12px;
}

.hp-cup-l { left: 0; }
.hp-cup-r { right: 0; }

.hp-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--pink);
  text-shadow: var(--glow-pink);
}

.floating-notes .note {
  position: absolute;
  font-size: 1.5rem;
  color: var(--pink);
  opacity: .4;
  animation: float 3s ease-in-out infinite;
}

.note-1 { top: 10%; right: 10%; animation-delay: 0s; }
.note-2 { top: 30%; right: 0; animation-delay: 1s; font-size: 2rem; }
.note-3 { bottom: 20%; left: 5%; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
}

/* ── Stats ───────────────────────────────────────────────────────────────── */
.stats-bar {
  padding: 2.5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1rem;
  }

  .stat-item strong { font-size: 1.55rem; }
  .stat-item span { font-size: .78rem; }
}

@media (max-width: 380px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem .75rem;
  }
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1.2;
}

.stat-item span {
  font-size: .82rem;
  color: var(--text-2);
  font-weight: 500;
}

.stat-item.reveal.visible strong {
  animation: stat-pop .55s cubic-bezier(.34, 1.4, .64, 1) both;
}

@keyframes stat-pop {
  from { transform: scale(.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ── Como funciona ─────────────────────────────────────────────────────────── */
.how-it-works {
  padding: 2.5rem 0 3rem;
  background: var(--bg);
}

.section-header-compact {
  margin-bottom: 1.75rem !important;
}

.section-header-compact .section-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.steps-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.step-card {
  flex: 1 1 200px;
  max-width: 280px;
  padding: 1.35rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.step-num {
  width: 36px;
  height: 36px;
  margin: 0 auto .75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: .35rem;
}

.step-card p {
  font-size: .8rem;
  color: var(--text-2);
  line-height: 1.5;
}

.step-arrow {
  display: flex;
  align-items: center;
  color: var(--pink);
  font-size: 1.5rem;
  font-weight: 700;
  opacity: .6;
}

.hero-price-compare s {
  opacity: .65;
}

.hero-savings {
  color: var(--green);
  font-weight: 700;
}

.plans-guarantee {
  text-align: center;
  margin-top: .75rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--green);
}

.plan-per-month {
  font-size: .82rem;
  color: var(--text-2);
  margin: -.25rem 0 .5rem;
}

.plan-per-month strong {
  color: var(--pink-light);
}

.plan-savings {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  color: var(--green);
  background: rgba(29,185,84,.12);
  border: 1px solid rgba(29,185,84,.25);
  padding: .25rem .65rem;
  border-radius: 50px;
  margin-bottom: .85rem;
}

.plan-card.plan-popular.highlighted {
  border-color: var(--purple);
  box-shadow: 0 0 40px rgba(0, 162, 255,.35);
}

.plan-card.plan-popular .plan-badge {
  background: linear-gradient(135deg, var(--purple), var(--pink));
}
.section {
  padding: 5rem 0;
}

.section-dark { background: var(--bg-card); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .75rem;
}

.section-desc {
  color: var(--text-2);
  max-width: 560px;
  margin-inline: auto;
  font-size: 1rem;
}

/* ── Features ────────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all .3s;
}

.feature-card:hover {
  border-color: rgba(255, 122, 0,.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-pink);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 122, 0,.1);
  border: 1px solid rgba(255, 122, 0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--pink);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.feature-card p {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.6;
}

.ai-banner {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, rgba(0, 162, 255,.15), rgba(255, 122, 0,.1));
  border: 1px solid rgba(0, 162, 255,.3);
  border-radius: var(--radius-lg);
}

.ai-icon { font-size: 2rem; }

.ai-banner p {
  font-size: .95rem;
  font-weight: 600;
}

.ai-banner strong { color: var(--purple); }

.ai-banner-prominent {
  padding: 1.75rem 2rem;
  margin-top: 2.5rem;
}

.ai-banner-text h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .35rem;
  color: var(--text);
}

.ai-banner-text p {
  font-size: .92rem;
  color: var(--text-2);
  font-weight: 500;
  margin: 0;
}

/* ── Comparison table ────────────────────────────────────────────────────── */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-elevated);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
  background: rgba(0,0,0,.3);
}

.comparison-table td.col-xtream,
.comparison-table th.col-xtream {
  color: var(--pink-light);
  font-weight: 700;
  background: rgba(255, 122, 0,.06);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody tr {
  transition: background .2s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 122, 0, .04);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-glow-1,
  .hero-glow-2 {
    transform: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── Bundle compact ──────────────────────────────────────────────────────── */
.section-bundle-compact { padding: 2.5rem 0; }

.bundle-compact-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.bundle-compact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.bundle-compact-body {
  flex: 1;
  min-width: 200px;
}

.bundle-compact-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-bottom: .35rem;
}

.bundle-compact-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .25rem;
}

.bundle-compact-body p {
  font-size: .85rem;
  color: var(--text-2);
  margin: 0;
}

.bundle-compact-action {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bundle-compact-price {
  display: flex;
  align-items: baseline;
  gap: .15rem;
  font-weight: 700;
}

.bundle-compact-price span { color: var(--text-3); font-size: .9rem; }
.bundle-compact-price strong { font-size: 1.75rem; color: var(--text-2); }

.family-spotlight .family-card {
  border-width: 2px;
  box-shadow: 0 0 50px rgba(255, 122, 0,.25), var(--glow-pink);
}

.section-plans { padding-top: 3rem; }
.section-family { padding-top: 1rem; }
.trial-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 122, 0,.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--glow-pink);
}

.gift-box {
  position: relative;
  width: 80px; height: 80px;
}

.gift-body {
  width: 80px; height: 60px;
  background: #1a1a1a;
  border: 2px solid var(--pink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  box-shadow: var(--glow-pink);
}

.gift-lid {
  width: 90px; height: 20px;
  background: var(--pink);
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: -5px;
}

.trial-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.trial-content p {
  color: var(--text-2);
  margin-bottom: 1.25rem;
  font-size: .95rem;
}

.trial-benefits {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.trial-benefit {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-2);
}

.trial-benefit-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 122, 0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
}

/* ── Plans ───────────────────────────────────────────────────────────────── */
#planos .container {
  width: 100%;
  max-width: 1320px;
}

.plans-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
  margin-inline: auto;
}

.plan-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  padding-top: 1.25rem;
  position: relative;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  height: auto;
  flex: 1 1 200px;
  max-width: 240px;
  min-width: 200px;
}

@media (min-width: 1100px) {
  .plans-grid {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .plan-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    width: calc((100% - 4 * 1.25rem) / 5);
  }
}

.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, .35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4), 0 0 28px rgba(255, 122, 0, .1);
}

.plan-card.highlighted {
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
  animation: plan-highlight-pulse 3s ease-in-out infinite;
}

@keyframes plan-highlight-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(255, 122, 0, .3); }
  50% { box-shadow: 0 0 36px rgba(255, 122, 0, .5); }
}

.plan-badge-area {
  position: relative;
  min-height: 28px;
  margin-bottom: .5rem;
  flex-shrink: 0;
}

.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: .3rem .85rem;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-color-bar {
  width: 40px; height: 4px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.plan-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: .25rem;
}

.plan-desc {
  font-size: .8rem;
  color: var(--text-3);
  margin-bottom: 1rem;
}

.plan-price {
  margin-bottom: 1.25rem;
}

.plan-price .currency {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-2);
  vertical-align: top;
}

.plan-price .amount {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.plan-price .period {
  font-size: .85rem;
  color: var(--text-3);
}

.plan-features {
  list-style: none;
  margin-bottom: 1.25rem;
  flex: 1 1 auto;
}

.plan-features li {
  font-size: .82rem;
  color: var(--text-2);
  padding: .35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.plan-card .btn,
.plan-card .plan-cta {
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}

.plans-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .85rem;
  color: var(--text-3);
  line-height: 1.6;
}

.plans-resell-box {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  text-align: center;
  background: rgba(0, 162, 255,.08);
  border: 1px solid rgba(0, 162, 255,.22);
  border-radius: var(--radius-lg);
  max-width: 480px;
  margin-inline: auto;
}

.plans-resell-text {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: .35rem;
}

.plans-resell-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  color: var(--purple);
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}

.plans-resell-link:hover { color: var(--pink-light); }

/* Faixa revenda */
.resell-strip {
  padding: 1.25rem 0;
  background: linear-gradient(90deg, rgba(0, 162, 255,.12), rgba(255, 122, 0,.08), rgba(0, 162, 255,.12));
  border-block: 1px solid rgba(0, 162, 255,.2);
}

.resell-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.resell-strip-text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  text-align: left;
}

.resell-strip-text strong {
  font-size: 1rem;
  color: var(--text);
}

.resell-strip-text span {
  font-size: .82rem;
  color: var(--text-2);
}

.resell-strip .btn-outline {
  border-color: rgba(0, 162, 255,.5);
  color: var(--purple);
  font-weight: 700;
  white-space: nowrap;
}

.resell-strip .btn-outline:hover {
  background: rgba(0, 162, 255,.15);
  border-color: var(--purple);
  color: #fff;
}

/* ── Bundle ──────────────────────────────────────────────────────────────── */
.bundle-header { text-align: center; margin-bottom: 2.5rem; }

.bundle-badge {
  display: inline-block;
  background: var(--yellow);
  color: #000;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: .35rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.bundle-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.bundle-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.bundle-tv {
  border: 2px solid var(--blue);
  box-shadow: 0 0 30px rgba(59,130,246,.2);
}

.bundle-music {
  border: 2px solid var(--pink);
  box-shadow: var(--glow-pink);
}

.bundle-card-label {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.bundle-tv .bundle-card-label { color: var(--blue); }
.bundle-music .bundle-card-label { color: var(--pink); }

.bundle-icon { font-size: 3rem; margin-bottom: 1rem; }

.bundle-card ul {
  list-style: none;
  text-align: left;
}

.bundle-card li {
  font-size: .85rem;
  color: var(--text-2);
  padding: .4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.bundle-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.bundle-tv li::before { color: var(--blue); }
.bundle-music li::before { color: var(--pink); }

.bundle-plus {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(255, 122, 0,.3);
}

.bundle-price {
  text-align: center;
}

.bundle-price > p {
  color: var(--text-2);
  margin-bottom: .5rem;
}

.bundle-price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .25rem;
  margin-bottom: 1.5rem;
}

.bundle-price-value span { color: var(--text-2); font-size: 1rem; }

.bundle-price-value strong {
  font-size: 3rem;
  font-weight: 900;
  color: var(--pink);
}

/* Combo plans: Individual + Família */
.combo-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.combo-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}

.combo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.combo-card-featured {
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
}

.combo-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: .3rem .85rem;
  border-radius: 50px;
  white-space: nowrap;
}

.combo-card-featured .combo-badge {
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.combo-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.combo-desc {
  font-size: .85rem;
  color: var(--text-2);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.combo-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .2rem;
  margin-bottom: 1.25rem;
}

.combo-price .currency {
  font-size: 1rem;
  color: var(--text-2);
  font-weight: 600;
}

.combo-price strong {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
}

.combo-price .period {
  font-size: .9rem;
  color: var(--text-3);
}

.combo-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1rem;
  flex: 1;
}

.combo-features li {
  font-size: .8rem;
  color: var(--text-2);
  padding: .3rem 0;
}

.combo-extra {
  list-style: none;
  text-align: left;
  margin-bottom: 1.25rem;
  padding: .75rem;
  background: rgba(255, 122, 0,.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 122, 0,.15);
}

.combo-extra li {
  font-size: .78rem;
  font-weight: 600;
  color: var(--pink-light);
  padding: .2rem 0;
  padding-left: 1rem;
  position: relative;
}

.combo-extra li::before {
  content: '★';
  position: absolute;
  left: 0;
  font-size: .65rem;
}

.combo-plans-single {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin-inline: auto;
}

.family-music-badge {
  display: inline-block;
  background: rgba(255, 122, 0,.15);
  border: 1px solid rgba(255, 122, 0,.35);
  color: var(--pink-light);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: .3rem .75rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

.family-features-list {
  list-style: none;
  margin: 1rem 0 1.25rem;
  text-align: left;
}

.family-features-list li {
  font-size: .88rem;
  color: var(--text-2);
  padding: .35rem 0;
}

/* Family highlight section */
.family-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(0, 162, 255,.12), rgba(255, 122, 0,.08));
  border: 1px solid rgba(255, 122, 0,.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--glow-pink);
}

.family-perks {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin: 1.25rem 0 1.75rem;
}

.family-perk {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
}

.family-price-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.family-savings {
  font-size: .88rem;
  font-weight: 700;
  color: var(--green);
  margin-top: .35rem;
}

.family-price-block {
  display: flex;
  flex-direction: column;
}

.family-price-row .combo-price {
  justify-content: flex-start;
  margin-bottom: 0;
}

.family-card-visual {
  text-align: center;
  padding: 2rem;
  background: rgba(0,0,0,.3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.family-devices {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.family-card-visual p {
  font-size: .9rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: .03em;
}

/* ── Install ─────────────────────────────────────────────────────────────── */
.install-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.install-step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color .3s;
}

.install-step:hover { border-color: rgba(255, 122, 0,.3); }

.install-num {
  width: 36px; height: 36px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: .75rem;
}

.install-step p {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.6;
}

.install-step strong { color: var(--text); }

.install-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.install-actions .btn { min-width: min(100%, 320px); text-align: center; }

.install-note {
  font-size: .78rem;
  color: var(--text-3);
  text-align: center;
  max-width: 480px;
  margin: 0;
}

.platforms-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.platform-tag {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  font-family: inherit;
  transition: border-color .2s, color .2s, box-shadow .2s;
}

.platform-tag:hover {
  border-color: rgba(255, 122, 0, .4);
  color: var(--text);
}

.platform-tag.active {
  border-color: var(--pink);
  color: #fff;
  background: rgba(255, 122, 0, .12);
  box-shadow: 0 0 20px rgba(255, 122, 0, .2);
}

/* ── Resellers ───────────────────────────────────────────────────────────── */
.reseller-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.reseller-benefits {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.reseller-benefits li {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-2);
  padding-left: 1.25rem;
  position: relative;
}

.reseller-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 800;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.credit-pack {
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 122, 0,.2);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: all .25s;
}

.credit-pack:hover {
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
  transform: translateY(-2px);
}

.credit-pack strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--pink);
}

.credit-pack span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--text-3);
  text-transform: uppercase;
}

.credit-pack.featured {
  border-color: var(--pink);
  background: rgba(255, 122, 0,.08);
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--pink);
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.15rem;
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 200px; }

/* ── Final CTA ───────────────────────────────────────────────────────────── */
.cta-final {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 122, 0,.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final-inner { position: relative; z-index: 1; }

.cta-logo { margin-bottom: 1.5rem; }

.cta-final h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: .75rem;
}

.cta-final p {
  color: var(--text-2);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.cta-resell-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-3);
  text-decoration: none;
  transition: color .2s;
}

.cta-resell-pill {
  padding: .65rem 1.35rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 162, 255,.35);
  background: rgba(0, 162, 255,.1);
  color: var(--purple);
  font-weight: 700;
  font-size: .88rem;
}

.cta-resell-pill:hover {
  color: #fff;
  background: rgba(0, 162, 255,.22);
  border-color: rgba(0, 162, 255,.55);
}

.cta-slogan {
  margin-top: 2rem !important;
  font-size: .85rem !important;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-3) !important;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
}

.footer-disclaimer {
  font-size: .8rem;
  color: var(--text-3);
}

.footer-resell {
  display: none;
}

.footer-legal {
  font-size: .72rem;
  color: var(--text-3);
  opacity: .75;
  max-width: 480px;
  line-height: 1.45;
}

.footer-copy {
  font-size: .72rem;
  color: var(--text-3);
  opacity: .65;
  margin-top: .25rem;
}

/* ── SEO content (indexável) ─────────────────────────────────────────────── */
.seo-content {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.seo-content h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--text-2);
}

.seo-content p {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--text-3);
  margin-bottom: 1rem;
}

.seo-content p:last-child { margin-bottom: 0; }

.seo-related {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.seo-related a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--pink-light);
  text-decoration: none;
}

.seo-related a:hover { text-decoration: underline; }

/* ── Páginas SEO (landings) ─────────────────────────────────────────────── */
.seo-page .seo-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: rgba(0, 0, 0, .92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.seo-page main { padding: 2.5rem 0 4rem; }

.seo-page .seo-hero { margin-bottom: 2.5rem; }

.seo-page .seo-hero .section-label {
  display: inline-block;
  margin-bottom: .75rem;
}

.seo-page .seo-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.seo-page .seo-hero .lead {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.seo-page .seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1rem;
}

.seo-page .seo-trust {
  font-size: .82rem;
  color: var(--text-3);
}

.seo-page article h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 2.25rem 0 .85rem;
}

.seo-page article h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.5rem 0 .5rem;
  color: var(--pink-light);
}

.seo-page article p,
.seo-page article li {
  font-size: .98rem;
  color: var(--text-2);
  line-height: 1.7;
}

.seo-page article p { margin-bottom: 1rem; }
.seo-page article ul { margin: 0 0 1.25rem 1.15rem; }
.seo-page article li { margin-bottom: .4rem; }

.seo-page .seo-plans-box {
  margin: 1.5rem 0;
  padding: 1.25rem 1.35rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.seo-page .seo-cta-block {
  margin: 2.5rem 0;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 122, 0, .12), rgba(0, 162, 255, .08));
  border: 1px solid rgba(255, 122, 0, .25);
  border-radius: var(--radius-lg);
}

.seo-page .seo-cta-block h2 { margin-top: 0; }

.seo-page .seo-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: .8rem;
  color: var(--text-3);
}

.seo-page .seo-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1.25rem;
  margin-bottom: 1rem;
}

.seo-page .seo-footer a {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 600;
}

.seo-page .seo-footer a:hover { color: var(--pink-light); }

.seo-breadcrumb {
  font-size: .8rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}

.seo-breadcrumb a {
  color: var(--text-3);
  text-decoration: none;
}

.seo-breadcrumb a:hover { color: var(--pink-light); }

/* ── WhatsApp Float ──────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s;
  text-decoration: none;
}

.whatsapp-float-label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: #25d366;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .45rem .85rem;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

.whatsapp-float:hover { transform: scale(1.1); }

/* ── Mobile sticky CTA bar ───────────────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: .75rem 1rem;
  padding-bottom: max(.75rem, env(safe-area-inset-bottom));
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  gap: .65rem;
  grid-template-columns: 1fr auto;
}

.mobile-cta-bar.visible {
  display: grid;
}

.mobile-cta-bar .btn {
  padding: .85rem 1rem;
  font-size: .9rem;
  font-weight: 700;
}

.mobile-cta-wa {
  border-color: #25d366 !important;
  color: #25d366 !important;
  white-space: nowrap;
}

body.has-mobile-bar {
  padding-bottom: 72px;
}

body.has-mobile-bar .whatsapp-float {
  bottom: calc(72px + 1rem);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2s ease infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── Reveal animation ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  #planos .container { max-width: 1140px; }

  .plans-grid { flex-wrap: wrap; }

  .plan-card {
    flex: 1 1 calc(33.333% - 1.25rem);
    max-width: 320px;
    min-width: min(220px, 100%);
    width: auto;
  }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-inline: auto; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-visual { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card {
    flex: 1 1 calc(50% - 1.25rem);
    max-width: 340px;
    min-width: min(200px, 100%);
  }
  .reseller-card { grid-template-columns: 1fr; }
  .ai-banner,
  .ai-banner-prominent {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: calc(var(--header-h) + var(--promo-h));
    left: 0; right: 0;
    background: rgba(0,0,0,.97);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    max-width: 100vw;
    overflow-x: hidden;
  }

  .nav-links.open { display: flex; }

  .nav .btn-primary { display: none; }
  .nav-ctas { display: none; }
  .menu-toggle { display: flex; }

  .step-arrow { display: none; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-card { max-width: 360px; width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .plans-grid { justify-content: center; }
  .plan-card {
    flex: 1 1 100%;
    max-width: 360px;
    min-width: 0;
    width: 100%;
  }
  .trial-card { grid-template-columns: 1fr; text-align: center; }
  .trial-benefits { align-items: center; }
  .bundle-grid { grid-template-columns: 1fr; }
  .bundle-plus { margin: 0 auto; }
  .combo-plans { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .family-card { grid-template-columns: 1fr; text-align: center; }
  .family-price-row { justify-content: center; }
  .family-price-row .combo-price { justify-content: center; }
  .install-steps { grid-template-columns: 1fr; }
  .bundle-compact-card { flex-direction: column; text-align: center; }
  .bundle-compact-action { justify-content: center; width: 100%; }
  .comparison-table-wrap {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    max-width: 100%;
  }
  .comparison-table th,
  .comparison-table td { padding: .75rem .85rem; font-size: .82rem; }
  .hero-showcase-actions { flex-direction: column; width: 100%; }
  .hero-showcase-actions .btn { width: 100%; max-width: 280px; }
  .reseller-compact-inner { grid-template-columns: 1fr; text-align: center; }
  .reseller-benefits-compact { grid-template-columns: 1fr; }
  .resell-strip-inner { flex-direction: column; text-align: center; }
  .resell-strip-text { text-align: center; align-items: center; }
  .resell-strip .btn-outline { width: 100%; max-width: 280px; }
  .hero-phone { width: 220px; }
  .hero-phone-screen { min-height: 360px; }
  .whatsapp-float-label { display: none; }

  .hero-trust,
  .promo-bar {
    max-width: 100%;
  }

  .btn {
    max-width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .logo img,
  .logo-official { max-height: 30px; max-width: min(160px, 48vw); height: auto; }
  .brand-icon-x { max-width: 28px; height: auto; }
  .whatsapp-float {
    right: 1rem;
    width: 54px;
    height: 54px;
  }
}




/* Esconder elementos de revenda */
.plans-resell-box, .resell-strip, .hero-resell-pill, .cta-resell-pill, #finalCtaResell { display: none !important; }


/* ── Category Tabs for Plans ─────────────────────────────── */
.plans-category-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
  margin-top: -0.5rem;
}

.plan-cat-btn {
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--bg-elevated);
  color: var(--text-2);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

.plan-cat-btn:hover {
  border-color: var(--pink);
  color: #ffffff;
  background: rgba(255, 122, 0, 0.12);
  transform: translateY(-2px);
}

.plan-cat-btn.active {
  background: linear-gradient(135deg, #ff7a00, #ff9433);
  border-color: #ff7a00;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 122, 0, 0.45);
  transform: scale(1.02);
}

@media (max-width: 600px) {
  .plans-category-tabs {
    gap: 0.5rem;
  }
  .plan-cat-btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.85rem;
  }
}


/* ══════════════════════════════════════════════════════════════
   SEÇÃO CONECTA TV & STREAMING — Estilos Especiais
   ══════════════════════════════════════════════════════════════ */

/* TV Showcase Cards */
.tv-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.tv-category-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tv-category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff7a00, #00a2ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tv-category-card:hover {
  border-color: rgba(255, 122, 0, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 122, 0, 0.15);
}

.tv-category-card:hover::before {
  opacity: 1;
}

.tv-cat-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.tv-category-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.tv-category-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tv-cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tv-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  background: rgba(0, 162, 255, 0.12);
  border: 1px solid rgba(0, 162, 255, 0.25);
  color: #38bdf8;
}

/* TV Plans Grid */
.tv-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto 3rem;
}

.tv-plan-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.tv-plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.45);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 122, 0, 0.2);
}

.tv-plan-card.highlighted {
  border-color: #ff7a00;
  box-shadow: 0 0 35px rgba(255, 122, 0, 0.35);
}

.tv-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff7a00, #ff9433);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
  white-space: nowrap;
}

.tv-plan-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
  color: #fff;
}

.tv-plan-desc {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}

.tv-plan-price {
  margin-bottom: 0.5rem;
}

.tv-plan-price .currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-2);
  vertical-align: top;
}

.tv-plan-price .amount {
  font-size: 3rem;
  font-weight: 900;
  color: #ff7a00;
  line-height: 1;
}

.tv-plan-price .period {
  font-size: 0.95rem;
  color: var(--text-3);
}

.tv-plan-equiv {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 1rem;
}

.tv-plan-equiv strong {
  color: #ff9433;
}

.tv-plan-features {
  list-style: none;
  margin-bottom: 1.75rem;
  flex: 1 1 auto;
}

.tv-plan-features li {
  font-size: 0.88rem;
  color: var(--text-2);
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
}

.tv-plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 800;
}

.tv-plan-card .btn {
  width: 100%;
}

/* TV Trial Banner (4 Horas) */
.tv-trial-banner {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.15), rgba(0, 162, 255, 0.12));
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 0 40px rgba(255, 122, 0, 0.15);
  margin-bottom: 3.5rem;
}

.tv-trial-info {
  flex: 1;
  min-width: 280px;
}

.tv-trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  background: rgba(255, 122, 0, 0.2);
  border: 1px solid rgba(255, 122, 0, 0.4);
  font-size: 0.75rem;
  font-weight: 800;
  color: #ff9433;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.tv-trial-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}

.tv-trial-info p {
  font-size: 0.95rem;
  color: var(--text-2);
}

/* Technical & Compatibility Grids */
.compatibility-grid,
.technical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.compat-card,
.tech-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.25s ease;
}

.compat-card:hover,
.tech-card:hover {
  border-color: rgba(0, 162, 255, 0.4);
  transform: translateY(-3px);
}

.compat-icon,
.tech-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.compat-card h4,
.tech-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}

.compat-card p,
.tech-card p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .tv-trial-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
  }
  .tv-trial-banner .btn {
    width: 100%;
  }
}

