/* Mapa Responsive - Mobile First */
.fila-mapa {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 2rem);
    padding-inline: clamp(0.5rem, 2vw, 1rem);
}

.mapa-responsive {
    max-width: 100%;
    margin-inline: auto;
    width: 100%;
}

/* Contenedor con aspect-ratio para iframe */
.mapa-responsive {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
}

.mapa-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: clamp(0.5rem, 1vw, 0.75rem);
}

/* Tablet */
@media (min-width: 768px) {
    .fila-mapa {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .mapa-responsive {
        aspect-ratio: 16 / 9;
        max-width: clamp(500px, 80%, 800px);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .mapa-responsive {
        max-width: clamp(600px, 70%, 900px);
    }
}
