.img-documentos {
    width: 100%;
    max-width: 100%;
    position: relative;
    aspect-ratio: 15/4;
    background-image: url('../img/img-documentos.webp');
    background-size: cover;
    background-position: center;
    border-radius: 0px 0px 32px 32px;
}

.overlay-documentos {
    width: 100%;
    max-width: 100%;
    height: 100%;
    /* backdrop-filter: blur(4px); */
    background: linear-gradient(180deg, rgba(242, 65, 48, 0.25) 0%, #d92918 100%);
    border-radius: 0px 0px 32px 32px;

}

.arrow {
    width: 0;
    height: 0;
    border-left: 121px solid transparent;
    border-right: 121px solid transparent;
    border-top: 25px solid var(--danger);
    margin: 0 auto;
    top: -4px;
    z-index: -1;
}

.btn-documentos {
    aspect-ratio: 1/1;
    max-width: 100%;
    min-width: 100%;
    background-color: var(--secondary);
    font-size: 2em;
}

.btn-documentos.active {
    color: white;
    background-color: var(--danger);
    outline: 2px solid var(--danger);
    box-shadow: 0 0 0 0.2rem rgba(242, 65, 48, 0.6);
}

.btn-documentos:focus,
.btn-documentos.focus,
.btn-documentos:active,
.btn-documentos.active {
    outline: none;
    box-shadow: none;
}

.btn-arrow {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 30px solid var(--danger);
    margin: 0 auto;
    top: -8px;
    z-index: 2;
    display: none;
}

.btn-arrow.active {
    display: block;
}

.fa-check {
    color: var(--dark);
}

/* Extra small devices (portrait phones, less than 576px) */
@media (min-width: 320px)and (max-width: 575.98px) {
    .img-documentos {
        aspect-ratio: 15/9;
        border-radius: 0px 0px 16px 16px;
    }

    .overlay-documentos {
        border-radius: 0px 0px 16px 16px;
    }

    .arrow {
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
        border-top: 18px solid var(--danger);
    }

    .btn-arrow {
        top: -10px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .img-documentos {
        aspect-ratio: 15/7;
    }

    .arrow {
        border-left: 60px solid transparent;
        border-right: 60px solid transparent;
    }

    .btn-arrow {
        top: -13px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .btn-arrow {
        top: -9px;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .btn-arrow {
        top: -11px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    
}