/* Header Slider CSS */
.header-slider {
    position: relative;
    width: 100%;
    max-width: 1006px;
    height: 180px;
    margin: 0 auto;
    overflow: hidden;
    background: #000;
}

.header-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.header-slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 800ms cubic-bezier(0.95, 0.05, 0.795, 0.035);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.header-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navegación (opcional) */
.header-slider-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.header-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.header-slider-dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

/* Flechas de navegación */
.header-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    display: none; /* Ocultas por defecto como en el original */
}

.header-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.header-slider-arrow.prev {
    left: 10px;
}

.header-slider-arrow.next {
    right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-slider {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .header-slider {
        height: 80px;
    }
}
