/* ==========================================
   TESTIMONIALS SECTION - RESPONSIVE
   ========================================== */

/* TABLET */
@media (max-width: 1100px) {
    .testimonials-wrapper {
        padding: 60px 20px;
    }
    
    .testimonials-card {
        max-width: 900px;
        height: 450px;
        padding: 0 70px;
    }
    
    .testimonials-image-section {
        flex: 0 0 350px;
    }
    
    .testimonials-img-container {
        width: 300px;
        height: 300px;
    }
    
    .testimonials-content-section {
        padding: 50px 20px 50px 20px;
    }
    
    .testimonials-quote-row h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .testimonials-prev {
        left: 12px;
        width: 45px;
        height: 45px;
    }
    
    .testimonials-next {
        right: 12px;
        width: 45px;
        height: 45px;
    }
    
    .testimonials-arrow-icon {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================
   MOBILE - Layout vertical con SWIPE
   ========================================== */
@media (max-width: 768px) {
    
    .testimonials-wrapper {
        padding: 40px 15px;
        min-height: auto;
    }
    
    .testimonials-card {
        flex-direction: column;
        height: auto;
        max-width: 500px;
        padding: 30px;
        position: relative;
        touch-action: pan-y; /* Permitir swipe horizontal */
    }
    
    /* OCULTAR BOTONES en mobile */
    .testimonials-nav-arrow {
        display: none !important;
    }
    
    /* Imagen arriba */
    .testimonials-image-section {
        flex: none;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .testimonials-img-container {
        width: 100%;
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    /* Contenido */
    .testimonials-content-section {
        flex: none;
        width: 100%;
        padding: 0;
        gap: 25px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .testimonials-header-row {
        font-size: 12px;
        letter-spacing: 1.5px;
        justify-content: center;
        border: none; /* QUITAR LÍNEA */
    }
    
    .testimonials-isotipo {
        width: 16px;
        height: 16px;
    }
    
    .testimonials-quote-row {
        border: none; /* QUITAR LÍNEA */
    }
    
    .testimonials-quote-row h2 {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
        text-align: center;
        border: none; /* QUITAR LÍNEA */
    }
    
    .testimonials-footer-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
        margin-top: 20px;
        border: none; /* QUITAR LÍNEA */
    }
    
    .testimonials-author-info {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .testimonials-dash {
        font-size: 20px;
        border: none; /* QUITAR LÍNEA */
    }
    
    .testimonials-name-box h4 {
        font-size: 16px;
    }
    
    .testimonials-name-box p {
        font-size: 12px;
    }
    
    .testimonials-slide-number {
        font-size: 18px;
    }
}

/* MOBILE PEQUEÑO */
@media (max-width: 480px) {
    
    .testimonials-wrapper {
        padding: 40px 15px;
    }
    
    .testimonials-card {
        padding: 25px 20px;
    }
    
    .testimonials-img-container {
        max-width: 250px;
        height: 250px;
    }
    
    .testimonials-quote-row h2 {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
    }
    
    .testimonials-header-row {
        font-size: 11px;
        margin-bottom: 20px;
    }
}