/* --- ESTILOS BOTONES Y MODALES - SANS SERIF --- */
.botones-container-queque {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    font-family: sans-serif;
    flex-wrap: wrap;
}

.tarjeta-mapa {
    background: #2e7d32;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    min-width: 250px;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.tarjeta-mapa:hover {
    background: #1b5e20;
    transform: translateY(-3px);
}

.icono-mapa {
    font-size: 2.5rem;
}

.texto-mapa {
    display: flex;
    flex-direction: column;
}

.titulo-mapa {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.subtitulo-mapa {
    font-size: 0.9rem;
    font-weight: 300;
}

/* --- ESTILOS DE LOS VENTANALES (MODALES) --- */
.map-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    /* Se activa por JS */
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    position: relative;
    font-family: sans-serif;
}

.modal-titulo-queque {
    color: #2e7d32;
    margin-bottom: 15px;
    text-align: center;
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* Relación 16:9 */
    height: 0;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

/* RESPONSIVE MÓVIL */
@media (max-width: 600px) {
    .botones-container-queque {
        flex-direction: column;
        align-items: center;
    }

    .tarjeta-mapa {
        width: 90%;
    }
}