:root{
    --primary:#4285f4;
    --second: #000000;
    --terciary: #999999;
}

.content h2{
    padding: 1.5vw 0 1.5vw 0;
    text-align: center;
}

.main-content{
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1vw;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.main-content p{
    margin: 0;
}

.google-content .icon img{
    width:  5vw;
}

.information-local{
    display: flex;
    flex-direction: column;
    gap: .6vw;
}

.star  .fa-star {
    color: #ebaa20;
}

.star .fa-star-half{
    color: #ebaa20;
}

.star .fa-circle-check{
    color: var(--primary);
}

.information-local button{
    padding: .6vw 1.5vw .6vw 1.5vw;
    border: none;
    border-radius: .2vw;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
}

.information-local button:hover{
    background-color: #196cf1;
    cursor: pointer;
}

.reviews-content{
    display: flex;
    gap: 1vw;
}

.review{
    width: 32%;
    gap: 2vw;
    align-items: start;
}

.google-content{
    display: flex;
    gap: 3vw;
    align-items: center;
}

.information-review {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1vw;
    border-radius: .2vw;
    box-shadow: #64646f33 0px 7px 29px 0px;
    overflow: hidden;
    height: auto;
    min-height: 250px;
    transition: all 0.3s ease-in-out;
}

.main-content-review{
    display: flex ;
    justify-content: space-between;
    align-items: center;
}

.information-review .profile{
    display: flex;
    gap: .8vw;
}

.information-review > p{
    text-align: justify;
}

.read-more-btn{
    color: var(--terciary);
    text-decoration: none;
}

.read-more-btn:hover{
    color: var(--second);
    text-decoration: underline;
    cursor: pointer;
}

.read-more-txt {
    display: inline-block;
    font-weight: 400;
    text-align: justify;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.read-more-text--show {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

.review .information-review{
    display: flex;
}

.profile img{
    width: 40px; /* O un valor fijo como 300px */
    height: 40px; /* Ajusta según necesites */
    object-fit: cover;
}

.profile .info-user p strong{
    font-size: .9vw;
    font-weight: 600;
    color: var(--second);
}

.profile .info-user p{
    font-size: .8vw;
    color: var(--terciary);
}

@media screen and (max-width: 1024px) {
    .content h2{
        font-size: 4vw;
    }
    .main-content {
        grid-template-columns: 1fr;
        gap: 3vw;
    }
    .info-star{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .profile .info-user p{
        font-size: 3.5vw;
    }
    .information-local{
        align-items: center;
    }
    .information-local button{
        padding: 1vw 1.4vw 1vw 1.4vw;
    }
    .google-content{
        justify-content: center;
    }
    .star i{
        font-size: 3vw;
        padding-right: .8vw;
    }
    .reviews-content{
        flex-direction: column;
    }
    .info-star p{
        text-align: center;
    }
    .review{
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .information-review{
        padding: 6vw;
    }
    .profile .info-user p strong{
        font-size: 3.7vw;
    }
    .star .fa-circle-check{
        padding-left: 3vw;
    }
    .google-content .icon img{
        width: 20vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {

    .content h2{
        font-size: 2.5vw;
    }
    .information-local p strong{
        font-size: 2vw;
    }
    .profile .info-user p strong{
        font-size: 2vw;
    }
    .star i {
        font-size: 1.8vw;
        padding-right: 0.8vw;
    }
    .information-review {
        padding: 4vw;
        width: 85%;
    }
    .profile .info-user p{
        font-size: 2vw;
    }
}
