*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,body{
    height: 100%;
    font-family: gotham-book;
    
}

@font-face {
    font-family: gotham-light;
    src: url(../fonts/Gotham-Font/Gotham-Light.otf);
}

@font-face {
    font-family: gotham-medium;
    src: url(../fonts/Gotham-Font/GothamMedium.ttf);
}

@font-face {
    font-family: gotham-bold;
    src: url(../fonts/Gotham-Font/Gotham-Bold.otf);
}

@font-face {
    font-family: gotham-book;
    src: url(../fonts/Gotham-Font/GothamBook.ttf);
}

.clear{
    clear: both;
}

.section-1{
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 100px;
    padding-top: 70px;
    margin: 0 auto;
}

.container-produto{
    width: 19%;
    margin-top: 30px;
    text-align: center;
}


.titulo-produto{
    height: 30px;
    background: #ffbb00;
    border-radius: 5px 5px 0px 0px;
    color: #042D66;
}

.titulo-produto p{
    font-size: 18px;
    padding-top: 6px;
}

.capa-produto{
    width: 100%;
}

.capa-produto img{
     width: 100%;
}


a{
    text-decoration: none;
}


.baixar:hover{
    background: #042D66;
    color: white;
    cursor: pointer;
}

.baixar a:hover{
    color: white;
    background:#042D66;
}

.voltar{
    font-size: 20px;
    margin-top: 40px;
    text-align: center;
    height: 20px;
}

.voltar a{
    text-align: center;
    background: #042D66;
    border-radius: 7px 7px 7px 7px;
    padding-left: 14px;
    padding-right: 14px;
    color: white;
    padding-top: 4px;
    padding-bottom: 4px;
}







@media screen and (max-width: 672px){
    .container-produto{
        width: 33%;
    }
}