/* Slider Base */
.slider-container {
    height: calc(80vh - 56px);
    max-height: 736px;
    width: 90vw;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.slider {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Captions y Marcas */
.caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    z-index: 2;
}

.caption span:first-child {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
}

/* Icono Aniversario con Pulso */

.aniversario-img-slider-wrapper {
    position: absolute;
    top: 15%;
    left: 5%;
    width: clamp(80px, 10vw, 120px);
    z-index: 50;
    animation: aniversario-pulse 2s infinite ease-in-out;
}

@keyframes aniversario-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    }
}

@media (max-width: 768px) {
    .slider-container {
        width: 100vw;
        border-radius: 0;
        height: 60vh;
    }

    .caption span:first-child {
        font-size: 1.5rem;
    }
}

/* Navigation Buttons (Arrows) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: rgba(37, 99, 235, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Indicators (Dots) */
.slider-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}

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

.slider-indicators button.active {
    background: #2563eb;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.slider-indicators button:hover {
    background: rgba(255, 255, 255, 0.8);
}