
                    /*Boton ver más - seccion Testimonios=================================================================*/
                    .btn-ver-mas-container {
                        display: flex;
                        justify-content: center;
                        margin-top: 80px;
                        margin-bottom: 40px;
                    }

                    .btn-ver-mas {
                        background-color: #213769;
                        color: white;
                        border: none;
                        padding: 12px 40px;
                        font-size: 16px;
                        font-weight: 600;
                        border-radius: 25px;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
                    }

                    .btn-ver-mas:hover {
                        background-color: #5f8db2;
                        transform: translateY(-2px);
                    }

                    .btn-ver-mas:active {
                        transform: translateY(0);
                    }

                    /* Sección Altamente Calificados =========================================================================*/
                    .seccion-altamente-calificados {
                        position: relative;
                        overflow: hidden;
                        background-image: url('../images/que_te_duele/sumarios-16.jpg');
                        background-size: cover;
                        background-position: center;
                        background-repeat: no-repeat;
                        background-attachment: fixed; /* ESTA LÍNEA CREA EL EFECTO PARALLAX */
                    }

                    .seccion-altamente-calificados::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        right: 0;
                        bottom: 0;
                        background: rgba(0, 0, 0, 0.1); /* Overlay opcional para mejorar legibilidad */
                        z-index: 1;
                    }

                    .seccion-altamente-calificados > * {
                        position: relative;
                        z-index: 2;
                    }

                    .seccion-altamente-calificados .no-padding {
                        padding: 0;
                    }

                    .seccion-altamente-calificados .no-margin {
                        margin: 0;
                    }

                    /* Eliminar columna de imagen ya que ahora es el fondo */
                    .imagen-columna {
                        display: none;
                    }

                    /* Columna del contenido */
                    .contenido-columna {
                        padding: 80px 60px;
                        display: flex;
                        align-items: center;
                        min-height: 500px;
                        margin-left: auto;
                    }

                    .contenido-wrapper {
                        width: 100%;
                    }

                    /* Título */
                    .titulo-calificados {
                        font-size: 72px;
                        font-weight: 700;
                        color: #213769;
                        margin-bottom: 30px;
                        line-height: 1;
                        text-transform: none;
                        text-align: center;
                    }

                    /* Texto descriptivo */
                    .texto-calificados {
                        font-size: 16px;
                        color: #2c3e50;
                        line-height: 1.8;
                        margin-bottom: 40px;
                        text-align: center;
                    }

                    /* Logos de certificaciones */
                    .logos-certificaciones {
                        align-items: center;
                        justify-content: flex-start;
                        text-align: center;
                    }

                    .logos-certificaciones img {
                        max-width: 80%;
                        height: auto;
                        transition: opacity 0.3s ease;
                    }

                    /* Responsive para los logos */
                    @media (max-width: 767px) {
                        .logos-certificaciones {
                            justify-content: center;
                        }
                        
                        .logos-certificaciones img {
                            max-width: 90%;
                        }
                    }

                    /* Fila de estadísticas */
                    .estadisticas-row {
                        display: flex;
                        flex-wrap: wrap;
                    }

                    .caja-estadistica {
                        padding: 30px 20px;
                        text-align: center;
                        min-height: 180px;
                        height: 180px;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        transition: transform 0.3s ease;
                    }

                    .caja-estadistica:hover {
                        transform: translateY(-5px);
                    }

                    /* Colores de las cajas */
                    .caja-azul-oscuro {
                        background-color: #213769;
                    }

                    .caja-azul-claro {
                        background-color: #5f8db2;
                    }

                    .caja-verde-olivo {
                        background-color: #a0a082;
                    }

                    .caja-amarillo {
                        background-color: #ccce8f;
                    }

                    /* Números de estadísticas */
                    .numero-estadistica {
                        font-size: 24px;
                        font-weight: 500;
                        color: #ffffff;
                        margin-bottom: 10px;
                        line-height: 1.3;
                        text-transform: none;
                    }

                    .caja-amarillo .numero-estadistica,
                    .caja-verde-olivo .numero-estadistica {
                        color: #2c3e50;
                    }

                    /* Texto de estadísticas */
                    .texto-estadistica {
                        font-size: 16px;
                        color: #ffffff;
                        margin: 0;
                        line-height: 1.4;
                    }

                    .caja-amarillo .texto-estadistica,
                    .caja-verde-olivo .texto-estadistica {
                        color: #2c3e50;
                    }

                    /* Línea decorativa en las cajas */
                    .caja-estadistica::after {
                        content: '';
                        display: block;
                        width: 50px;
                        height: 3px;
                        background-color: #ffffff;
                        margin: 0 auto 20px;
                    }

                    .caja-azul-oscuro::after{
                        background-color: #5f8db2;
                    }

                    .caja-azul-claro::after{
                        background-color: #213769;
                    }
                    .caja-verde-olivo::after{
                        background-color: #ccce8f;
                    }
                    .caja-amarillo::after{
                        background-color: #a0a082;
                    }

                    /* Botón */
                    .boton-container {
                        padding: 50px 0;
                    }

                    .btn-conoce-especialistas {
                        display: inline-block;
                        padding: 15px 50px;
                        background-color: transparent;
                        border: 2px solid #213769;
                        color: #213769;
                        font-size: 16px;
                        font-weight: 600;
                        text-decoration: none;
                        text-transform: uppercase;
                        letter-spacing: 1px;
                        transition: all 0.3s ease;
                    }

                    .btn-conoce-especialistas:hover {
                        background-color: #213769;
                        color: #fff;
                        transform: translateY(-2px);
                        box-shadow: 0 5px 15px rgba(91, 155, 213, 0.3);
                    }

                    /* Responsive */
                    @media (max-width: 991px) {
                        .contenido-columna {
                            min-height: auto;
                            padding: 60px 40px;
                        }
                        
                        .titulo-calificados {
                            font-size: 42px;
                        }
                    }

                    @media (max-width: 767px) {
                        .contenido-columna {
                            padding: 40px 20px;
                        }
                        
                        .titulo-calificados {
                            font-size: 36px;
                            text-align: center;
                        }
                        
                        .texto-calificados {
                            text-align: center;
                            font-size: 14px;
                        }
                        
                        .texto-calificados br {
                            display: none;
                        }
                        
                        .logos-certificaciones {
                            justify-content: center;
                        }
                        
                        .logos-certificaciones img {
                            height: 45px;
                        }
                        
                        .caja-estadistica {
                            min-height: 150px;
                            padding: 30px 20px;
                        }
                        
                        .numero-estadistica {
                            font-size: 24px;
                        }
                        
                        .texto-estadistica {
                            font-size: 14px;
                        }
                    }

                    @media (max-width: 575px) {
                        .titulo-calificados {
                            font-size: 32px;
                        }
                        
                        .btn-conoce-especialistas {
                            padding: 12px 30px;
                            font-size: 14px;
                        }
                    }

                    /* Fila de estadísticas con márgenes laterales */
                    .estadisticas-row {
                        display: flex;
                        flex-wrap: wrap;
                        /* ELIMINAR max-width y margin: 0 auto */
                        padding: 0 40px; /* Espacio lateral */
                    }

                    /* Responsive para los márgenes */
                    @media (max-width: 991px) {
                        .estadisticas-row {
                            padding: 0 30px;
                        }
                    }

                    @media (max-width: 767px) {
                        .estadisticas-row {
                            padding: 0 20px;
                        }
                    }

                    @media (max-width: 575px) {
                        .estadisticas-row {
                            padding: 0 15px;
                        }
                    }

                    



                    /*Boton ver más - seccion Lo más nuevo=================================================================*/
                    .btn-ver-mas2 {
                            background-color: #fff;
                            color: #213769;
                            border: none;
                            padding: 12px 40px;
                            font-size: 16px;
                            font-weight: 600;
                            border-radius: 25px;
                            cursor: pointer;
                            transition: all 0.3s ease;
                            box-shadow: 0 2px 8px rgba(0, 123, 255, 0.2);
                        }

                        .btn-ver-mas2:hover {
                            background-color: #5f8db2;
                            transform: translateY(-2px);
                        }

                        .btn-ver-mas2:active {
                            transform: translateY(0);
                        }