
/* ESTRUCTURA SECCIÓ RESTAURANT */

.info-rest {
    display: grid;
    grid-template-columns: 66% 1fr; 
    gap: 40px; 
    margin: 0 auto;
    align-items: start;
    width: 82%;
    padding: 190px 0 0 0;

}

.left-rest {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.right-rest {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 185px;
}

.right-rest img, 
.info-grid-50 img, 
.info-sola-pic img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.title-rest {
    font-size: 40px;
    font-weight: 600;
}

.cos-rest {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.separator-rest {
    width: 200px;
    height: 3px;
}

.trobaras-rest {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trobaras-rest .trobaras-info {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.trobaras-dest {
    font-size: 40px;
    font-weight: 400;
    margin: 0;
}

.info-grid-50 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 40px;
    align-items: end;
    margin-top: -180px;
}

/* Variants d'estructura (Reverse) */
.info-rest.rest-reverse {
    grid-template-columns: 1fr 66%;
    padding: 40px 0;
}

.info-rest.rest-reverse .right-rest {
    padding-top: 0;
}

.info-rest.rest-reverse .info-sola-pic {
    display: flex;
    flex-direction: column;
    gap: 40px;
}