section.documentos {
    background-color: #7DB996;
    display: flex;
    justify-content: space-evenly;
    position: relative;
    align-items: stretch;
}

section.documentos .marquee-lateral {
    width: 15vw;
    max-width: 300px;
    position: relative;
}

section.documentos .marquee-lateral img {
    position: absolute;
    width: 66px;
    left: 50%;
    transform: translateX(-50%);
}

section.documentos .imagen-fondo {
    width: 38vw;
    background: url(../img/documentos/gabriel-jimenez-jin4W1HqgL4-unsplash.jpg) no-repeat center/cover;
    margin-right: auto;
}

section.documentos .pastillas {
    height: 75vh;
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 50px;
}

section.documentos .pastilla {
    background-color: #827568;
    border-radius: 20px;
    font-size: 30px;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px 30px;
    width: 517px;
    box-sizing: border-box;
    transition: 300ms;
}

section.documentos .pastilla:first-child {
    margin-left: auto;
}

section.documentos .pastilla .fecha {
    position: absolute;
    top: 50px;
    left: 30px;
}

section.documentos .pastilla .boton-descarga {
    position: absolute;
    top: 50px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: url(../img/documentos/boton-descarga.svg) no-repeat center/contain;
}

section.documentos .pastilla .boton-descarga:hover {
    background: url(../img/documentos/boton-descarga-hover.svg) no-repeat center/contain;
}

@media(max-width: 1300px) {
    section.documentos .pastilla {
        width: 400px;
    }

    section.documentos .pastilla {
        font-size: 22px;
    }
}

@media(max-width: 991px) {
    section.documentos .pastillas {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        height: 100%;
        right: 25px;
    }

    section.documentos .pastilla {
        width: unset;
        max-width: 70vw;
        font-size: 14px;
    }

    section.documentos .pastilla:first-of-type {
        margin-bottom: 25px;
    }

    section.documentos .pastilla .fecha {
        top: 20px;
        font-size: 16px;
    }

    section.documentos .pastilla .description {
        margin-top: 25px;
    }

    section.documentos .pastilla .boton-descarga {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    section.documentos .imagen-fondo {
        width: 70vw;
        margin-left: auto;
        margin-right: unset;
        height: 60vh;
        margin-top: auto;
        margin-bottom: auto;
    }

    section.documentos .marquee-lateral {
        width: 23vw;
    }
}