/* Ajustes para badges de fechas/ubicación */
.badge-capacity {
    background-color: var(--primary-blue); /* #4CA1B9 */
    color: #ffffff;
}

.badge-capacity i {
    color: #ffffff;
}

/* Íconos de detalles en dorado/mostaza */
.card-amenities li i {
    color: var(--primary-blue);
}

.card-amenities li {
    color: var(--gold-accent); /* #A1903A */
}

.entorno-content {
    max-width: 1100px;
    margin: 3rem auto 6rem auto;
    padding: 0 5%;
}

.entorno-block {
    margin-bottom: 5rem;
}

/* --- BLOQUE EDITORIAL (LUGARES) --- */
.editorial-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}

.editorial-item {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.editorial-item.reverse {
    flex-direction: row-reverse;
}

.editorial-image {
    flex: 1;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-text {
    flex: 1;
}

.entorno-tag {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.entorno-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.editorial-text p {
    color: var(--gold-accent);
    font-weight: 300;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- BLOQUE EVENTOS (FIESTAS) --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card {
    display: flex;
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.event-date {
    background-color: var(--primary-blue);
    color: #FFFFFF;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    font-family: 'Oswald', sans-serif;
}

.event-date .month {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.event-date .day {
    font-size: 1.4rem;
    font-weight: 600;
}

.event-info {
    padding: 1.5rem;
}

.event-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.event-location {
    font-size: 0.8rem;
    color: var(--gold-accent);
    font-weight: 400;
    display: block;
    margin-bottom: 0.8rem;
}

.event-info p {
    font-size: 0.9rem;
    color: var(--gold-accent);
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .editorial-item, 
    .editorial-item.reverse {
        flex-direction: column;
        gap: 1.5rem;
    }

    .editorial-image {
        width: 100%;
        height: 220px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }
}