/* --- ESTILO MODAL MONTSERRAT --- */

.qq-zona-botones {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 38px;
    /* Mantiene el cm de separación entre botones */

    /* CAMBIO AQUÍ: 0 arriba para que suba, y mantenemos el espacio abajo */
    padding: 0 0 60px 0;

    flex-wrap: wrap;
    width: 100%;
    margin-top: -10px;
    /* Esto los obliga a subir un poco más si todavía queda aire */
}

.qq-rectangulo {
    flex: 0 1 420px;
    height: 100px !important;
    background-color: #4CAF50;
    /* Verde inicial */
    color: white;
    padding: 0 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
    box-sizing: border-box;
    text-decoration: none;
}

.qq-rectangulo:hover {
    background-color: #2E7D32;
    /* Verde más oscuro al pasar el mouse */
}

.qq-icono {
    font-size: 40px;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.qq-txt-contenedor {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.qq-tit {
    font-weight: bold;
    font-size: 16px;
    font-family: sans-serif;
    line-height: 1.2;
}

.qq-sub {
    font-size: 14px;
    font-family: sans-serif;
    margin-top: 2px;
}

/* --- VENTANAS MODALES --- */
.qq-modal-fondo {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.qq-modal-ventana {
    background-color: #fff;
    width: 95%;
    max-width: 900px;
    /* Ancho máximo similar al container */
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.qq-modal-titulo {
    text-align: center;
    padding: 20px;
    margin: 0;
    color: #2E7D32;
    font-family: sans-serif;
    font-size: 22px;
}

.qq-cerrar {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

.qq-contenedor-ajuste {
    width: 100%;
    height: 500px;
    /* Altura para que luzca bien el mapa */
    overflow: hidden;
}

.qq-contenedor-ajuste iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .qq-zona-botones {
        flex-direction: column;
        gap: 15px;
        padding: 30px 10px;
    }

    .qq-rectangulo {
        width: 100% !important;
    }
}