/* Carousel Styles para todos los planes - Genérico */

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    padding: 50px 40px 70px;
    color: white;
    z-index: 10;
}

.carousel-caption h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
    color: #ffffff;
}

.carousel-caption p {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9);
    line-height: 1.5;
}

/* Ajustar altura del carousel para mejor proporción - GENÉRICO */
.carousel-video-wrapper .relative.overflow-hidden {
    height: 550px !important;
}

/* Personalizar los controles del carousel */
[data-carousel-prev]:hover, 
[data-carousel-next]:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    transform: scale(1.1);
}

[data-carousel-prev] span,
[data-carousel-next] span {
    background: rgba(126, 34, 206, 0.7) !important;
}

[data-carousel-prev]:hover span,
[data-carousel-next]:hover span {
    background: rgba(126, 34, 206, 0.9) !important;
}

/* Personalizar los indicadores */
[data-carousel-slide-to] {
    background: rgba(255, 255, 255, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
}

[data-carousel-slide-to][aria-current="true"] {
    background: #7e22ce !important;
    border-color: #7e22ce !important;
    transform: scale(1.2);
}

/* Sección del carousel con padding - GENÉRICO para todos los planes */
#secure-base-carousel,
#plan-carousel,
#fast-grow-carousel,
#transform-carousel,
#enterprise-carousel {
    padding: 80px 5%;
    margin-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .carousel-video-wrapper {
        max-width: 900px;
    }
    
    .carousel-video-wrapper .relative.overflow-hidden {
        height: 500px !important;
    }
}

@media (max-width: 768px) {
    .carousel-video-wrapper {
        max-width: 100%;
    }
    
    .carousel-video-wrapper .relative.overflow-hidden {
        height: 400px !important;
    }
    
    .carousel-caption {
        padding: 30px 20px 60px;
    }
    
    .carousel-caption h3 {
        font-size: 22px;
    }
    
    .carousel-caption p {
        font-size: 15px;
    }
    
    #secure-base-carousel,
    #plan-carousel,
    #fast-grow-carousel,
    #transform-carousel,
    #enterprise-carousel {
        padding: 40px 5%;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .carousel-video-wrapper .relative.overflow-hidden {
        height: 320px !important;
    }
    
    .carousel-caption h3 {
        font-size: 18px;
    }
    
    .carousel-caption p {
        font-size: 14px;
    }
}