/* Custom Carousel Styles */
.custom-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.custom-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.custom-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-carousel-slide.active {
    position: relative;
    opacity: 1;
    z-index: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.custom-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 50px;
    text-align: center;
}

.slide-content-inner {
    animation: slideContentIn 0.8s ease-out;
}

@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-subtitle {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 20px;
    color: #FDB913;
}

.slide-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px;
    color: #FFFFFF;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slide-button {
    display: inline-block;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1E3B90;
    background-color: #FDB913;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 185, 19, 0.4);
}

.slide-button:hover {
    color: #FFFFFF;
    background-color: #1E3B90;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 59, 144, 0.5);
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
    background-color: rgba(253, 185, 19, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dot.active {
    background-color: #FDB913;
    border-color: #FFFFFF;
    transform: scale(1.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .slide-content {
        padding: 0 30px;
    }

    .slide-title {
        font-size: 42px;
    }

    .slide-subtitle {
        font-size: 24px;
    }

    .slide-description {
        font-size: 16px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 20px;
    }

    .carousel-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 20px;
    }

    .slide-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .slide-subtitle {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .slide-description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .slide-button {
        padding: 15px 35px;
        font-size: 14px;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 20px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 24px;
    }

    .slide-subtitle {
        font-size: 18px;
    }

    .slide-description {
        font-size: 14px;
    }

    .slide-button {
        padding: 12px 30px;
        font-size: 13px;
    }
}

/* Mario Torres */
