/* ------------------------- ESTILOS BASE ------------------------- */
/* Estilos para la imagen de fechas */
.dates-image {
    text-align: center;
    margin: 0 auto;
    max-width: 800px; /* Ancho máximo según necesidad */
}

.dates-image img {
    width: 100%;
    height: auto; /* Mantiene relación de aspecto */
    object-fit: contain; /* Previene distorsión */
    max-height: 200px; /* Altura máxima según diseño */
}



.video-text-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    font-size: x-large;
}

.video-container {
    width: 45%;
}

.video-container video {
    width: 100%;
    border-radius: 10px;
}

.text-container {
    width: 50%;
    text-align: justify;
}

.text-container p {
    margin: 0 0 20px 0;
}

.location-map-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 20px 0;
}

.location-container {
    width: 50%;
    font-size: x-large;
}

.location-symbol-text {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.location-symbol {
    width: 60px;
    margin-right: 40px;
}

.location-text h3, .location-text p {
    margin: 0;
}

.location-paragraph {
    text-align: justify;
}

.map-container {
    width: 45%;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
}

.color-strip {
    background-color: #C6A763;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.color-strip h2 {
    color: #121B47;
    margin: 0;
}

.color-strip-2 {
    background-color: #00BF63;
    color: white;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.color-strip-2 h2 {
    margin: 0;
}

.image-list-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.image-container {
    width: 45%;
}

.image-container img {
    width: 100%;
    border-radius: 10px;
}

.list-container {
    width: 50%;
    font-size: x-large;
}

.list-container h3 {
    color: #121B47;
    margin-bottom: 10px;
}

.list-container ul {
    list-style-type: disc;
    padding-left: 20px;
}

.list-container li {
    margin-bottom: 10px;
}

.additional-info {
    margin-top: 10px;
    text-align: left;
    width: 100%;
    font-size: x-large;
}

.additional-info p {
    margin: 5px 0;
}

.additional-info a {
    color: #084B96;
    font-weight: bold;
    text-decoration: none;
}

.additional-info a:hover {
    text-decoration: underline;
}

.program-info {
    text-align: justify;
    margin-bottom: 20px;
    font-size: x-large;
}

.program-info ul {
    list-style-type: disc;
    margin-left: 20px;
}

.time-dates-costs {
    display: inline-block;
    width: 30%;
    vertical-align: top;
    margin-bottom: 20px;
    font-size: x-large;
}

.time-dates-costs h3 {
    margin-bottom: 10px;
}

.time-dates-costs p {
    margin: 5px 0;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: x-large;
}

.signup-button {
    background-color: #00BF63;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-button:hover,
.signup-button:active {
    background-color: #121b47;
}

/* ------------------------- RESPONSIVE (Móviles ≤768px) ------------------------- */
@media screen and (max-width: 768px) {
    .video-text-container,
    .location-map-container,
    .image-list-container {
        flex-direction: column;
    }
    
    .video-container,
    .text-container,
    .location-container,
    .map-container,
    .image-container,
    .list-container {
        width: 100% !important;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .time-dates-costs {
        width: 100%;
        display: block;
    }
    
    .footer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .signup-button {
        width: 100%;
        padding: 15px;
    }
    
    .location-symbol {
        width: 50px;
        margin-right: 20px;
    }
    /* Ajustes para móvil */
@media screen and (max-width: 768px) {
    .dates-image {
        padding: 0 15px; /* Margen lateral en móviles */
    }
    
    .dates-image img {
        max-height: 150px; /* Altura reducida para móviles */
    }
}
}
