/* --- ZONA DE BOTONES (UNA SOLA FILA) --- */
.qq-zona-botones {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
}

.qq-rectangulo {
    flex: 1;
    background-color: #4CAF50;
    /* Verde normal */
    color: white;
    padding: 20px;
    border-radius: 20px;
    /* Esquinas curvas */
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.qq-rectangulo:hover {
    background-color: #2E7D32;
    /* Verde más fuerte */
}

.qq-icono {
    font-size: 40px;
    margin-right: 15px;
}

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

.qq-tit {
    font-weight: bold;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

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

/* --- 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: 900px;
    max-width: 95%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

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

.qq-contenedor-ajuste {
    padding: 0 20px 20px 20px;
    display: flex;
    justify-content: center;
}

.qq-contenedor-ajuste iframe {
    width: 100%;
    border: 0;
    border-radius: 10px;
}