:root {
    --izzi-dark: #0f1116;
    --izzi-teal: #01BCB4;
    --izzi-magenta: #e6007e;
    --izzi-yellow: #ffd600;
    --izzi-orange: #f57c00;
    --izzi-navy: #0b1730;
    --izzi-purple: #8b1a8f;
    --izzi-green: #00c853;
    --izzi-cyan: #00bcd4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; overflow-x: hidden; }
html { scroll-behavior: smooth; }

/* ===== HERO ===== */
.hero-bg {
    background: linear-gradient(135deg, var(--izzi-dark) 0%, var(--izzi-dark) 20%, var(--izzi-dark) 40%, var(--izzi-dark) 60%, var(--izzi-dark) 100%);
    position: relative;
    overflow: hidden;
    background-size: 100% 100%;
}
.hero-bg.slide-1 {
    background-image: url("../assets/fondo-banner-1.jpg");
}
.hero-bg.slide-2 {
    background-image: url("../assets/fondo-banner-1.jpg");
}
.hero-bg.slide-3 {
    background-image: url("../assets/fondo-banner-1.jpg");
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(0,80,50,0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 60%, rgba(0,60,40,0.3) 0%, transparent 50%);
    pointer-events: none;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

/* ===== SWIPER ===== */
.hero-swiper .swiper-pagination { bottom: 16px !important; }
.hero-swiper .swiper-pagination-bullet {
    background: #fff; opacity: 0.4;
    width: 10px; height: 10px; margin: 0 5px !important;
}
.hero-swiper .swiper-pagination-bullet-active { opacity: 1; background: #fff; }

/* ===== PLAN CARDS ===== */
.plan-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}
.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ===== BUTTONS ===== */
.btn-contratar {
    transition: all 0.3s ease;
}
.btn-contratar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.btn-conocer { transition: all 0.3s ease; }
.btn-conocer:hover { background: #f3f4f6; }

/* ===== MOBILE SIDEBAR ===== */
.mobile-sidebar {
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-sidebar.active { transform: translateX(0); }
.sidebar-overlay {
    opacity: 0; visibility: hidden;
    transition: all 0.35s ease;
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

/* ===== BENEFIT CARDS ===== */
.tips-content {
    position: relative;
}
.tips-content:before {
    content: "";
    position: absolute;
    width: 120px; 
    height: 120px;
    background-image: url("../assets/efecto-cubo.png");
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    z-index: 0;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    position: relative;
}
.promo-banner:after,
.promo-banner:before {
    content: '';
    position: absolute;
    width: 180px;
    height: 140px;
    background-image: url(../assets/fondo-exclusivo.png);
    background-size: contain;
    bottom: 0px;
    background-repeat: no-repeat;
    left: 23px;
}
.promo-banner:before {
    left: initial;
    right: 23px;
    top: 0;
    bottom: initial;
    transform: scaleX(-1);
    transform: rotate(180deg);
}

/* ===== NAV ACTIVE ===== */
.nav-link.active { 
    border-bottom: 2px solid #000; 
    padding-bottom: 2px; 
    font-weight: 700;
}

/* ===== SOCIAL ICONS ===== */
.social-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease;
}
.social-icon:hover { transform: scale(1.15); }

/* ===== PRICE STRIKETHROUGH ===== */
.price-old { text-decoration: line-through; }

/* ===== STREAMING BADGE ===== */
.stream-badge {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 2px 6px; border-radius: 3px;
    font-size: 0.55rem; font-weight: 700;
    line-height: 1.2;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #e6007e; border-radius: 4px; }

/* ===== FOOTBALL PATTERN HERO ===== */
.football-decoration {
    position: absolute;
    width: 180px; height: 180px;
    border: 3px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    top: 10%; right: 25%;
}
.football-decoration::before {
    content: '';
    position: absolute;
    width: 120px; height: 120px;
    border: 2px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* ===== PLAN TOP GRADIENTS ===== */
.plan-top-teal {
    background: linear-gradient(135deg, #00d4aa 0%, #00bcd4 100%);
}
.plan-top-navy {
    background: linear-gradient(135deg, #0b1730 0%, #1a2744 100%);
}
.plan-top-purple {
    background: linear-gradient(135deg, #7b1fa2 0%, #c2185b 100%);
}
.plan-top-orange {
    background: linear-gradient(135deg, #e65100 0%, #ff9800 100%);
}

/* ===== HERO PLAYER AREA ===== */
.hero-player-area {
    position: absolute;
    right: 0; bottom: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(to left, rgba(0,40,30,0.3) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.hero-player-area .player-silhouette {
    width: 100%;
    height: 90%;
    background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.02) 100%);
    clip-path: polygon(30% 0%, 70% 0%, 85% 20%, 75% 45%, 90% 60%, 70% 100%, 30% 100%, 10% 60%, 25% 45%, 15% 20%);
}

/* ===== IZZI HERO LOGO ===== */
.izzi-hero-logo {
    position: absolute;
    right: 30px; bottom: 30px;
    z-index: 10;
}
.izzi-dots {
    display: inline-block;
    width: 6px; height: 6px;
    background: #e6007e;
    border-radius: 1px;
    margin: 1px;
}

/* ===== RESPONSIVE SLIDER PLANS ===== */
@media (max-width: 768px) {
    .plans-grid { flex-wrap: wrap; }
    .plan-card { width: 100% !important; max-width: 340px; margin: 0 auto; }
}