
/* Reset global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Sección Ubicación */
.ubicacion-wrapper {
    width: 100%;
    padding: 80px 20px;
    background-color: #f8fafc;
}

.ubicacion-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Título */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

/* Subtítulo */
.section-subtitle {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Contenedor del mapa (ESTABLE) */
.map-container {
    width: 100%;
    height: 550px; /* Altura fija escritorio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Iframe ocupa todo el contenedor */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .map-container {
        height: 350px; /* Altura más pequeña en móviles */
    }

}