
/*==== UBICACION====*/
.ubicacion-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 12px;
    background: rgba(20, 20, 50, 0.7);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Títulos principales */
h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--accent-color);
}

h3 {
    font-size: 24px;
    color: var(--secondary-color);
}

/* Estilo del bloque cultural */
.Cultural-Uni {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.Cultura-Container {
    width: 80%;
    padding: 20px;
    border-radius: 10px;
    background: rgba(20, 20, 50, 0.7);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

/* Logo */
.logo-container img {
    width: 150px;
    height: auto;
    margin: 10px 0;
}

/* Descripción */
.Cultural_Description p {
    font-size: 16px;
    text-align: justify;
    color: white;
}

/* Mapas */
.googlemaps {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.googlemaps-container {
    width: 90%;
    max-width: 800px;
}

.mapa iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

/* Responsividad */
@media (max-width: 768px) {
    .ubicacion-container {
        max-width: 90%;
        padding: 15px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    .Cultura-Container {
        width: 95%;
        padding: 15px;
    }

    .Cultural_Description p {
        font-size: 14px;
    }

    .mapa iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .ubicacion-container {
        max-width: 95%;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    .Cultura-Container {
        width: 100%;
        padding: 12px;
    }

    .Cultural_Description p {
        font-size: 13px;
    }

    .mapa iframe {
        height: 250px;
    }
}
