/**
 * Testimonios Slider Widget Styles
 * Elevate Elements for Elementor
 */

/* Container principal */
.elevate-testimonials-slider {
    position: relative;
    width: 100%;
}

/* Card del testimonio */
.elevate-testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Imagen principal */
.elevate-testimonial-main-image {
    width: 100%;
    overflow: hidden;
}

.elevate-testimonial-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contenido del testimonio (CAJITA) */
.elevate-testimonial-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    border-style: solid;
}

/* Header con avatar */
.elevate-testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Avatar */
.elevate-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 12px;
}

.elevate-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info del autor */
.elevate-testimonial-info {
    display: flex;
    flex-direction: column;
}

.elevate-testimonial-name {
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    line-height: 1.3;
}

.elevate-testimonial-title {
    font-size: 14px;
    color: #666666;
    line-height: 1.3;
}

/* Texto del testimonio */
.elevate-testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444444;
    flex: 1;
}

/* Swiper Navigation */
.elevate-testimonials-slider .swiper-button-prev,
.elevate-testimonials-slider .swiper-button-next {
    color: #333333;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.elevate-testimonials-slider .swiper-button-prev::after,
.elevate-testimonials-slider .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.elevate-testimonials-slider .swiper-button-prev:hover,
.elevate-testimonials-slider .swiper-button-next:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Swiper Pagination */
.elevate-testimonials-slider .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.elevate-testimonials-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #CCCCCC;
    opacity: 1;
}

.elevate-testimonials-slider .swiper-pagination-bullet-active {
    background: #333333;
}

/* Botones de navegación personalizados */
.elevate-testimonials-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.elevate-testimonials-nav button {
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0;
}

.elevate-testimonials-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Efecto marquesina - transición suave */
.elevate-testimonials-slider[data-marquee="true"] .swiper-wrapper {
    transition-timing-function: linear !important;
}

.elevate-testimonials-slider[data-marquee="true"] .swiper-slide {
    transition-timing-function: linear !important;
}

/* Responsive */
@media (max-width: 768px) {
    .elevate-testimonial-content {
        padding: 15px;
    }
    
    .elevate-testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    
    .elevate-testimonial-name {
        font-size: 14px;
    }
    
    .elevate-testimonial-title {
        font-size: 12px;
    }
    
    .elevate-testimonial-text {
        font-size: 14px;
    }
}


