/* Video slider */
.video-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    z-index: 1;
    overflow: hidden;
}

.video-slider .video-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-slider::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(to top,
            rgba(229, 228, 181, 0.4) 0%,
            rgba(229, 228, 181, 0.1) 25%,
            transparent 50%);
    z-index: 2;
    pointer-events: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.video-slider .video-slide.active {
    display: block;
}

.video-slider .video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Video section */
.video-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

/* Contenedor de botones del slider */
.slider-buttons {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
    z-index: 5;
    opacity: 0;
    animation: fadeUpButtons 1s ease forwards;
    animation-delay: 1s;
}

.slider-btn {
    padding: 15px 30px;
    background-color: #1b3241;
    color: #f5f5ea;
    text-decoration: none;
    border-radius: 25px;
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #1b3241;
}

.slider-btn:hover {
    background-color: transparent;
    border: 2px solid #1b3241;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(27, 50, 65, 0.2);
}

@keyframes fadeUpButtons {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}