.centrar_elementos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contenedor_item_informacion {
    width: 100%;
    max-width: 1200px;
}

.titulo_servicios {
    text-align: center;
    margin-bottom: 20px;
}

.contenedor_sede {
    display: inline-flex;
    margin-bottom: 50px;
    width: 48%;
    margin-right: 2%;
    flex-direction: column;
    align-items: center;
}

.contenedor_sede:last-child {
    margin-right: 0;
}


.imagen_sede img {
    width: 300px;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #001f3d;
}

.horario_informacion {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.info_sede {
    text-align: center;
    padding: 20px;
}

.info_sede h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.horario_informacion p {
    margin-bottom: 8px;
    font-size: 16px;
}

.whatsapp_boton {
    display: inline-block;
    margin-top: 15px;
    padding: 15px 30px; /* Ancho aumentado */
    background-color: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    width: 100%; /* Hacer el botón más ancho */
    max-width: 320px; /* Límite de ancho para que no quede demasiado grande */
    text-align: center;
}

.whatsapp_boton i {
    margin-right: 10px;
}

.mapa_sede iframe {
    width: 100%;
    height: 350px;
    border: 0;
}


@media (max-width: 768px) {
    .contenedor_sede {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
}


