.ubica{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ubica .tituloubica{
    font-family: 'Times New Roman', Times, serif;
    font-size: 1em;
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ubica .map{
    width: 100%;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    padding: 0px 5%;
}

.ubica .map iframe{
    width: 90%;
    height: 70vh;
}

@media (max-width:858px){

    .ubica .map{
        width: 99%;
        min-height: 40vh;
        grid-template-columns: 100%;
        gap: 10px;
    }

    .ubica .map iframe{
        width: 99%;
        height: 40vh;
    }

}