/* CONFIGS GERAIS */

@import url('https://fonts.googleapis.com/css2?family=Chilanka&family=Fira+Sans+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    margin: 0;
    font-family: "Fira Sans Condensed";
    overflow-x: hidden;
}

/* =============================================================== */
/* MAIN */

@media (min-width: 800px) {

    .main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: fit-content;
        width: 100%;
        margin: 3% 0 5% 0;
    }
    
    .transp {
        width: 70%;
        padding: 0 15% 0 15%;
    }
    
    .transpTxtBtns {
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    
    #download {
        font-size: 16px;
        font-weight: 500;
    }
    
    .transparencia {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .transpLin {
        width: 100%;
        margin: 0 0 2.5% 0;
        display: flex;
        gap: 15px;
    }
    
    .transpBtn1 {
        text-align: center;
        font-family: "Fira Sans Condensed";
        background-color: #33E46D;
        font-size: 15px;
        font-weight: 400;
        width: 20%;
        border: 0;
        border-radius: 20px;
        padding: 1%;
    }
    
    .transpBtn2 {
        text-align: center;
        font-family: "Fira Sans Condensed";
        background-color: #000000;
        font-size: 15px;
        font-weight: 400;
        width: 20%;
        border: 0;
        border-radius: 20px;
        padding: 1%;
    }
    
}

@media (max-width: 799px) {

    .main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: fit-content;
        width: 100%;
        margin: 3% 0 5% 0;
    }
    
    .transpTxtBtns {
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    
    #download {
        font-size: 16px;
        font-weight: 500;
    }
    
    .transparencia {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .transp {
        display: flex;
        flex-direction: column;
        width: 70%;
        padding: 0 15% 0 15%;
        gap: 15px;
    }

    .transpLin {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .transpBtn1 {
        text-align: center;
        font-family: "Fira Sans Condensed";
        background-color: #33E46D;
        font-size: 15px;
        font-weight: 400;
        width: 100%;
        border: 0;
        border-radius: 20px;
        padding: 2%;
    }
    
    .transpBtn2 {
        text-align: center;
        font-family: "Fira Sans Condensed";
        background-color: #000000;
        font-size: 15px;
        font-weight: 400;
        width: 100%;
        border: 0;
        border-radius: 20px;
        padding: 2%;
    }    

}

/* ================================================================= */
/* AGRADECIMENTOS */

.agradecimentosDiv {
    background-color: #FFF5EA;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: fit-content;
    width: 100%;
    padding-bottom: 5%;
    margin: 7% 0 -5% 0;
}

.carousel-wrap {
    display: flex;
    justify-content: space-between;
    width: 75%;
    margin: 0 12.5% 0 12.5%;
}

.owl-carousel {
    position: relative;
}

.item {
    width: 90%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

#imgAgrad {
    width: 300px;
    height: 300px;
    border-radius: 300px;
}

.owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.owl-nav > div {
    pointer-events: all;
}

.owl-nav .owl-prev {
    position: absolute;
    left: -50px; 
}

.owl-nav .owl-next {
    position: absolute;
    right: -30px;
}

.owl-nav i {
    font-size: 52px;
    color: #cdcbcd;
}    