/* --- CONTENEDOR GENERAL (Mantenemos tu regla) --- */
.container.section {
    margin-top: 2cm;
}

/* --- AJUSTE PARA SUBIR LA BIBLIOGRAFÍA --- */
/* Esta clase anula el margen de 2cm del container anterior */
.bibliografia-subida {
    margin-top: -1cm !important;
    /* Ajusta este valor (-1.5cm o -2cm) para subirla más */
    padding-top: 0 !important;
}

.qq-biblio-titulo-fuera {
    display: block;
    text-align: center;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #000;

    /* ESTO VA A SUBIR EL BLOQUE SÍ O SÍ */
    margin-top: -60px !important;
    margin-bottom: 20px;
}

.qq-biblio-recuadro-marron {
    border: 1.5px solid #8B4513;
    border-radius: 20px;
    padding: 30px;
    background-color: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

.qq-biblio-item {
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 1px solid #8B4513;
    text-align: left;
}

.qq-biblio-item:last-child {
    margin-bottom: 0;
}

.qq-biblio-item a {
    color: #0000FF;
    text-decoration: none;
}

.qq-biblio-item a:hover {
    text-decoration: underline;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .bibliografia-subida {
        margin-top: -0.5cm !important;
        /* En móviles el margen suele ser menor */
    }

    .qq-biblio-recuadro-marron {
        width: 95% !important;
        padding: 20px !important;
        margin: 0 10px;
    }

    .qq-biblio-item {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    .qq-biblio-titulo-fuera {
        font-size: 18px !important;
        padding: 0 10px;
    }
}