/*ESTILO CONTENEDOR UBICACION*/
.contenedor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/*ESTILO SECCION UBICACION*/
.ubicacion {
    width: 100%;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: transparent;
    background-image: linear-gradient(to right, #005f73, #000000);
    background-clip: text;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

/* ESTILO TITULO UBICACION*/
.ubicacion h2 {
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    color: transparent;
    background-image: linear-gradient(to right, #068d77b9, #00b3a6, #006a4d);
    background-clip: text;
}

/* ESTILO PARA IFRAME MAPA*/
.ubicacion iframe {
    width: 100%;
    max-width: 600px;
    height: 450px; 
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
}

/*MEDIA QUERIES PARA MOVIL*/
@media (max-width: 768px) {
/*CONTENEDOR UBICACION*/    
    .contenedor {
        flex-direction: column;
        padding: 15px;
        width: 90%;
    }
/*TITULO*/
    .ubicacion h2 {
        font-size: 1.2rem;
    }
/*SECCION UBICACION*/
    .ubicacion {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px;
    }
/*MAPA IFRAME*/
    .ubicacion iframe {
        width: 100%;
        max-width: 300px;
        height: 300px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        margin: 15px 0;
    }
}