/* index.css */
/* Hero Section único para el index */
.hero-video {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 5rem;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.8);
    color: var(--primary-color);
    font-family: var(--font-metal);
    letter-spacing: 3px;
}

/* Social bar flotante (solo index) */
.social-bar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* Galería específica del index */
.gallery-item {
    height: 200px;
    overflow: hidden;
}

/* Responsive específico */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .social-bar {
        display: none;
    }
}
/* Efectos Específicos del Index */
/* Hero Section - Título con brillo */
.hero-content h1 {
    text-shadow: 0 0 10px var(--primary-color),
                 0 0 20px var(--accent-color),
                 0 0 30px rgba(255, 0, 255, 0.6);
    animation: title-glow 2s ease-in-out infinite alternate;
}

@keyframes title-glow {
    from {
        text-shadow: 0 0 5px var(--primary-color),
                     0 0 10px rgba(255, 69, 0, 0.8);
    }
    to {
        text-shadow: 0 0 10px var(--primary-color),
                     0 0 20px var(--accent-color),
                     0 0 30px rgba(255, 0, 255, 0.6);
    }
}

/* Social Icons - Efecto neon */
.social-icon {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-icon:hover {
    box-shadow: 0 0 10px var(--primary-color),
                0 0 20px var(--accent-color);
    transform: scale(1.1);
}
/* Countdown Styles */
.countdown-container {
    text-align: center;
    margin-top: 2rem;
    animation: pulse 3s infinite alternate;
}

.countdown-title {
    font-family: var(--font-metal);
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(156, 6, 6, 0.7);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-size: 2rem;
}

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

.countdown-item {
    position: relative;
    width: 10em;
}

.countdown-number {
    display: block;
    font-family: var(--font-metal);
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px var(--primary-color);
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
    min-width: 80px;
    position: relative;
    overflow: hidden;
}

.countdown-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent,
        transparent,
        rgba(255, 0, 0, 0.3),
        transparent
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

.countdown-label {
    display: block;
    font-family: var(--font-metal);
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-top: 0.3rem;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

@keyframes shine {
    0% {
        transform: rotate(30deg) translate(-30%, -30%);
    }
    100% {
        transform: rotate(30deg) translate(30%, 30%);
    }
}

@media (max-width: 768px) {
    .countdown {
        gap: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
        min-width: 60px;
    }
    
    .countdown-title {
        font-size: 1.2rem;
    }
}
@media (max-width: 576px) {
    .countdown {
        gap: 0.5rem;
    }
    .countdown-number {
        font-size: 1.5rem;
        min-width: 50px;
        padding: 0.3rem 0.5rem;
    }
    .countdown-label {
        font-size: 0.7rem;
    }
}
/* Ocultar ambos videos por defecto */
.desktop-video, .mobile-video {
    display: none;
    width: 100%;
    height: auto;
}

/* Mostrar solo el correcto según el tamaño de pantalla */
@media (min-width: 769px) {
    .desktop-video {
        display: block;
        width: 100vw;
    }
}

@media (max-width: 768px) {
    .mobile-video {
        display: block;
        width: 100vw;
    }
}