.resenas_restaurante{
    width: 100%;
    height: 85vh;
    padding: 75px 100px;
    margin-bottom: 120px;
    background-color: var(--main-color);
}

.resenas_restaurante h2{
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.resenas_restaurante hr{
    width: 75px;
    border: 2px solid #fff;
    margin: 0 auto 15px auto;
}

.resenas_restaurante p{
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 5px;
}

.contenedor_estrellas{
    width: 100%;
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.contenedor_estrellas img{
    width: 17px;
}
/*------------------------*/

.contenedor_resenas_restaurante{
    width: 100%;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch; 
    gap: 30px;
}

.resena_restaurante{
    width: 22%;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 5px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 16px 20px;
    display: block;
    flex-direction: column;
    justify-content: space-between;
}

.resena_restaurante .img_resena{
    position: absolute;
    width: 41px;
    top: -20px;
    right: -20px;
}

.encabezado_resena_restaurante{
    display: flex;
    align-items: center;
}

.logo_resena{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    background-color: #333;
}


.encabezado_resena_restaurante span{
    margin-left: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.5px;
}   

.resena_restaurante p{
    font-size: 12px;
    font-weight: 400;
    color: #222;
    margin: 10px 0;
    line-height: 1.6;
    text-align: justify;
}

.contenedor_estrellas{
    width: 100%;
    display: flex;
    gap: 8px;
    margin: 10px 0;
}

.contenedor_estrellas img{
    width: 17px;
}


/*////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// RESPONSIVE /////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 700px) {

    .resenas_restaurante{
        width: 100%;
        height: auto;
        padding: 50px 25px;
        margin-bottom: 50px;
    }

    .resenas_restaurante h2{
        font-size: 30px;
    }

    .resenas_restaurante hr{
        width: 65px;
        border: 1px solid #fff;
    }

    .resenas_restaurante p{
        font-size: 16px;
    }

    /*------------------------*/

    .contenedor_resenas_restaurante{
        margin-bottom: 0px;
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .resena_restaurante{
        width: 75%;
        padding: 16px 20px;
        margin-bottom: 40px;
    }

    .resena_restaurante .img_resena{
        width: 35px;
        top: -17px;
        right: -17px;
    }


    .logo_resena{
        width: 26px;
        height: 26px;
        font-size: 13px;
    }


    .encabezado_resena_restaurante span{
        font-size: 12px;
    }   

    .resena_restaurante p{
        font-size: 11px;

    }


}