.schedule-section {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 1400px;
    margin: 80px auto 0 auto;
    padding: 0 20px;
}

.schedule-container {
    display: flex;
    width: 100%;
    align-items: stretch;
    flex-direction: row;
}

.schedule-image-column {
    width: 45%;
    flex-shrink: 0;
    position: relative;
}

.schedule-content-column {
    width: 50%;
    flex-shrink: 0;
}

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

.schedule-content-column {
    display: flex;
    padding: 40px 50px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--secundario-gris-f-4-f-5-f-7, #F4F5F7);
    box-sizing: border-box;
    overflow-x: hidden;
}

.schedule-map-column {
    width: 50%;
    min-height: 400px;
}

.schedule-map-column #schedule-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.schedule-header {
    width: 100%;
    margin-bottom: 25px;
}

.schedule-header .subtitle {
    display: inline-block;
    color: var(--primario-Black, #252728);
    text-align: left;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    width: fit-content;
}

.schedule-header .title {
    color: var(--primario-Black, #252728);
    font-family: Montserrat;
    font-size: 26px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 8px;
}

.schedule-date {
    color: var(--primario-Black, #252728);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

/* Descripción del evento */
.schedule-description {
    width: 100%;
    margin-bottom: 25px;
}

.schedule-headline {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 48px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    color: #252728;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.schedule-headline .text-red {
    color: #fc2a30;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

.schedule-description p {
    color: var(--primario-Black, #252728);
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.schedule-description p:last-child {
    margin-bottom: 0;
}

.schedule-description p strong {
    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
}

/* Event features */
.event-features {
    width: 100%;
    margin-top: 25px;
}

.event-features h3 {
    color: var(--primario-Black, #252728);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
}

.feature-box svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primario-Black, #252728);
}

.feature-box span {
    color: var(--primario-Black, #252728);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* CTA Button */
.schedule-cta-btn {
    display: inline-flex;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 4px;
    background: var(--primario-Black, #252728);
    color: var(--primario-blanco, #FFF);
    font-family: "Montserrat";
    font-size: 15px !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    width: 100%;
    max-width: 350px;
}

.schedule-cta-btn:hover {
    background: #3E4041;
}

/* Responsive */
@media (max-width: 768px) {
    .schedule-section {
        margin-top: 0px;
    }
    .schedule-container {
        flex-direction: column;
        margin-top: 40px;
    }

    .schedule-content-column {
        width: 100%;
        padding: 40px 20px;
    }

    .schedule-map-column {
        width: 100%;
        min-height: 300px;
    }

    .schedule-header .title {
        font-size: 22px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .schedule-cta-btn {
        max-width: none;
    }
}

