/* --- DEFINICIÓN MANUAL DE CONTAINER Y SECTION --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* --- ZONA DE BOTONES --- */
.qq-zona-botones {
    display: flex;
    justify-content: center;
    gap: 1cm;
    /* Separación de 1cm */
    padding: 20px 0;
}

.qq-rectangulo {
    flex: 1;
    background-color: #5cb85c;
    color: white;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.qq-rectangulo:hover {
    background-color: #449d44;
}

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

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

.qq-tit {
    font-weight: bold;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
}

.qq-sub {
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

/* --- ESTILO 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-modal-titulo {
    text-align: center;
    padding: 15px;
    margin: 0;
    color: #2d5a27;
    font-family: Arial, sans-serif;
    font-size: 1.3rem;
}

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

.qq-contenedor-ajuste {
    padding: 0 20px 20px 20px;
}

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