/* ===================================================
   Gastronomia — Horários e Datas
   =================================================== */

.gastronomia-section {
    padding: 60px 0;
    background-color: var(--color-sand-light);
    width: 100%;
}

.gastronomia-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1500px;
}

.gastronomia-images {
    position: relative;
    width: 100%;
    padding-bottom: 60px;
    padding-right: 20px;
}

.gastro-img-top {
    width: 80%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
}

.gastro-img-bottom {
    width: 70%;
    height: auto;
    object-fit: cover;
    position: absolute;
    bottom: -10px;
    right: 0;
    border: 3px solid var(--color-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    aspect-ratio: 4 / 3;
}

.gastronomia-text h2 {
    color: var(--color-gold);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.gastronomia-text p {
    color: rgba(49, 49, 49, 0.75);
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Destaque no último parágrafo (CTA) */
.gastronomia-text p:last-child {
    color: var(--color-copper);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .gastronomia-section {
        padding: 100px 0;
    }

    .gastronomia-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .gastronomia-images {
        padding-bottom: 80px;
        padding-right: 40px;
    }

    .gastro-img-top {
        width: 85%;
    }

    .gastro-img-bottom {
        width: 65%;
        bottom: -30px;
    }

    .gastronomia-text h2 {
        font-size: 2.5rem;
    }

    .gastronomia-text p {
        font-size: 1.6rem;
    }

    .gastronomia-text p:last-child {
        font-size: 1.1rem;
    }
}
