/**
 * Estilos para el bloque Course Testimonials (Testimonios de Estudiantes)
 */

.wp-block-gutenberg-test-course-testimonials {
    padding: 80px 0;
    position: relative;
}

.wp-block-gutenberg-test-course-testimonials .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.wp-block-gutenberg-test-course-testimonials .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.wp-block-gutenberg-test-course-testimonials .section-title h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.wp-block-gutenberg-test-course-testimonials .section-title p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Estilo para visualización en cuadrícula */
.wp-block-gutenberg-test-course-testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Tarjeta de testimonio */
.wp-block-gutenberg-test-course-testimonials .testimonial-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    border-top: 4px solid;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Cita del testimonio */
.wp-block-gutenberg-test-course-testimonials .testimonial-quote {
    margin-bottom: 20px;
    position: relative;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-quote:before {
    content: '\201C';
    font-family: Arial, sans-serif;
    position: absolute;
    top: -15px;
    left: -5px;
    font-size: 60px;
    opacity: 0.15;
    line-height: 1;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-quote p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Calificación con estrellas */
.wp-block-gutenberg-test-course-testimonials .testimonial-rating {
    margin-bottom: 20px;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-rating i {
    font-size: 16px;
    margin-right: 3px;
}

/* Autor del testimonio */
.wp-block-gutenberg-test-course-testimonials .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-avatar {
    margin-right: 15px;
    flex-shrink: 0;
}

.wp-block-gutenberg-test-course-testimonials .avatar-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #f5f5f5;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-info {
    flex-grow: 1;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    line-height: 1.3;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-meta {
    font-size: 14px;
    color: #777;
}

.wp-block-gutenberg-test-course-testimonials .separator {
    margin: 0 5px;
    opacity: 0.5;
}

/* Estilos para videos de testimonios */
.wp-block-gutenberg-test-course-testimonials .testimonial-video {
    width: 100%;
    margin-bottom: 20px;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wp-block-gutenberg-test-course-testimonials .testimonial-video .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

/* Layout vertical para videos (video arriba, información abajo) */
.wp-block-gutenberg-test-course-testimonials .testimonial-video-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-video-layout .testimonial-video {
    flex-shrink: 0;
    margin-bottom: 15px;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-info-video {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-info-video .testimonial-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    line-height: 1.3;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-info-video .testimonial-meta {
    font-size: 14px;
    color: #777;
}

/* Ajustes cuando hay video en lugar de avatar */
.wp-block-gutenberg-test-course-testimonials .testimonial-author.has-video {
    flex-direction: column;
    align-items: flex-start;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-info.no-avatar {
    margin-left: 0;
    margin-top: 10px;
}

/* Estilos para la variación de solo video */
.wp-block-gutenberg-test-course-testimonials .testimonial-card.video-only {
    padding: 0;
    overflow: hidden;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-card.video-only .testimonial-video {
    margin-bottom: 0;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-card.video-only .testimonial-video .video-wrapper {
    border-radius: 10px 10px 0 0;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-card.video-only .testimonial-content {
    padding: 25px;
}

/* Variación con video como fondo del testimonio */
.wp-block-gutenberg-test-course-testimonials .testimonial-card.video-background {
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-card.video-background .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    border-radius: 10px;
    z-index: 1;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-card.video-background .testimonial-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 25px;
}

.wp-block-gutenberg-test-course-testimonials .testimonial-card.video-background .testimonial-quote p,
.wp-block-gutenberg-test-course-testimonials .testimonial-card.video-background .testimonial-name,
.wp-block-gutenberg-test-course-testimonials .testimonial-card.video-background .testimonial-location,
.wp-block-gutenberg-test-course-testimonials .testimonial-card.video-background .testimonial-year {
    color: white !important;
}

/* Estilos específicos para carrusel */
.wp-block-gutenberg-test-course-testimonials .testimonials-carousel {
    position: relative;
    padding-bottom: 60px;
}

.wp-block-gutenberg-test-course-testimonials .swiper-container {
    overflow: hidden;
}

.wp-block-gutenberg-test-course-testimonials .swiper-slide {
    height: auto;
    padding: 10px 5px;
}

.wp-block-gutenberg-test-course-testimonials .swiper-pagination {
    bottom: 0;
}

.wp-block-gutenberg-test-course-testimonials .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
}

.wp-block-gutenberg-test-course-testimonials .swiper-button-next,
.wp-block-gutenberg-test-course-testimonials .swiper-button-prev {
    color: inherit;
    top: calc(50% - 30px);
}

.wp-block-gutenberg-test-course-testimonials .swiper-button-next:after,
.wp-block-gutenberg-test-course-testimonials .swiper-button-prev:after {
    font-size: 24px;
}

/* Ajustes responsivos para videos */
@media (max-width: 768px) {
    .wp-block-gutenberg-test-course-testimonials .testimonial-video .video-wrapper {
        padding-bottom: 60%; /* Aspect ratio más cuadrado en móvil */
    }
    
    .wp-block-gutenberg-test-course-testimonials .testimonial-card.video-background {
        min-height: 400px;
    }
    
    .wp-block-gutenberg-test-course-testimonials .testimonial-info-video .testimonial-name {
        font-size: 16px;
    }
    
    .wp-block-gutenberg-test-course-testimonials .testimonial-info-video .testimonial-meta {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .wp-block-gutenberg-test-course-testimonials .testimonial-video .video-wrapper {
        padding-bottom: 65%;
    }
}

/* Media queries para responsividad */
@media (max-width: 992px) {
    .wp-block-gutenberg-test-course-testimonials .section-title h2 {
        font-size: 1.8rem;
    }
    
    .wp-block-gutenberg-test-course-testimonials .section-title p {
        font-size: 1rem;
    }
    
    .wp-block-gutenberg-test-course-testimonials .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .wp-block-gutenberg-test-course-testimonials {
        padding: 60px 0;
    }
    
    .wp-block-gutenberg-test-course-testimonials .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .wp-block-gutenberg-test-course-testimonials .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
