/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.5rem; font-weight: 700;
}
.navbar-logo .logo-hogar { color: #fff; }
.navbar-logo .logo-tv { color: #f97316; }
.navbar-logo img { height: 40px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: #aaa;
  transition: color 0.3s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: #f97316; border-radius: 1px;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: #fff;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 20px 80px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1020 40%, #0a0a0a 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block; padding: 8px 24px; border-radius: 50px;
  background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3);
  color: #f97316; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px; letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 20px; color: #fff;
}
.hero h1 .accent { color: #f97316; }
.hero p {
  font-size: 1.1rem; color: #999; max-width: 600px;
  margin: 0 auto 36px;
}
.btn-primary {
  display: inline-block; padding: 16px 40px; border-radius: 8px;
  background: #f97316; color: #fff; font-weight: 700;
  font-size: 1rem; transition: all 0.3s; border: none; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-primary:hover { background: #ea580c; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(249,115,22,0.3); }
.btn-outline {
  display: inline-block; padding: 14px 36px; border-radius: 8px;
  background: transparent; color: #fff; font-weight: 600;
  font-size: 0.95rem; transition: all 0.3s; border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
}
.btn-outline:hover { border-color: #f97316; color: #f97316; }

/* ===== BRANDS MARQUEE ===== */
.brands {
  padding: 40px 0; background: #111;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.marquee {
  display: flex; gap: 60px; animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee span {
  font-size: 1.3rem; font-weight: 700; color: #555;
  white-space: nowrap; letter-spacing: 1px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION COMMON ===== */
.section { padding: 80px 0; }
.section-light { background: #f5f5f5; color: #1a1a1a; }
.section-dark { background: #0a0a0a; }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800;
  text-align: center; margin-bottom: 12px;
}
.section-light .section-title { color: #1a1a1a; }
.section-subtitle {
  text-align: center; color: #777; font-size: 1rem;
  margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ===== PRICING ===== */
.pricing { background: #f5f5f5; color: #1a1a1a; }
.pricing .section-title { color: #1a1a1a; }
.pricing-toggle {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap;
}
.pricing-toggle button {
  padding: 10px 20px; border-radius: 8px; border: 2px solid #ddd;
  background: #fff; color: #555; font-weight: 600; font-size: 0.85rem;
  cursor: pointer; transition: all 0.3s;
}
.pricing-toggle button.active,
.pricing-toggle button:hover {
  background: #f97316; color: #fff; border-color: #f97316;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.price-card {
  background: #1a1a1a; border-radius: 16px; padding: 32px 24px;
  text-align: center; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255,255,255,0.05);
}
.price-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.price-card.featured {
  border: 2px solid #f97316;
  background: linear-gradient(180deg, #1f1510 0%, #1a1a1a 40%);
}
.price-card.featured::before {
  content: 'POPULAR'; position: absolute; top: 14px; right: -28px;
  background: #f97316; color: #fff; padding: 4px 36px;
  font-size: 0.7rem; font-weight: 700; transform: rotate(45deg);
}
.price-card .duration {
  font-size: 0.85rem; font-weight: 600; color: #f97316;
  text-transform: uppercase; margin-bottom: 12px; letter-spacing: 1px;
}
.price-card .price {
  font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 4px;
}
.price-card .price sup { font-size: 1.2rem; vertical-align: super; }
.price-card .per-month { font-size: 0.8rem; color: #888; margin-bottom: 16px; }
.price-card .savings {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  background: rgba(34,197,94,0.15); color: #22c55e;
  font-size: 0.75rem; font-weight: 600; margin-bottom: 20px;
}
.price-card ul { text-align: left; margin-bottom: 24px; }
.price-card ul li {
  padding: 6px 0; font-size: 0.85rem; color: #ccc;
  display: flex; align-items: center; gap: 8px;
}
.price-card ul li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: #f97316; font-size: 0.75rem;
}
.price-card .btn-card {
  display: block; width: 100%; padding: 12px; border-radius: 8px;
  background: #f97316; color: #fff; font-weight: 700; font-size: 0.9rem;
  border: none; cursor: pointer; transition: all 0.3s;
}
.price-card .btn-card:hover { background: #ea580c; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #141414; border-radius: 16px; padding: 32px;
  text-align: center; border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: rgba(249,115,22,0.3); }
.feature-card .icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(249,115,22,0.1); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.4rem; color: #f97316;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feature-card p { font-size: 0.85rem; color: #888; }

/* ===== CONTENT GLOBAL ===== */
.content-section { text-align: center; }
.content-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px; margin-top: 40px;
}
.content-item { text-align: center; }
.content-item .icon-big {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(249,115,22,0.1); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.6rem; color: #f97316;
}
.content-item h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.content-item p { font-size: 0.9rem; color: #888; }

/* ===== PLATFORMS BANNER ===== */
.platforms-banner {
  padding: 80px 20px; text-align: center;
  background: linear-gradient(180deg, #1a1020 0%, #0a0a0a 100%);
}
.platforms-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: #fff;
  margin-bottom: 16px;
}
.platforms-banner p { color: #888; max-width: 700px; margin: 0 auto 32px; font-size: 1rem; }
.platform-icons { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 24px; }
.platform-icons .p-icon {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.platform-icons .p-icon i { font-size: 2rem; color: #f97316; }
.platform-icons .p-icon span { font-size: 0.8rem; color: #aaa; }

/* ===== FAQ ===== */
.faq { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0;
}
.section-light .faq-item { border-bottom-color: #ddd; }
.faq-question {
  width: 100%; padding: 20px 0; display: flex;
  justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer;
  font-size: 0.95rem; font-weight: 600; color: #fff;
  text-align: left;
}
.section-light .faq-question { color: #1a1a1a; }
.faq-question i { transition: transform 0.3s; color: #f97316; font-size: 0.8rem; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 0 20px; font-size: 0.9rem; color: #888;
  line-height: 1.7;
}
.section-light .faq-answer p { color: #555; }

/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a; padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px; margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 0.9rem; font-weight: 700; color: #fff;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 0.85rem; color: #666;
  margin-bottom: 8px; transition: color 0.3s;
}
.footer-col a:hover { color: #f97316; }
.footer-bottom {
  text-align: center; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem; color: #444;
}

/* ===== DOWNLOADS PAGE ===== */
.page-header {
  padding: 120px 20px 60px; text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}
.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: #fff;
  margin-bottom: 12px;
}
.page-header p { color: #888; font-size: 1rem; }

.download-section { padding: 60px 20px; }
.download-box {
  max-width: 700px; margin: 0 auto;
  background: #141414; border-radius: 16px; padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}
.download-tabs {
  display: flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap;
}
.download-tabs button {
  flex: 1; padding: 12px 20px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.1); background: transparent;
  color: #aaa; font-weight: 600; font-size: 0.85rem;
  cursor: pointer; transition: all 0.3s; min-width: 160px;
}
.download-tabs button.active,
.download-tabs button:hover {
  border-color: #f97316; color: #f97316; background: rgba(249,115,22,0.05);
}
.download-tabs button i { margin-right: 8px; }
.code-box {
  background: #0a0a0a; border-radius: 12px; padding: 20px;
  text-align: center; margin-bottom: 16px;
}
.code-box label { display: block; font-size: 0.8rem; color: #888; margin-bottom: 8px; }
.code-box .code {
  font-size: 2rem; font-weight: 800; color: #f97316;
  letter-spacing: 4px; font-family: 'JetBrains Mono', monospace;
}
.code-box .code-sub { font-size: 0.8rem; color: #666; margin-top: 8px; }
.direct-link {
  display: block; width: 100%; padding: 14px;
  background: #f97316; color: #fff; border: none; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: all 0.3s; text-align: center; margin-top: 16px;
}
.direct-link:hover { background: #ea580c; }

/* ===== INSTALLATION PAGE ===== */
.install-box {
  max-width: 700px; margin: 0 auto;
  background: #141414; border-radius: 16px; padding: 40px;
  border: 1px solid rgba(255,255,255,0.05);
}
.install-section-title {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.1rem; font-weight: 700; color: #f97316;
  margin-bottom: 20px;
}
.install-section-title i { font-size: 1.2rem; }
.steps { counter-reset: step; }
.steps li {
  counter-increment: step; position: relative;
  padding: 12px 0 12px 40px; font-size: 0.9rem; color: #ccc;
  border-left: 2px solid rgba(249,115,22,0.2); margin-left: 12px;
}
.steps li::before {
  content: counter(step); position: absolute; left: -13px; top: 10px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #f97316; color: #fff; font-size: 0.75rem;
  font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.steps li:last-child { border-left-color: transparent; }
.steps li strong { color: #fff; }
.install-divider {
  height: 1px; background: rgba(255,255,255,0.08);
  margin: 30px 0;
}

/* ===== RENEW PAGE ===== */
.renew-section { padding: 60px 20px; }
.plans-group { margin-bottom: 50px; }
.plans-group h3 {
  text-align: center; font-size: 1.2rem; font-weight: 700;
  color: #fff; margin-bottom: 24px;
}
.payment-methods {
  display: flex; justify-content: center; gap: 20px;
  flex-wrap: wrap; margin: 40px 0;
}
.payment-methods .method {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px;
  background: #141414; border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem; color: #ccc;
}
.payment-methods .method i { color: #f97316; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-bottom: 50px;
}
.contact-card {
  background: #fff; border-radius: 12px; padding: 24px;
  border: 1px solid #e5e5e5; color: #333;
  transition: box-shadow 0.3s;
}
.contact-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.contact-card .country {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.contact-card .country .flag { font-size: 1.5rem; }
.contact-card .country h3 { font-size: 1rem; font-weight: 700; color: #1a1a1a; }
.contact-card .phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: #555; margin-bottom: 6px;
}
.contact-card .phone i { color: #f97316; width: 16px; }
.contact-main {
  text-align: center; max-width: 500px; margin: 0 auto;
}
.contact-main h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.contact-main p { font-size: 0.9rem; color: #888; margin-bottom: 24px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 8px;
  background: #25d366; color: #fff; font-weight: 700;
  font-size: 0.95rem; transition: all 0.3s; border: none; cursor: pointer;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-whatsapp i { font-size: 1.2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(10,10,10,0.98); flex-direction: column;
    padding: 20px; gap: 16px; transform: translateY(-120%);
    transition: transform 0.3s; border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.open { transform: translateY(0); }
  .hamburger { display: flex; }
  .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
  .price-card { padding: 24px 16px; }
  .price-card .price { font-size: 2.2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .download-tabs { flex-direction: column; }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.8rem; }
}
