.info-local{
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 3vw 0;
     gap: 3vw;
     width: 100%;
}
 .info-local h2{
     font-size: 2.7vw;
     color: var(--red);
}
 .info-local iframe{
     height: 450px;
}
 .map{
     display: flex;
     flex-direction: column;
     gap: 2vw;
     text-align: center;
     width: 85%;
}
 .reviews-section{
     display: flex;
     flex-direction: column;
     gap: 4vw;
     width: 85%;
}
 .review-summary {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 3vw;
     flex-wrap: wrap;
     box-shadow: 0 0 10px rgba(0,0,0,0.05);
     padding: .5vw 1vw;
}
 .review-summary img {
     width: 140px;
     height: auto;
}
 .info-restaurant{
     display: flex;
     flex-direction: column;
     align-items: center;
}
 .btn {
     background-color: var(--red);
     color: var(--white);
     padding: .6vw .8vw;
     border-radius: 6px;
     font-weight: bold;
}
 .review-cards {
     display: flex;
     gap: 2vw;
     flex-wrap: wrap;
     justify-content: center;
}
 .review-card {
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     border-radius: 12px;
     padding: .5vw;
     box-shadow: 0 4px 12px rgba(0,0,0,0.05);
     max-width: 360px;
     gap: 1.5vw;
}
 .review-header {
     display: flex;
     align-items: center;
     gap: 2vw;
}
 .review-header img {
     width: 48px;
     height: 48px;
}
 .stars-review {
     color: #fcbf49;
}
 .read-more {
     display: inline-block;
     margin-top: .4vw;
     color: #000000;
     font-weight: bold;
     text-decoration: none;
}

/* Responsive */
 @media (max-width: 768px) {
     .info-local {
         gap: 10vw;
         padding: 0 3vw 10vw 3vw;
    }
     .info-local h2{
         font-size: 6.5vw;
    }
     .info-local iframe{
         height: 250px;
    }
     .review-summary {
         flex-direction: column;
         align-items: center;
    }
     .review-cards {
         gap: 10vw;
    }
}
 