.nav-doc {
    position: fixed;
    padding: 0px 16px;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--sectionGray);
    z-index: 999;
}

.nav-doc .nav-doc__content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    max-width: 1300px;
    margin: 0 auto;
}

.nav-doc img {
    height: 30px;
}


@media screen and (min-width:600px) {
    .nav-doc img {
        height: 39px;
    }
}

.c-document {
    padding: 0 15px 2rem;
}

.c-document__iframe {
    width: 100%;
    height: 550px;
    border-radius: 10px;
    margin-top: 14px;
}


.iconDescarga {
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: var(--orange);
    border-radius: 50%;
    padding: 11px;
    right: 20px;
    bottom: 70px;
    transition: ease 0.3s;
    animation: efectoDoc 1.2s infinite;
}

.iconDescarga:hover {
    transform: scale(1.1);
    transition: ease 0.3s;
}

@keyframes efectoDoc {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
    }

    100% {
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
    }
}