:root {
  --blue: #006aa7;
  --blue-deep: #004b78;
  --yellow: #fecc02;
  --yellow-hover: #e6b900;
  --navy: #071827;
  --navy-deep: #04111d;
  --navy-soft: #0b2133;
  --card: #0d263a;
  --card-alt: #12304a;
  --text: #fff;
  --text-soft: #c4d2dd;
  --text-strong: #eaf2f7;
  --muted: #8fa5b5;
  --border: #24445b;
  --success: #22c55e;
  --whatsapp: #25d366;
  --radius: 20px;
  --shadow: 0 22px 55px rgba(0, 0, 0, .28);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; background: var(--navy-deep); }
body { margin: 0; min-width: 0; max-width: 100vw; overflow-x: hidden; background: var(--navy); color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
body.menu-open { overflow: hidden; }
section, header, footer, main, aside { width: 100%; box-sizing: border-box; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.skip-link { position: fixed; z-index: 9999; left: 12px; top: -80px; padding: 10px 16px; background: var(--yellow); color: var(--navy); border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 12px; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding: 64px 0; position: relative; }
.section--alt { background: var(--navy-soft); }
.section-head { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.eyebrow { margin: 0 0 8px; color: var(--yellow); font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { color: var(--text); line-height: 1.12; overflow-wrap: break-word; text-wrap: balance; }
h1 { margin: 0; font-size: clamp(2.15rem, 10vw, 4.55rem); letter-spacing: -.052em; }
h2 { margin: 0 0 14px; font-size: clamp(1.75rem, 7vw, 3rem); letter-spacing: -.035em; }
h3 { margin: 0 0 10px; font-size: clamp(1.08rem, 4vw, 1.35rem); }
p { color: var(--text-soft); }
.lead { font-size: clamp(1rem, 2.4vw, 1.16rem); }
.muted { color: var(--muted); }
.highlight { color: var(--yellow); }

.promo-bar { min-height: 42px; padding: 7px 16px; display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; background: var(--blue); color: var(--text); text-align: center; font-size: .83rem; }
.promo-tag { padding: 3px 8px; border-radius: 999px; background: var(--yellow); color: var(--navy); font-size: .68rem; font-weight: 900; letter-spacing: .06em; }
.promo-bar strong { color: var(--yellow); }

.site-header { position: sticky; z-index: 500; top: 0; min-height: 70px; background: rgba(4, 17, 29, .94); border-bottom: 1px solid rgba(36, 68, 91, .72); backdrop-filter: blur(15px); }
.header-inner { min-height: 70px; display: flex; align-items: center; gap: 12px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; font-size: 1.03rem; font-weight: 900; letter-spacing: -.02em; }
.brand img { width: 38px; height: 38px; object-fit: contain; border-radius: 10px; box-shadow: 0 0 0 1px rgba(254, 204, 2, .35); }
.brand span span { color: var(--yellow); }
.header__nav, .site-header .header-cta { display: none; }
.header__toggle { width: 44px; height: 44px; margin-left: auto; border: 1px solid var(--border); border-radius: 12px; background: var(--card); color: var(--text); cursor: pointer; font-size: 1.25rem; }
.header__mobile-overlay { position: fixed; z-index: 699; inset: 0; background: rgba(2, 10, 17, .72); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.header__mobile-overlay.is-open { opacity: 1; pointer-events: auto; }
.header__mobile-menu { position: fixed; z-index: 700; top: 0; right: 0; width: min(88vw, 340px); height: 100dvh; padding: 72px 20px 24px; background: var(--navy-deep); border-left: 1px solid var(--border); box-shadow: -22px 0 55px rgba(0, 0, 0, .4); transform: translateX(102%); visibility: hidden; transition: transform .3s ease, visibility .3s ease; overflow-y: auto; }
.header__mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border: 0; border-radius: 10px; background: var(--card); color: var(--text); cursor: pointer; font-size: 1.6rem; }
.header__mobile-menu ul { margin: 0 0 24px; padding: 0; list-style: none; }
.header__mobile-menu li + li { border-top: 1px solid rgba(36, 68, 91, .65); }
.header__mobile-menu li a { display: block; padding: 13px 6px; color: var(--text-strong); font-weight: 700; }

.btn { min-height: 48px; padding: 12px 18px; display: inline-flex; justify-content: center; align-items: center; gap: 8px; border: 1px solid transparent; border-radius: 13px; font-weight: 850; line-height: 1.2; text-align: center; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--navy); }
.btn-primary:hover { background: var(--yellow-hover); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--blue); }
.btn-secondary:hover { background: var(--blue); }
.btn-whatsapp { background: var(--whatsapp); color: #03150a; }
.btn-full { width: 100%; }

.hero { width: 100%; max-width: 100%; overflow: hidden; padding: 60px 0 48px; background: radial-gradient(circle at 90% 5%, rgba(0, 106, 167, .29), transparent 38%), linear-gradient(180deg, var(--navy-deep), var(--navy)); }
.hero-grid { width: min(100% - 32px, var(--container)); max-width: 100%; margin-inline: auto; display: grid; gap: 32px; }
.hero-copy { min-width: 0; text-align: center; }
.badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.badge { max-width: 100%; padding: 7px 11px; border: 1px solid rgba(0, 106, 167, .8); border-radius: 999px; background: rgba(13, 38, 58, .85); color: var(--text-strong); font-size: .75rem; font-weight: 800; overflow-wrap: anywhere; }
.badge--yellow { border-color: rgba(254, 204, 2, .65); color: var(--yellow); }
.hero-desc { max-width: 690px; margin: 18px auto 22px; font-size: 1.03rem; overflow-wrap: break-word; }
.hero-stats { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 0 auto 18px; }
.stat { padding: 13px 10px; border: 1px solid var(--border); border-radius: 15px; background: var(--card); }
.stat strong { display: block; color: var(--yellow); font-size: 1.22rem; line-height: 1.2; }
.stat span { display: block; color: var(--text-soft); font-size: .76rem; }
.value-note { margin: 0 auto 20px; padding: 10px 13px; max-width: 650px; border-left: 3px solid var(--yellow); border-radius: 0 11px 11px 0; background: rgba(13, 38, 58, .72); color: var(--text-strong); font-size: .9rem; }
.hero-actions { display: grid; gap: 10px; }
.offer-card { width: 100%; max-width: 480px; margin-inline: auto; padding: 26px 20px; align-self: center; border: 1px solid rgba(254, 204, 2, .52); border-radius: 26px; background: linear-gradient(145deg, #071827 0%, #0d3150 65%, #006aa7 100%); box-shadow: var(--shadow); text-align: left; }
.offer-kicker { display: inline-block; margin-bottom: 14px; padding: 5px 9px; border-radius: 999px; background: var(--yellow); color: var(--navy); font-size: .72rem; font-weight: 900; letter-spacing: .06em; }
.offer-card h2 { font-size: clamp(1.65rem, 7vw, 2.7rem); }
.offer-price { display: flex; align-items: baseline; gap: 8px; margin: 16px 0 6px; }
.offer-price strong { color: var(--yellow); font-size: clamp(2.5rem, 13vw, 4rem); line-height: 1; }
.offer-price span { color: var(--text-soft); }
.offer-list { margin: 18px 0; padding: 0; list-style: none; }
.offer-list li { padding: 5px 0; color: var(--text-strong); }
.offer-list li::before { content: "✓"; margin-right: 9px; color: var(--success); font-weight: 900; }
.offer-fine { margin: 12px 0 0; color: var(--text-soft); font-size: .78rem; text-align: center; }

.marquee { width: 100%; overflow: hidden; mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 12px; padding: 6px; animation: glide 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes glide { to { transform: translateX(-50%); } }
.logo-tile { width: 132px; aspect-ratio: 16 / 9; flex: 0 0 auto; display: grid; place-items: center; padding: 14px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 16px; background: rgba(255, 250, 235, .09); box-shadow: 0 10px 22px rgba(0, 0, 0, .16); }
.logo-tile img { width: 100%; height: 100%; object-fit: contain; }
.media-tile { position: relative; flex: 0 0 auto; overflow: hidden; border: 1px solid rgba(255, 255, 255, .14); border-radius: 18px; background: rgba(255, 250, 235, .08); box-shadow: 0 14px 30px rgba(0, 0, 0, .22); }
.media-tile img { width: 100%; height: 100%; object-fit: cover; }
.carousel--movies .media-tile { width: 170px; aspect-ratio: 1 / 1.482; }
.carousel--sport .media-tile { width: 155px; aspect-ratio: 9 / 16; }
.carousel--devices .media-tile { width: 180px; aspect-ratio: 1 / 1; }
.carousel--preview .media-tile { width: 280px; aspect-ratio: 16 / 9; }
.carousel--wtsp .media-tile { width: 165px; aspect-ratio: 473 / 1024; }
.media-label { position: absolute; inset: auto 0 0; padding: 24px 10px 9px; background: linear-gradient(transparent, rgba(2, 10, 17, .92)); color: var(--text); font-size: .78rem; font-weight: 800; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
.compare-table { width: 100%; min-width: 650px; border-collapse: collapse; background: var(--card); }
.compare-table th, .compare-table td { padding: 15px 16px; border-bottom: 1px solid var(--border); text-align: left; }
.compare-table th { background: var(--navy-deep); color: var(--text); }
.compare-table th:nth-child(2), .compare-table td:nth-child(2) { color: var(--yellow); font-weight: 800; }
.compare-table tr:last-child td { border-bottom: 0; }

.pricing-grid { display: grid; gap: 16px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 24px 20px; border: 1px solid var(--border); border-radius: 22px; background: var(--card); box-shadow: 0 14px 35px rgba(0, 0, 0, .17); }
.plan-card.popular { border: 2px solid var(--yellow); background: linear-gradient(180deg, var(--card-alt), var(--card)); }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap; padding: 5px 11px; border-radius: 999px; background: var(--yellow); color: var(--navy); font-size: .72rem; font-weight: 900; }
.plan-price { margin: 11px 0 3px; color: var(--yellow); font-size: 2.45rem; font-weight: 900; line-height: 1; }
.plan-daily { margin: 0 0 17px; color: var(--muted); font-size: .8rem; }
.feature-list { margin: 0 0 22px; padding: 0; list-style: none; flex: 1; }
.feature-list li { padding: 6px 0 6px 22px; position: relative; color: var(--text-soft); font-size: .9rem; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.feature-list li.unavailable { text-decoration: line-through; color: var(--muted); }
.feature-list li.unavailable::before { content: "×"; color: #ef4444; }
.plan-wide { margin-top: 16px; }
.payment-icons { width: min(100%, 531px); margin: 28px auto 0; padding: 9px 14px; border: 1px solid var(--border); border-radius: 14px; background: rgba(255,255,255,.94); }
.multi-grid { display: grid; gap: 16px; margin-top: 30px; }

.steps-grid, .feature-grid, .info-grid, .review-grid, .blog-grid { display: grid; gap: 16px; }
.step-card, .feature-card, .info-card, .review-card, .blog-card { min-width: 0; padding: 22px 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); }
.step-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 14px; border-radius: 12px; background: var(--blue); color: var(--text); font-weight: 900; }
.feature-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 14px; border-radius: 12px; background: rgba(254, 204, 2, .12); color: var(--yellow); font-size: 1.25rem; }
.review-card { width: min(84vw, 320px); flex: 0 0 auto; }
.review-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; margin-bottom: 15px; border-radius: 13px; }
.review-head { display: flex; justify-content: space-between; gap: 10px; align-items: start; }
.review-head p { margin: 2px 0 0; font-size: .8rem; }
.stars { color: var(--yellow); letter-spacing: .09em; white-space: nowrap; }
.review-label { display: inline-block; margin-top: 10px; padding: 3px 8px; border: 1px solid var(--blue); border-radius: 999px; color: var(--text-soft); font-size: .7rem; }
.rating-summary { display: inline-flex; gap: 8px; align-items: center; padding: 8px 12px; border-radius: 999px; background: var(--card); border: 1px solid var(--border); }

.tv-shell { width: min(100%, 900px); margin: 30px auto 0; padding: 18px; border: 1px solid rgba(245, 158, 11, .35); border-radius: 24px; background: linear-gradient(145deg, #061323, #102a42); box-shadow: var(--shadow); }
.tv-header { display: flex; justify-content: space-between; gap: 12px; align-items: center; flex-wrap: wrap; padding-bottom: 16px; }
.tv-logo { display: flex; align-items: center; gap: 8px; font-weight: 900; }
.tv-logo svg { width: 28px; color: #f59e0b; }
.tv-status { padding: 5px 9px; border-radius: 999px; background: rgba(245, 158, 11, .13); color: #fbbf24; font-size: .72rem; font-weight: 800; }
.tv-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.tv-card { min-width: 0; min-height: 110px; display: grid; place-items: center; gap: 5px; padding: 15px 8px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: #14314a; color: #eef4f7; text-align: center; transition: transform .2s ease, filter .2s ease; }
.tv-card:hover { transform: scale(1.02); filter: brightness(1.15); }
.tv-card.active { box-shadow: inset 0 -3px #f59e0b; }
.tv-card svg, .tv-card img { width: 38px; height: 38px; object-fit: contain; color: #f8fafc; }

.faq-list { max-width: 860px; margin-inline: auto; display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--blue); border-radius: 15px; background: var(--card); overflow: hidden; }
.faq-item summary { position: relative; padding: 17px 48px 17px 16px; cursor: pointer; color: var(--text); font-weight: 800; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 17px; top: 13px; color: var(--yellow); font-size: 1.55rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 16px 18px; }

.article-hero { padding: 54px 0 34px; text-align: center; background: radial-gradient(circle at 50% 0, rgba(0, 106, 167, .3), transparent 54%); }
.breadcrumbs { margin-bottom: 16px; color: var(--muted); font-size: .82rem; }
.breadcrumbs a { color: var(--yellow); }
.article-layout { display: grid; gap: 24px; }
.article-content { min-width: 0; }
.article-section { padding: 23px 0; border-bottom: 1px solid var(--border); }
.article-section:last-child { border-bottom: 0; }
.article-section p { max-width: 860px; }
.article-section ul, .article-section ol { color: var(--text-soft); }
.article-section li + li { margin-top: 7px; }
.aside-card { padding: 22px 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); }
.aside-card ul { padding-left: 18px; color: var(--text-soft); }
.cta-panel { padding: 26px 20px; border: 1px solid rgba(254, 204, 2, .48); border-radius: 22px; background: linear-gradient(145deg, var(--card), var(--blue-deep)); text-align: center; }
.cta-panel .btn { margin-top: 8px; }

.contact-grid { display: grid; gap: 18px; }
.contact-form { padding: 22px 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); }
.field { display: grid; gap: 7px; margin-bottom: 15px; }
.field label { font-weight: 750; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; border: 1px solid var(--border); border-radius: 11px; background: var(--navy-deep); color: var(--text); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .78rem; }

.site-footer { padding: 52px 0 24px; background: #020a11; border-top: 1px solid var(--border); }
.footer-brand { max-width: 520px; margin-bottom: 28px; }
.footer-grid { display: grid; gap: 26px; }
.footer-grid h2 { font-size: 1rem; letter-spacing: 0; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li + li { margin-top: 8px; }
.footer-grid a { color: var(--text-soft); font-size: .9rem; }
.footer-grid a:hover { color: var(--yellow); }
.footer-bottom { margin-top: 32px; padding-top: 18px; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--border); color: var(--muted); font-size: .78rem; }

.whatsapp-float { position: fixed; z-index: 650; right: 14px; bottom: 14px; width: 54px; height: 54px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.2); border-radius: 50%; background: var(--whatsapp); color: #05210e; box-shadow: 0 10px 28px rgba(0,0,0,.38); font-size: 1.45rem; font-weight: 900; }
.recent-toast { position: fixed; z-index: 640; left: 12px; bottom: 12px; width: calc(100vw - 90px); max-width: 300px; min-height: auto; padding: 10px 36px 10px 10px; display: flex; gap: 10px; align-items: center; border: 1px solid rgba(254, 204, 2, .35); border-radius: 14px; background: rgba(13, 38, 58, .97); box-shadow: 0 16px 40px rgba(0,0,0,.38); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .6s ease, transform .6s ease, visibility .6s ease; }
.recent-toast.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.toast-icon { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 9px; background: rgba(254,204,2,.14); color: var(--yellow); font-size: .9rem; }
.toast-copy { min-width: 0; flex: 1; overflow-wrap: anywhere; }
.toast-kicker { display: block; color: var(--yellow); font-size: .62rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.toast-name { display: block; color: var(--text); font-size: .86rem; font-weight: 800; line-height: 1.2; }
.toast-meta { display: block; color: var(--text-soft); font-size: .72rem; line-height: 1.35; }
.toast-time { color: var(--muted); font-size: .67rem; }
.toast-close { position: absolute; top: 6px; right: 6px; width: 24px; height: 24px; padding: 0; border: 0; border-radius: 7px; background: transparent; color: var(--muted); cursor: pointer; }
.not-found { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.not-found-code { margin: 0; color: var(--yellow); font-size: clamp(6rem, 30vw, 14rem); font-weight: 950; line-height: .8; letter-spacing: -.08em; }

@media (min-width: 480px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-actions { display: flex; justify-content: center; flex-wrap: wrap; }
  .pricing-grid, .multi-grid, .feature-grid, .info-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tv-cards { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 769px) {
  .section { padding: 84px 0; }
  .hero { padding: 82px 0 68px; }
  .hero-grid { grid-template-columns: minmax(0, 1.25fr) minmax(340px, .85fr); align-items: center; gap: 48px; }
  .hero-copy { text-align: left; }
  .badges { justify-content: flex-start; }
  .hero-desc, .value-note { margin-left: 0; }
  .hero-actions { justify-content: flex-start; }
  .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .plan-wide { width: calc((100% - 32px) / 3); margin-left: auto; margin-right: auto; }
  .feature-grid, .info-grid, .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .multi-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: minmax(0, 1fr) 300px; align-items: start; }
  .article-aside { position: sticky; top: 100px; }
  .contact-grid { grid-template-columns: 1.1fr .9fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr .9fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .recent-toast { left: 20px; bottom: 20px; width: 330px; max-width: 360px; }
  .whatsapp-float { right: 20px; bottom: 20px; }
}

@media (min-width: 1080px) {
  .header__mobile-menu, .header__mobile-overlay { display: none; }
  .header__toggle { display: none; }
  .header__nav { display: block; margin-left: auto; }
  .header__nav-list { display: flex; align-items: center; gap: 3px; margin: 0; padding: 0; list-style: none; }
  .header__nav-list a { display: block; padding: 9px 8px; border-radius: 9px; color: var(--text-soft); font-size: .76rem; font-weight: 750; white-space: nowrap; }
  .header__nav-list a:hover, .header__nav-list a[aria-current="page"] { background: var(--card); color: var(--yellow); }
  .site-header .header-cta { display: inline-flex; min-height: 42px; padding: 9px 13px; margin-left: 5px; }
}

@media (max-width: 359px) {
  .container, .hero-grid { width: min(100% - 24px, var(--container)); }
  .hero { padding: 60px 0 40px; }
  .offer-card { padding: 22px 16px; }
  .recent-toast { width: calc(100vw - 82px); padding-left: 8px; }
  .toast-icon { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .marquee { overflow-x: auto; mask-image: none; }
}
