/* Sección de Testimonios */
        .seccion-testimonios {
            padding: 80px 0;
            background-color: #f8f8f8;
        }

        .titulo-testimonios {
            font-size: 72px;
            font-weight: 700;
            color: #213769;
            margin-bottom: 15px;
            text-transform: none;
        }

        .subtitulo-testimonios {
            font-size: 16px;
            color: #000;
            margin-bottom: 60px;
            text-transform: none;
        }

        /* Contenedor principal */
        .testimonios-container {
            max-width: 950px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Grid de testimonios - SOLUCIÓN AL SOLAPAMIENTO */
        .testimonios-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 30px;
            grid-auto-rows: minmax(auto, auto); /* Altura automática para cada fila */
        }

        .testimonio-item {
            width: 100%;
            height: 100%; /* Ocupa toda la altura de su celda */
        }

        .video-wrapper {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            width: 100%;
            height: 100%; /* Ocupa toda la altura disponible */
            display: flex;
            flex-direction: column;
        }

        /* Contenedor del video */
        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 177.78%;
            height: 0;
            overflow: hidden;
            background: #000;
            flex-shrink: 0; /* No se encoge */
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .testimonio-info {
            padding: 16px;
            background: #fff;
            flex: 1 1 auto; /* Crece y se encoge según sea necesario */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonio-nombre {
            display: inline-block;
            background: #F1862D;
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            box-shadow: 0 3px 10px rgba(255, 107, 53, 0.25);
            flex-shrink: 0; /* No se encoge */
        }

        /* Responsive Design */

        /* Desktop grande (1200px - 1400px) */
        @media (min-width: 1200px) and (max-width: 1399px) {
            .testimonios-grid {
                gap: 60px;
            }
            
            .testimonio-info {
                padding: 15px;
            }
        }

        /* Tablets horizontal y laptops pequeñas (992px - 1199px) - 3 COLUMNAS */
        @media (max-width: 1199px) {
            .testimonios-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 50px;
            }
            
            .titulo-testimonios {
                font-size: 42px;
            }
            
            .video-container {
                padding-bottom: 180%;
            }
        }

        /* Tablets (768px - 991px) - 2 COLUMNAS */
        @media (max-width: 991px) {
            .seccion-testimonios {
                padding: 60px 0;
            }
            
            .testimonios-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .titulo-testimonios {
                font-size: 36px;
            }
            
            .subtitulo-testimonios {
                font-size: 16px;
                margin-bottom: 40px;
            }
            
            .testimonio-info {
                padding: 14px;
            }
        }

        /* Móviles horizontal (576px - 767px) - 2 COLUMNAS */
        @media (max-width: 767px) {
            .seccion-testimonios {
                padding: 50px 0;
            }
            
            .testimonios-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .titulo-testimonios {
                font-size: 32px;
            }
            
            .video-container {
                padding-bottom: 175%;
            }
            
            .testimonio-info {
                padding: 12px;
            }
            
            .testimonio-nombre {
                font-size: 10px;
                padding: 5px 10px;
            }
        }

        /* Móviles verticales (menos de 576px) - 1 COLUMNA */
        @media (max-width: 575px) {
            .testimonios-container {
                padding: 0 10px;
            }
            
            .testimonios-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .titulo-testimonios {
                font-size: 28px;
            }
            
            .subtitulo-testimonios {
                font-size: 15px;
                margin-bottom: 35px;
            }
            
            .video-container {
                padding-bottom: 177.78%;
            }
            
            .testimonio-info {
                padding: 14px;
            }
            
            .testimonio-nombre {
                font-size: 10px;
            }
        }

        /* Móviles muy pequeños (menos de 400px) */
        @media (max-width: 399px) {
            .titulo-testimonios {
                font-size: 26px;
            }
            
            .subtitulo-testimonios {
                font-size: 14px;
            }
            
        }

        .owl-bg-img[style*="testimonio.jpg"] {
                        position: relative;
                    }

                    .owl-bg-img[style*="testimonio.jpg"]::after {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: rgba(0, 0, 0, 0.3); /* Blanco con 30% de opacidad */
                        pointer-events: none;
                    }









        /* Título del slider - Tamaño por defecto */
                                            .slider-text-middle span.alt-font {
                                                font-size: 72px !important;
                                            }

                                            /* Tablets y pantallas medianas (menor a 1200px) */
                                            @media (max-width: 1199px) {
                                                .slider-text-middle span.alt-font {
                                                    font-size: 60px !important;
                                                }
                                            }

                                            /* Tablets (menor a 992px) */
                                            @media (max-width: 991px) {
                                                .slider-text-middle span.alt-font {
                                                    font-size: 50px !important;
                                                }
                                            }

                                            /* Móviles horizontal (menor a 768px) */
                                            @media (max-width: 767px) {
                                                .slider-text-middle span.alt-font {
                                                    font-size: 40px !important;
                                                }
                                            }

                                            /* Móviles verticales (menor a 576px) */
                                            @media (max-width: 575px) {
                                                .slider-text-middle span.alt-font {
                                                    font-size: 32px !important;
                                                }
                                            }

                                            /* Móviles muy pequeños (menor a 400px) */
                                            @media (max-width: 399px) {
                                                .slider-text-middle span.alt-font {
                                                    font-size: 28px !important;
                                                }
                                            }




                                            