/* Linha de Títulos */
.home .titulo{
    margin-bottom: 30px;
    font-size: 22pt;
    line-height: 26pt;
    color: #004138;
    font-weight: 300;
}
.home .link{
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}
.home .link a{
    font-size: 16px;
    line-height: 26pt;
    color: #41ab34;
}
/* Botoes */
.home .botao{
    display: flex;
    flex-direction: row;
}
.home .botao a{
    display: block;
    padding: 10px 20px;
    background: #41ab34;
    color: #ffffff;
    border-radius: 30px;
    font-size: 10pt;
    font-family: "Nunito-ExtraBold";
    -webkit-transition: background-color 250ms linear;
    transition: background-color 250ms linear;
}
.home .botao a:hover{
    background: #004138;
}
/* Blocos */
.home .bloco{
    width: 33.33%;
    max-width: 350px;
}
/* Fix Margin */
.fix-margin{
    width: 100%;
    overflow: hidden;
}
.fix-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: -20px;
}
/* Estatísiticas */
.estatisticas{
    padding: 40px 0;
    margin-bottom: 30px;
    border-bottom: solid 1px #e5e5e5;
}
.estatisticas .item{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 160px;
    margin-left: 20px;
    box-sizing: border-box;
    background-color: #41ab34;
    border-radius: 10px;
}
.estatisticas .icone img{
    height: 60px;
    margin-right: 20px;
}
.estatisticas .item p{
    font-size: 14pt;
    color: #ffffff;
}
.estatisticas .item p span{
    font-size: 24pt;
    font-family: "Nunito-ExtraBold";
    line-height: 26pt;
}
/* Noticias */
.noticias{
    padding: 0 0 50px 0;
}
.noticias .item{
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    box-sizing: border-box;
}
.noticias .item .foto{
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.noticias .foto img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.noticias .texto p{
    font-size: 12pt;
    margin: 10px 0;
    color: #656565;
}
/* Mini banner central */
.minibanner{
    margin-bottom: 0;
}
.minibanner .centro .item{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}
.minibanner .centro .item img{
    display: block;
    width: 100%;
}
/* O display block bugou com o slider slick entao usei dessa forma */
.minibanner.mobile{
    height: 0;
    overflow: hidden;
}
/* Agenda */
.agenda{
    margin: 50px 0 30px 0;
}
.agenda .item{
    margin-left: 20px;
    padding: 20px;
    box-sizing: border-box;
    border: solid 1px #CCCCCC;
    border-radius: 10px;
}
.agenda .data p{
    font-size: 36pt;
    line-height: 40px;
    font-family: "Nunito-ExtraBold";
    color: #86c388;
}
.agenda .nome p{
    font-size: 13pt;
    margin: 10px 0;
    color: #656565;
}
.agenda .local p{
    font-size: 13pt;
    font-family: "Nunito-ExtraBold";
    margin: 10px 0;
    color: #004138;
}
@media screen and (max-width:860px){
    .estatisticas .icone img{
        height: 50px;
        margin-right: 10px;
    }
    .estatisticas .item p{
        font-size: 12pt;
    }
    .estatisticas .item p span{
        font-size: 18pt;
        line-height: 22pt;
    }
}
@media screen and (max-width:700px){
    .home .link{
        text-align: right;
    }
    .home .link a{
        margin-left: 10px;
        line-height: 16px;
    }
    .estatisticas .icone img{
        height: 60px;
        margin-right: 20px;
    }
    .estatisticas .item p{
        font-size: 14pt;
    }
    .estatisticas .item p span{
        font-size: 24pt;
        line-height: 26pt;
    }
    .home .fix-content{
        justify-content: center;
    }
    .home .bloco{
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .noticias{
        padding: 0 0 20px 0;
    }
    /* O display block bugou com o slider slick entao usei dessa forma */
    .minibanner.mobile{
        height: auto;
    }
    .minibanner.pc{
        height: 0;
        overflow: hidden;
    }
}