:root {
    --rosa: #b890fe;
    --cinza:#d6d6d6;
}

a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}

* {
    box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
	font-weight:400;
	font-size:14px;
	margin:0px;
	padding:0px;
	color: #000;
	-webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.bt{
    background-color: var(--rosa);
    padding: 10px 15px;
    border-radius: 8px;
    color: #FFF;
    width: fit-content;
    margin-top: 10px;
}

.titulo_sessoes{
    font-weight: 900;
    font-size: 50px;
    color: var(--rosa);
}

.card{
    border-radius: 25px;
}
.card-body{
    min-height: 300px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-body .card-title{
    font-weight: 700;
}

a:link {
	text-decoration: none; 
	color:inherit;
}
a:visited {
	text-decoration: none;
	color:inherit;
}
a:hover {
	text-decoration: none;
	color:inherit;
}
a:active {
	text-decoration: none;
	color:inherit;
}

header{
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 9;
}

#home{
    padding-top: 150px !important;
}

#home .texto{
    position: relative;
    padding: 50px;
}
#home .texto .oval{
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    z-index: -1;
}
#home .titulo{
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}
#home .box_logo{
    background-color: #f7f7f7;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
#home .box_logo img{
    width: 100%;
    height: auto;
}

#nossa_missao{
    margin: 50px 0px;
    padding: 100px 0px;
}
#nossa_missao h2{
    text-align: right;
}

#nossa_visao_futuro{
    position: relative;
    margin: 50px 0px;
    padding: 100px 0px;
}
#nossa_visao_futuro .oval{
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    z-index: -1;
}

#valores_fundamentais{
    background-color: var(--rosa);
    color: #FFF;
    margin: 50px 0px;
    padding: 100px 0px;
    text-align: center;
}
#valores_fundamentais .titulo_sessoes{
    color: #FFF;
    margin-bottom: 60px;
}
#valores_fundamentais img{
    width: 80px;
}
#valores_fundamentais .card-title{
    font-weight: 700;
}

#captacao{
    margin: 50px 0px;
    padding: 100px 0px;
    position: relative;
    text-align: center;
}
#captacao .titulo_sessoes{
    margin-bottom: 50px;
}
#captacao img{
    position: sticky;
    top: 50px;
	width:100%;
}
#captacao .card-body{
    min-height: 200px;
}
#captacao .texto{
    position: sticky;
    top:20px;
}

#transparencia{
    background-color: var(--rosa);
    color: #FFF;
    margin: 50px 0px;
    padding: 100px 0px;
    text-align: center;
}
#transparencia .titulo_sessoes{
    color: #FFF;
    margin-bottom: 60px;
}
#transparencia .btn{
    background-color: var(--rosa);
    border: 2px solid #FFF;
    padding: 20px;
    font-weight: 700;
    border-radius: 20px;
    transition: all .2s ease-in-out;
}
#transparencia .btn:hover{
    background-color: #FFF;
    color: var(--rosa);
}

#parceiros{
    margin: 50px 0px;
    padding: 100px 0px;
    position: relative;
    text-align: center;
}
#parceiros .box{
    background-color: #FFF;
    border: 2px solid var(--cinza);
    padding: 30px;
    border-radius: 12px;
}
#parceiros img{
    height: 70px;
    width: auto;
    margin: 0px 20px;
}

footer{
    background-color: var(--rosa);
    color: #FFF;
    margin-top: 50px;
    padding: 100px 0px;
    text-align: center;
}
footer .titulo_sessoes{
    color: #FFF;
    margin-bottom: 60px;
}


@media (max-width: 768px) {
    header{
        display: none;
    }
    .bt{
        margin: 20px auto;
    }
    .titulo_sessoes {
        font-size: 35px;
        text-align: center;
    }
    #home{
        padding-top: 20px !important;
        text-align: center;
    }
    #home .titulo {
        font-size: 30px;
        line-height: 30px;
    }
    #home .box_logo{
        order : 1;
        margin-bottom: 20px;
    }
    #home .texto{
        order : 2;
    }
    #home .texto .oval{
        width: 100%;
        height: auto;
    }

    #nossa_missao{
        padding: 0px 0px;
    }
    #nossa_missao h2{
        text-align: center;
    }

    #captacao{
        padding: 0px;
    }
    #captacao img {
        width: 100%;
    }

    #parceiros{
        padding: 0px;
    }
}