.testimonios{
    width: 100%;
    min-height: 80vh;
    margin: 10vh 0;
    background-color: #222222;
    padding: 120px 0;
}

.testimonios h3{
    text-align: center;
    margin-bottom: 6px;
    font-family: "Lora", sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonios hr{
    display: block;
    width: 70px;
    border: 1px solid var(--main-color);
    margin: 0 auto;
    margin-bottom: 15px;
}

.testimonios h4{
    text-align: center;
    color: #ccc;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 90px;
    font-weight: 400;
}

/*--------------------------------------------------------*/

.contenedor_slider_testimonios{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contenedor_testimonios{
    width: 86%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch; 
}

/*----------------------------------------------------------*/

.testimonio{
    width: 30%;
    background-color: #fff;
    border-radius: 10px;
    padding: 37px 27px;
    position: relative;
    height: 330px;
}   


.testimonio .img_comillas{
    position: absolute;
    right: -25px;
    top: -25px;
    width: 75px;
}

.contenedor_estrellas{
    width: 100%;
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.contenedor_estrellas img{
    width: 17px;
}

.testimonio p{
    width: 100%;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
    text-align: justify;
    color: #444;
}

.testimonio .nombre{
    position: absolute;
    bottom: 35px;
    display: block;
    margin-top: 20px;
    font-weight: 300;
    color: #333;
    font-size: 14px;
}

.contenedor_puntuaciones{
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    position: absolute;
    bottom: 60px;
}

.contenedor_puntuaciones span{
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

/*////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// RESPONSIVE /////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 700px) {

    .testimonios{
        margin: 10vh 0;
        padding: 50px 0;
        padding-bottom: 25px;
    }

    .testimonios h3{
        font-size: 30px;
        letter-spacing: 0.9px;
    }

    .testimonios hr{
        width: 60px;
    }

    .testimonios h4{
        font-size: 14px;
        letter-spacing: 0.6px;
        margin-bottom: 50px;
    }

    /*--------------------------------------------------------*/

    .contenedor_slider_testimonios{
        flex-wrap: wrap;
        justify-content: center;
    }

    .contenedor_testimonios{
        width: 90%;
        justify-content: center;
    }

    /*----------------------------------------------------------*/

    .testimonio{
        width: 75%;
        padding: 30px;
        margin-bottom: 40px;
    }

    .testimonio .img_comillas{
        right: -15px;
        top: -20px;
        width: 60px;
    }

    .testimonio p{
        font-size: 10px;
    }

    .testimonio .nombre{
        margin-top: 15px;
        font-size: 12px;
    }

    .testimonio .contenedor_puntuaciones span{
        font-size: 11px;
    }

}    