/* CONTENEDOR PRINCIPAL */
.seccion-mapas-queque {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Espacio mínimo entre botones */
}

/* ESTILO DE BOTONES IGUAL A LA CAPTURA */
.btn-mapa-estilo {
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 15px 10px;
    border-radius: 25px;
    /* Bordes bien redondeados como en la imagen */
    font-family: sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.titulo-btn {
    display: block;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 2px;
}

.subtitulo-btn {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

/* VENTANAS MODALES CORREGIDAS */
.map-window {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: auto;
    width: 92%;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 15px;
    border-radius: 20px;
}

.modal-titulo-queque {
    font-family: sans-serif;
    color: #2e7d32;
    text-align: center;
    margin: 10px 0;
    font-size: 18px;
}

.iframe-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: -50px;
    right: 5px;
    color: white;
    font-size: 45px;
    cursor: pointer;
}