@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Itim&family=Junge&family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root{
    /*Cores do header*/
    --cor-primaria: #0578A6;
    --cor-secundaria: #022E40;

    /*Fonte principal*/
    --fonte-principal: "Merriweather Sans";
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: var(--cor-secundaria);
    font-family: var(--fonte-principal);
}

.bannerImg{
    position: relative;
    height: 95vh;
    width: 100%;
    z-index: -1;
    
}
.bannerImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: black;
}

.titleBanner{
    position: absolute;
    display: flex;
    justify-content: center;    
    width: 100%;
    /*font-family: "Itin";*/
    font-family: var(--fonte-principal);
    color: white;
    font-size: 2.5vw;
    top: 35%;
    
}

.titleBanner h2{
    height: 100%;
    padding: 10px 30px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); 

}

.bannerText{
    color: white;
    padding: 65px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bannerText h1{
    font-size: 2.5vw;
    text-align: center;
    padding-bottom: 45px;
}

.textBlock p{
    font-family: 'Inter';
    padding-bottom: 40px;
    font-size: 1.8vw;
}

.bannerText img{
    width: 15%;
    height: auto;
    padding-top: 30px;
}

.sectionActivities{
    background-color: white;
    padding: 30px 0 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sectionActivities h2{
    background: linear-gradient(to right, #0578A6, #022E40);
    width: 385px;
    height: 70px;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;

}

.container{
    display: flex;
    justify-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 58px;
    margin-top: 0px;
    max-width: 85%;
    /*height: 650px;*/
    /* box-shadow: 0 2px 0 var(--cor-primaria);  */

}

.img3{
    order: 1;
}
.txt3{
    order: 2;
} 
.container .img{
    width: 400px;
    max-width: 400px;
    display: flex;
    height: 100%;
    border-radius: 51%;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    justify-content: center;

}
.img img, img .img02{
    height: 400px;
    width: 400px;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.txt-content{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    font-size: 1.5vw;
}

.title h2{
    padding: 20px;
    width: 100%;
    border-radius: 10px;
}
.title{
    display: flex;
    justify-content: center;
}
.titleCenter{
    width: 100%;
}
.txt{
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 10px;
    width: 65%;
}

.content .txt{
    order: 1;
}

.content .img{
    order: 2;
}
.localLineAtv{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 0;
}
.localLineAtv .lineAtv{
    background-color: #022E40;
    height: 5px;
    width: 80%;
    display: flex;
    border-radius: 10px;
}
/* responsividade */

@media(max-width: 800px){

    .container{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .img1{
        order: 1;
    }
    .txt1{
        order: 2;
    }
    .txt{
        width: 100%;
    }
    .content .txt{
        order: 2;
    }
    .content .img{
        order: 1;
    }
    .txt-content, .textBlock p{
        font-size: 4vw !important;
        text-align: center;
    }
    .bannerText h1 {
        font-size: 5vw;
    }

    .img{
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .sectionActivities{
        gap: 30px;
    }

    .img{
        width: 100%;
        height: 400px;
    }
    .img .img02{
        justify-content: center;
        align-items: center;
        width: 400px;
        max-width: 400px;
        height: 400px;
        display: flex;
    }
    .bannerText img{
        width: 50%;
    }
}
@media(max-width: 650px){
    .img{
        width: 100%;
    }
    .img img{
        height: 300px;
        width: 300px;
    }
}