/* 
  SANTA CRUZ IPTV - DESIGN SYSTEM 2026
  Premium, Authority, Modern.
*/

:root {
  --primary: #22c55e;
  --bg-dark: #0a0f1c;
  --bg-card: #111827;
  --border: #1f2533;
  --text-muted: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden !important; width: 100% !important; }
body { font-family: system-ui, -apple-system, sans-serif; background: var(--bg-dark); color: #fff; line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
a { text-decoration: none; transition: 0.2s; color: inherit; }

/* ===== HEADER & MENU ===== */
#menu-checkbox { 
  display: none !important; 
  position: absolute; 
  opacity: 0; 
  pointer-events: none; 
}

.main-header {
  background: #0f1420;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff !important;
}
.logo span { color: var(--primary); }

.main-nav {
  display: flex;
  gap: 1.5rem;
}
.main-nav a {
  color: var(--text-muted) !important;
  font-size: 0.95rem;
  font-weight: 500;
}
.main-nav a:hover { color: #fff !important; }

.menu-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 25px; height: 3px; background: #fff; border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn-whatsapp {
  background: var(--primary) !important;
  color: #000 !important;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== MOBILE (MAX-WIDTH 992px) ===== */
@media (max-width: 992px) {
  .menu-toggle { display: flex !important; }
  
  .main-nav {
    display: none !important; 
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: auto;
    background: #0f1420;
    flex-direction: column;
    padding: 2rem;
    border-bottom: 3px solid var(--primary);
    z-index: 999;
  }

  #menu-checkbox:checked ~ .header-container .main-nav {
    display: flex !important;
  }

  .btn-whatsapp.btn-cta-header { display: none !important; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem !important; line-height: 1.2 !important; }
  section { padding: 3rem 1rem !important; }
  
  /* Sticky CTA */
  .sticky-cta {
    position: fixed;
    bottom: 12px;
    left: 12px;
    right: 12px;
    z-index: 9999;
    width: auto;
  }
  .sticky-cta .btn-whatsapp { width: 100% !important; justify-content: center !important; }
}
