/*
* **********************************
* ################################## ESTILOS DO INDEX
* **********************************
*/

/*
========================
======================== ESTILOS GERAIS DO ÍNDICE
========================
*/


/*
========================
======================== BANNER FLUTUANTE
========================
*/

.banner_floating {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 98;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.banner_floating_content {
    background: #fff;
    padding: 10px;
    width: 500px;
    left: 50%;
    position: absolute;
    margin-left: -250px;
    display: none;
    overflow: hidden;
    overflow-y: auto;


    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);

    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

@media (max-width: 600px) {
    .banner_floating_content {
        width: 400px;
        margin-left: -200px;
    }
}

@media (max-width: 400px) {
    .banner_floating_content {
        width: 300px;
        margin-left: -150px;
    }
}

.banner_floating_content img{
    width: 100%;
}

.banner_floating_close{
    cursor: pointer !important;
    background-color: #a11217;
    position: absolute;
    right: 0;
    top: 0;
    margin: 20px 20px 0 0;
    width: 40px;
    height: 40px;
    color: #FFF !important;
    line-height: 40px !important;
    font-size: 1.8em !important;
    text-align: center !important;
    font-weight: 400 !important;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;

    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.banner_floating_close:hover{
    background-color: #5f090c;
}

/*
========================
======================== HIGHLIGHTS
========================
*/

.highlights_item {
    background-color: #f3f7f8;
    position: relative;
}

.highcontrast .highlights_item {
    background-color: #999;
}

@media(max-width: 1024px){
    .highlights_item {
        padding: 40px 0;
    }
}

.highlights_item:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

@media(max-width: 1024px){
    .highlights_item:after {
        display: none !important;
    }
}

.highlights_item .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 460px;
}


@media(max-width: 1366px){
    .highlights_item .content {
        min-height: 340px;
    }
}

.highlights_item_cover{
    flex-basis: 100%;
    display: none;
}

@media(max-width: 1024px){
    .highlights_item_cover{
        display: block;
    }
}

@media(max-width: 1024px){
    .highlights_item_cover{
        overflow: hidden;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
    }
}

.highlights_item_header {
    flex-basis: 50%;
    max-width: 500px;
}

@media(max-width: 1280px){
    .highlights_item_header{
        max-width: 100%;
        padding: 0 30px;
    }
}

@media(max-width: 1024px){
    .highlights_item_header{
        flex-basis: 100%;
        max-width: 100%;
        text-align: center;
        padding-top: 30px;
    }
}

.highcontrast .highlights_item_header {
    color: #000;
}

.highlights_item_header h1 {
    font-size: 2.2em;
    line-height: 1;
    font-weight: 600;
}

@media(max-width: 1366px){
    .highlights_item_header h1 {
        font-size: 2em;
        line-height: 1;
    }
}

@media(max-width: 1024px){
    .highlights_item_header h1 {
        font-size: 1.4em;
        line-height: 1;
    }
}

.highlights_item_header p {
    font-size: 1.2em;
    line-height: 1.1;
    font-weight: 300;
    margin-top: 20px;
}

@media(max-width: 1366px){
    .highlights_item_header p {
        font-size: 1em;
        line-height: 1;
    }
}

.highlights_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.highlights_info .btn {
    background-color: #ff2c54;
    font-size: 1em;
    font-weight: 600;
    color: #FFF;
    padding: 15px 40px;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;

    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

@media(max-width: 1024px){
    .highlights_info .btn {
        width: 100%;
    }
}

.highlights_info .btn:hover {
    background-color: #840c23;
}

.highlights_info_social {
    display: flex;
    flex-wrap: wrap;
}

@media(max-width: 1024px){
    .highlights_info_social {
        display: none;
    }
}

.highlights_info_social a {
    margin-right: 3px;
}

.highlights_info_social a:last-child {
    margin-right: 0;
}

/*dots*/
.highlights_list .slick-dots {
    margin-top: 30px;
    text-align: center;
    z-index: 8;
    position: relative;
}

.highlights_list .slick-dots li {
    display: inline-block;
}

.highlights_list .slick-dots li button {
    background: #b1b7b9;
    display: block;
    width: 34px;
    height: 10px;
    margin: 2px;
    cursor: pointer;

    font-size: 0;
    outline: 0;
    padding: 0;
    border: 0;

    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.highlights_list .slick-dots li:hover button,
.highlights_list .slick-dots li.slick-active button {
    width: 34px;
    background: #3cbb79;
}

/*
========================
======================== INFORMATION
========================
*/

.information {
    margin-top: 90px;
}

.information .content {
    background-color: #FFF;
    display: flex;
    flex-wrap: wrap;

    box-shadow: 0px 0px 30px 0px rgba(234, 234, 234, 0.8) !important;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(234, 234, 234, 0.8) !important;
    -moz-box-shadow: 0px 0px 30px 0px rgba(234, 234, 234, 0.8) !important;

    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;

    overflow: hidden;
}

.highcontrast .information .content{
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.information_item {
    flex-basis: 20%;
    border-right: 1px solid #eaeaea;
    border-bottom: 4px solid transparent;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .information_item {
        flex-basis: 50%;
        border-right: 1px solid #eaeaea;
        border-bottom: 1px solid #eaeaea;
    }

    .information_item:nth-child(2n),
    .information_item:nth-child(4n) {
        border-right: 0;
    }


    .information_item:nth-child(3n),
    .information_item:nth-child(4n) {
        border-bottom-color: transparent;
    }
}


@media (max-width: 680px) {
    .information_item {
        flex-basis: 100%;
        border-right: 0;
        border-bottom: 1px solid #eaeaea;
    }

    .information_item:nth-child(4n) {
        border-bottom-color: transparent;
    }
}

.information_item:hover {
    border-bottom: 4px solid #ff2c54;
}

.information_item:last-child {
    border-right: 0;
}

.information_item div {
    text-align: center;
    padding: 40px;
}

@media(max-width: 1366px){
    .information_item div {
        padding: 20px;
    }
}

.information_item div img {
    margin-bottom: 10px;
}

@media(max-width: 1366px){
    .information_item div img {
        height: 75px;
    }
}

.information_item div h1 {
    font-size: 1.375em;
    line-height: 1.455;
    font-weight: 600;
    color: #000;
}

@media(max-width: 1366px){
    .information_item div h1{
        font-size: 1.1em;
        line-height: 1;
        margin-bottom: 10px;
    }
}

.information_item div p {
    font-size: 1em;
    line-height: 1.375;
    font-weight: 300;
    color: #000;
}

@media(max-width: 1366px){
    .information_item div p{
        font-size: 0.875em;
        line-height: 1;
    }
}

/*
========================
======================== NEWS
========================
*/

.news {
    margin-top: 80px;
}


.news_list {
    position: relative;
    overflow: hidden;
}

.news_item {
    float: left;
    background: #EEE;

    /*background-image: linear-gradient(to right, #1a814b 0%, #1a814b 50%, #1a814b 100%);*/
    /*float: left;*/
    /*position: relative;*/
    /*overflow: hidden;*/
    border: 10px solid #FFF;
    overflow: hidden;

    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}

.highcontrast .news_item{
    border-color: #000;
}

.news_item:nth-of-type(1) {
    clear: left;
}

/*@media (max-width: 1024px) {*/
/*    .news_item{*/
/*        width: 100% !important;*/
/*        height: 320px !important;*/
/*    }*/
/*}*/

.news_item_cover {
    width: 100%;
}

.news_item_cover img{
    min-width: 100%;
    height: 180px;
    object-fit: cover;
}

.news_item:nth-of-type(1) .news_item_cover img{
    height: 590px;
}

@media(max-width: 1024px){
    .news_item:nth-of-type(1) .news_item_cover img{
        height: 180px;
    }
}


/*.news_item:hover .news_item_cover {*/
/*    opacity: 0.3;*/

/*    -moz-transform: scale(1.1);*/
/*    -webkit-transform: scale(1.1);*/
/*    transform: scale(1.1);*/
/*}*/

.news_item:nth-of-type(1) {
    width: 50%;
    height: 803px;
}

/*@media(max-width: 1366px){*/
/*    .news_item:nth-of-type(1) {*/
/*        height: 420px;*/
/*    }*/
/*}*/

.news_item:nth-of-type(2),
.news_item:nth-of-type(3),
.news_item:nth-of-type(4),
.news_item:nth-of-type(5) {
    width: 25%;
    height: 400px;
}

/*@media(max-width: 1366px){*/
/*    .news_item:nth-of-type(2),*/
/*    .news_item:nth-of-type(3),*/
/*    .news_item:nth-of-type(4),*/
/*    .news_item:nth-of-type(5) {*/
/*        height: 210px;*/
/*    }*/
/*}*/


@media(max-width: 1024px){
    .news_item:nth-of-type(1),
    .news_item:nth-of-type(2),
    .news_item:nth-of-type(3),
    .news_item:nth-of-type(4),
    .news_item:nth-of-type(5){
        width: 100%;
        height: 300px;
    }
}


.news_item_header {
    width: 100%;
    padding: 20px;
}

.news_item:nth-of-type(1) .news_item_header {
    padding: 30px;
}

@media(max-width: 1366px){
    .news_item:nth-of-type(1) .news_item_header {
        padding: 20px;
    }
}

@media(max-width: 1366px){
    .news_item_header {
        padding: 15px;
    }
}

.news_item_header h1 {
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
}



.news_item:nth-of-type(1) .news_item_header h1 {
    font-size: 1.4em;
    line-height: 1.6;
}

@media(max-width: 1366px){
    .news_item:nth-of-type(1) .news_item_header h1 {
        font-size: 1.1em;
        line-height: 1.2;
    }
}


@media(max-width: 1024px){
    .news_item_header h1,
    .news_item:nth-of-type(1) .news_item_header h1 {
        font-size: 1.1em;
        line-height: 1;
    }
}

.news_item_header p {
    font-size: 0.875em;
    font-weight: 300;
    color: #000;
    margin-top: 10px;
}

@media(max-width: 1024px){
    .news_item_header p {
        font-size: 0.875em;
    }
}

.news_item_header p:before {
    color: #3cbb79;
}

/*
========================
======================== COMMUNICATED / SCHEDULE
========================
*/

.communicated_schedule {
    margin-top: 80px;
}

.communicated_schedule .content {
    display: flex;
    flex-wrap: wrap;
}

/*
### COMMUNICATED
*/

.communicated {
    flex-basis: 48.5%;
    margin-right: 3%;
    overflow: hidden !important;
}

@media(max-width: 1024px){
    .communicated {
        flex-basis: 100%;
        margin-right: 0;
    }
}

.communicated_item {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;

    overflow: hidden;
}

.communicated_item img{
    width: 100%;
}

/*dots*/
.communicated .slick-dots {
    margin-top: 30px;
    text-align: center;
    z-index: 8;
    position: relative;
}

.communicated .slick-dots li {
    display: inline-block;
}

.communicated .slick-dots li button {
    background: #b1b7b9;
    display: block;
    width: 34px;
    height: 10px;
    margin: 2px;
    cursor: pointer;

    font-size: 0;
    outline: 0;
    padding: 0;
    border: 0;

    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.communicated .slick-dots li:hover button,
.communicated .slick-dots li.slick-active button {
    width: 34px;
    background: #3cbb79;
}

/*
### SCHEDULE
*/

.schedule {
    flex-basis: 48.5%;
}


@media(max-width: 1024px){
    .schedule {
        flex-basis: 100%;
        margin-top: 30px;
    }
}

.schedule .section_title {
    text-align: left;
    margin-bottom: 20px;
}


@media(max-width: 1024px){
    .schedule .section_title {
        text-align: center !important;
    }
}

.schedule_item {
    display: flex;
    margin-bottom: 10px;
}

.schedule_item:last-child {
    margin-bottom: 0;
}

@media(max-width: 1024px){
    .schedule_item {
        margin-bottom: 20px;
        flex-direction: column;
    }
}

.schedule_item_date {
    flex-basis: 25%;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;

    background-color: #3cbb79;

    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

@media (max-width: 1366px) {
    .schedule_item_date {
        padding: 15px;
    }
}

@media(max-width: 1024px){
    .schedule_item_date {
        flex-basis: 100%;
    }
}

.schedule_item_date h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #FFF;
}

@media (max-width: 1366px) {
    .schedule_item_date h1 {
        font-size: 1.4em;
    }
}

.schedule_item_date span {
    font-size: 1em;
    font-weight: 700;
    color: #FFF;
}


@media (max-width: 1366px) {
    .schedule_item_date span {
        font-size: 0.875em;
    }
}

.schedule_item_header {
    flex-basis: 75%;
    padding-left: 20px;
}



@media(max-width: 1024px){
    .schedule_item_header {
        flex-basis: 100%;
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
    }

}

.schedule_item_header h2 {
    font-size: 1.375em;
    font-weight: 600;
    color: #000;
}

@media(max-width: 1366px){
    .schedule_item_header h2{
        font-size: 1.1em;
    }
}

.highcontrast .schedule_item_header h2,
.highcontrast .schedule_item_header p{
    color: #FFF;
}

.schedule_item_header p {
    max-width: 350px;
    font-size: 1em;
    font-weight: 300;
    color: #000;
    line-height: 1.125;
    margin-top: 5px;
}

@media(max-width: 1366px){
    .schedule_item_header p{
        font-size: 0.875em;
    }
}

@media(max-width: 1024px){
    .schedule_item_header p{
        max-width: 100%;
    }
}

.schedule_link {
    text-align: center;
}

.schedule_link a {
    font-size: 1em;
    color: #3cbb79;
}

.schedule_link a:hover {
    text-decoration: underline;
}

/*
========================
======================== CAMPAIGNS
========================
*/

.campaigns {
    margin-top: 80px;
}

.campaigns .content {

}

.campaigns_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.campaigns_item {
    flex-basis: calc(20% - 20px);
}

.campaigns_item:last-child {
    margin-bottom: 0;
}

@media(max-width: 1024px){
    .campaigns_item {
        flex-basis: calc(50% - 20px);
        margin-bottom: 40px;
    }
}

@media(max-width: 680px){
    .campaigns_item {
        flex-basis: 100%;
        margin:0 0 40px 0;
    }
}

.campaigns_item img{
    min-width: 100%;
    height: 230px;
    object-fit: cover;
}