:root {
    --color-primary: #1d1d1f;
    --color-secondary: #86868b;
    --color-accent: #0071e3;
    --color-gold: #c9a661;
    --color-white: #ffffff;
    --color-light-gray: #f5f5f7;
    --color-dark-gray: #424245;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--color-white);
    color: var(--color-primary);
.exclusivity-images {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    padding: 1.25rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.12);
}

.exclusivity-images .single-feature-img {
    width: 100%;
    height: auto;
    max-width: 520px;
    border-radius: 1rem;
    object-fit: contain;
}

/* Make banner corners curved (container clips, but add for safety) */
.banner-img {
    border-radius: 1.25rem;
}
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navegación */
/* Navegación */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
}

.nav-logo-mobile {
    display: none;
}

.nav-logo-desktop {
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-cta {
    background: var(--color-gold);
    color: var(--color-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background: var(--color-white);
    color: #FF0000;
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

/* Hero Section con Estadio e Imágenes Laterales */
.hero-estadio {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.estadio-bg {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 100%;
    height: auto;
    min-height: 85%;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    object-position: center;
    filter: brightness(1);
}
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.decoracion-izq,
.decoracion-der {
    position: absolute;
    width: auto;
    z-index: 2;
    object-fit: contain;
    opacity: 0;
}

.decoracion-izq {
    left: 0;
    top: 0;
    height: 100%;
    animation: slideInFromLeft 1.2s ease-out 0.5s forwards;
}

.decoracion-der {
    right: 0;
    bottom: 0;
    height: 35%;
    animation: slideInFromRight 1.2s ease-out 0.5s forwards;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-estadio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.6) 50%,
        rgba(255, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-estadio-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 80vh;
    padding-bottom: 8rem;
}

.hero-estadio-logo {
    width: 250px;
    height: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 8px 30px rgba(228, 0, 43, 0.8));
    animation: fadeInScale 1.5s ease-out;
    display: none;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-estadio-title {
    font-family: 'Poppins', var(--font-primary);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 3rem;
    line-height: 1.05;
    color: var(--color-white);
    text-transform: uppercase;
    display: block;
    -webkit-font-smoothing: antialiased;
    text-shadow: 0 6px 22px rgba(0,0,0,0.7), 0 2px 8px rgba(255,0,0,0.45);
}

.hero-estadio-subtitle {
    font-family: 'Poppins', var(--font-primary);
    font-size: clamp(1rem, 2.2vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.95);
    display: block;
    opacity: 0.95;
}

.hero-estadio-description {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--color-gold);
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(255, 215, 0, 0.6);
    letter-spacing: 0.1em;
    display: none;
}

.hero-estadio-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: var(--color-white);
    padding: 1.2rem 3.5rem;
    border-radius: 3rem;
    font-weight: 900;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
    border: 3px solid var(--color-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    overflow: hidden;
}

.hero-estadio-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.hero-estadio-cta:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(255, 0, 0, 0.8), 
        0 0 40px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    border-color: var(--color-gold);
}

/* Hero Video Section (movida después de productos) */
.hero-video-section {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 4rem;
}

.hero-video-section .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
}

.hero-video-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-video-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Mantener estilos originales del hero para compatibilidad */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
    margin-top: -40px;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: var(--color-gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 100%);
    color: var(--color-primary);
    padding: 1rem 3rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color-gold);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(201, 166, 97, 0.4), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-cta:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 15px 50px rgba(201, 166, 97, 0.5);
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8954d 100%);
    color: var(--color-white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Exclusivity Section */
.exclusivity {
    padding: 4rem 0;
    background: var(--color-light-gray);
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--color-gold);
}

.trust-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.trust-text span {
    font-size: 0.875rem;
    color: var(--color-secondary);
}

/* Contador Copa Mundial */
.countdown-section-inline {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
}

.countdown-section {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    padding: 4rem 0;
    margin-top: 3rem;
}

.countdown-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--color-white);
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 120px;
}

.countdown-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #FF0000;
    line-height: 1;
}

.countdown-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Stats animados */
.stats-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-gray) 100%);
    padding: 4rem 0;
    margin-top: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    color: var(--color-white);
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(201, 166, 97, 0.3);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.exclusivity-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.features {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(201, 166, 97, 0.3);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature p {
    font-size: 1rem;
    color: var(--color-secondary);
}

.mascot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mascot-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.mascot-img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.single-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.single-feature-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-image: url('/static/mundial/catalog/img/fondo.png');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: repeat-y;
    position: relative;
    overflow: hidden;
}

.products > .container {
    position: relative;
    z-index: 1;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.products-header .section-title {
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Banner */
.banner-container {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    border-radius: 1.5rem;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.product-card {
    background: var(--color-white);
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 166, 97, 0.2), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(201, 166, 97, 0.3);
    border-color: var(--color-gold);
}

.product-card::after {
    content: 'VER DETALLES';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--color-white);
    text-align: center;
    padding: 3rem 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.product-card:hover::after {
    opacity: 1;
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: var(--color-light-gray);
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-prices {
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 70px;
}

.product-stock {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.stock-available {
    color: #10b981;
}

.stock-unavailable {
    color: #ef4444;
}

.product-card.out-of-stock {
    /* opacity: 0.7; */
}

.product-card.out-of-stock .product-image {
    /* filter: grayscale(50%); */
}

.stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(239, 68, 68, 0.95);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-description {
    font-size: 0.875rem;
    color: var(--color-secondary);
    line-height: 1.5;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: 1.5rem;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    color: var(--color-primary);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image-container {
    background: var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.modal-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.modal-price {
    margin-bottom: 1.5rem;
}

.modal-prices {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-prices p {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-prices .price-label {
    font-size: 1rem;
    min-width: 90px;
}

.modal-stock {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: var(--color-light-gray);
    border-radius: 8px;
    border-left: 4px solid;
}

.modal-stock .stock-available {
    color: #10b981;
}

.modal-stock .stock-unavailable {
    color: #ef4444;
}

.modal-stock span {
    display: block;
}

.modal-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.modal-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-light-gray);
    color: var(--color-primary);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.modal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #25D366;
    color: var(--color-white);
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-primary);
}

.modal-cta:hover {
    background: #20BA5A;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo-mobile {
    display: none;
}

.footer-logo-desktop {
    display: block;
}

.footer-company {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.footer-fifa-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--color-secondary);
    font-size: 0.9rem;
}

.footer-link {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-gold);
}

.footer-small {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--color-secondary);
    font-size: 0.875rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }

    .exclusivity-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-image-container {
        padding: 2rem;
    }
    
    .hero-logo {
        width: 150px;
    }
    
    /* Imágenes laterales en tablet */
    .decoracion-izq,
    .decoracion-der {
        height: 45%;
    }
    
    .hero-estadio-logo {
        width: 200px;
    }
    
    .hero-estadio-title {
        font-size: clamp(2.5rem, 7vw, 5rem);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .countdown-timer {
        gap: 1rem;
    }

    .countdown-item {
        padding: 1.5rem 1.5rem;
        min-width: 90px;
    }

    .countdown-number {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .countdown-label {
        font-size: 0.85rem;
    }

    .countdown-title {
        font-size: clamp(1.2rem, 2.5vw, 2rem);
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link-products {
        display: none;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .nav-logo-img {
        height: 40px;
    }
    
    .hero-content {
        margin-top: 0;
        padding: 1.5rem;
    }
    
    /* Imágenes laterales en móvil */
    .decoracion-izq,
    .decoracion-der {
        height: 40%;
        opacity: 1;
    }
    
    .hero-estadio {
        height: 80vh;
    }
    
    .hero-estadio-logo {
        width: 150px;
    }
    
    .hero-estadio-content {
        padding: 1rem;
    }
    
    .hero-estadio-cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .hero-video-section {
        height: 50vh;
        min-height: 400px;
    }
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-logo {
        width: 120px;
        margin-bottom: 1.5rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .availability-banner {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .availability-content h3 {
        font-size: 1.75rem;
    }
    
    .availability-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .banner-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mascot-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .modal-info {
        padding: 2rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-prices p {
        font-size: 1.4rem;
    }
    
    .modal-prices .price-label {
        font-size: 0.85rem;
        min-width: 75px;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-fifa-logo {
        width: 60px;
    }
}

@media (max-width: 600px) {
    .footer-logo-desktop {
        display: none;
    }
    
    .footer-logo-mobile {
        display: block;
    }
}

@media (max-width: 480px) {
    .nav-logo-desktop {
        display: none;
    }
    
    .nav-logo-mobile {
        display: block;
    }

    .container {
        padding: 0 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }

    .countdown-timer {
        gap: 0.75rem;
    }

    .countdown-item {
        padding: 1rem 1rem;
        min-width: 70px;
    }

    .countdown-number {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .countdown-label {
        font-size: 0.7rem;
    }
    
    .nav-container {
        padding: 1.5rem 1rem;
    }
    
    .nav-links {
        gap: 0.8rem;
    }
    
    .nav-links a {
        font-size: 0.75rem;
    }
    
    .nav-logo-img {
        height: 35px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-logo {
        width: 100px;
        margin-bottom: 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    /* Imágenes laterales muy sutiles en móvil pequeño */
    .decoracion-izq {
        height: 60%;
        opacity: 1;
    }
    
    .decoracion-der {
        height: 25%;
        opacity: 1;
    }
    
    .hero-estadio {
        height: 70vh;
        min-height: 600px;
    }
    
    .hero-estadio-logo {
        width: 120px;
    }
    
    .hero-estadio-title {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        line-height: 1.2;
        margin-bottom: 15rem;
        margin-top: 0;
    }
    
    .hero-estadio-subtitle {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }
    
    .hero-estadio-description {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
        margin-bottom: 2rem;
    }
    
    .hero-estadio-cta {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        bottom: 9rem;
    }
    
    .hero-video-section {
        height: 40vh;
        min-height: 350px;
    }
    
    .hero-video-title {
        font-size: clamp(1.75rem, 5vw, 3rem);
    }
    
    .hero-video-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}
