:root{
    /*Cores do header*/
    --cor-primaria: #0578A6;
    --cor-secundaria: #022E40;

    /*Fonte principal*/
    --fonte-principal: "Merriweather Sans";
}
.banner{
    width: 100%;
    height: 100vh;
    background-color: black;
    border-bottom: 3px solid white;
}
.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#intro{
    background-color: #051b24;
    height: 35vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--fonte-principal);
    gap: 15px;
    border-bottom: 3px solid var(--cor-primaria);
}
#intro h1{
    text-align: center;
}
#intro p{
    width: 90%;
}
#topDocs{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

#docs{
    padding: 20px;
    padding-bottom: 50px;
    color: white;
    font-family: var(--fonte-principal);
    background-color: var(--cor-secundaria);
}
#infoDocs{
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: space-evenly;
}
.areaLine{
    width: 100%;
    display: flex;
    justify-content: center;
}
.line{
    height: 2px;
    width: 50%;
    background-color: white;
}
.iconPdf{
    height: 60px;
}
.iconPdf img{
    height: 100%;
}
.docPdf{
    display: flex;
    align-items: center;
    gap: 20px;
    /* width: 100%; */
    justify-content: center;
    transition: .2s ease-in-out;
}
.docPdf:hover{
    transform: scale(1.2);
}
.document{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.document a{
    color: #ff9898;
}
@media(max-width: 768px){
    #infoDocs{
        height: 100%;
    }
    .docPdf:hover{
        transform: scale(1.0);
    }
}