/* Carrusel de Eventos */
.eventos-carousel-container {
    width: 100%;
    margin: 0 auto;
}

.eventos-carousel {
    overflow-x: hidden;
    overflow-y: visible;
    margin-bottom: 30px;
}

.eventos-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
    padding-top: 9px;
    overflow: visible;
}

.carousel-slide {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
    display: flex;
    justify-content: center;
}

/* Navegación del carrusel */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Flechas de navegación */
.carousel-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(227, 64, 40, 0.15);
    border: 2px solid rgba(227, 64, 40, 0.4);
    color: #e34028;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-arrow:hover:not(:disabled) {
    background: rgba(227, 64, 40, 0.3);
    border-color: rgba(227, 64, 40, 0.7);
    transform: scale(1.1);
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.3);
}

.carousel-arrow i {
    font-size: 1.1rem;
}

/* Puntos de navegación */
.carousel-dots {
    display: flex;
    gap: 10px;
    padding: 0 15px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(227, 64, 40, 0.5);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #e34028;
    width: 12px;
    height: 12px;
    box-shadow: 0 0 10px rgba(227, 64, 40, 0.5);
}

/* Responsive */
@media (max-width: 1400px) {
    .carousel-slide {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 1024px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .carousel-navigation {
        gap: 15px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
}
