
/* HEADER */
div#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 100;
    background: #fff;
}
.header_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
}
.header_logo img {
    width: 38px;
}
.header_wrapper nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 0 24px;
    list-style: none;
}
.header_wrapper nav ul li a {
    font-size: 12px;
    font-weight: 900;
    color: #c83736;
    padding: 6px 12px;
}



nav.desktop{
    display: block;
}

.mobile_menu_container {
    display: none;
}
nav.mobile{
    display: none;
}

/* BANNER */
section#banner {
    padding: 90px 0 0;
}
.banner_item {
    height: 500px;
    position: relative;
}
.banner_item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}
.banner_item .banner_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100%;
    padding: 0 12px;
}
.banner_item .banner_content > img {
    height: 105px;
}
.banner_item .banner_content h1 img {
    height: 30px;
}
.banner_item .banner_content p {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    margin: 0;
    text-align: center;
}


/* SITE */
h2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 24px;
    font-weight: 700;
    color: #c83736;
    text-transform: uppercase;
}
h2 span.pretitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #c83736;
}
.section_columns_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
}
.section_column_container {
    width: 50%;
}
.section_column_wrapper > img {
    width: 230px;
    margin: 0 auto;
    border-radius: 50%;
}
.section_column_wrapper.special_column {
    background: rgb(239 125 129 / 15%);
    border-radius: 24px;
    padding: 18px 16px;
}
.section_column_wrapper.special_column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.section_column_wrapper.special_column ul li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 24px 0;
}
.section_column_wrapper.special_column ul li span.icon {
    min-width: 48px;
    margin: 0 12px 0 0;
}
.section_column_wrapper.special_column ul li span.icon img {
    max-height: 48px;
    max-width: 48px;
    margin: 0;
}
.section_column_wrapper.special_column ul li span h5 {
    margin: 0;
    font-size: 16px;
    color: #c83736;
}
.section_column_wrapper.special_column ul li span p {
    font-size: 16px;
    margin: 0;
}
.section_column_wrapper.special_column h3 {
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
}

.big_title_wrapper {
    min-height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.big_title_wrapper h2 {
    text-align: center;
    display: inline;
}
.big_title_wrapper h2 span {
    color: #2D3047;
}


.toggled_block_wrapper {
    padding: 36px 12px;
}
.toggled_block_container {
    background: #F9F9F9;
    height: 0;
    overflow: hidden;
}
.toggled_block_container.active {
    height: auto;
}


.block_wrapper {
    display: flex;
}
.block_wrapper img {
    width: 308px;
    border-radius: 50%;
}
.block_wrapper p {
    margin: 0 0 0 12px;
}

h3.alt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
h3.alt span.pretitle_icon {
    font-size: 24px;
    color: #c83736;
}
h3.alt span.title {
    font-size: 16px;
}
.section_container {
    padding: 50px 0;
}

ul.big_chart {
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.big_chart li {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.big_chart li .number {
    width: 140px;
    height: 140px;
    min-width: 140px;
    min-height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c83736;
    border: 5px solid #d9d9d9;
    font-size: 28px;
}
ul.big_chart li .desc p {
    font-size: 18px;
    padding: 0 18px;
}
ul.small_chart {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    align-items: start;
}
ul.small_chart li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
ul.small_chart li .number {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 5px solid #d9d9d9;
    border-radius: 50%;
}
ul.small_chart li .number h4 {
    font-size: 20px;
    margin: 0;
}
ul.small_chart li .number.female h4 {
    color: #ef7d81;
}
ul.small_chart li .number.male h4 {
    color:#33658A;
}
ul.small_chart li .number span {
    font-size: 14px;
}
ul.small_chart li .desc p {
    text-align: center;
    font-size: 14px;
    margin: 6px 0;
}
p.sauce {
    font-size: 10px;
    font-weight: 300;
}
.section_column_wrapper.special_column ul.dotted_list li {
    color: #c83736;
    font-size: 16px;
    font-weight: 700;
    padding: 0 0 0 24px;
    margin: 12px 0;
    position: relative;
}
.section_column_wrapper.special_column ul.dotted_list li:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 6px;
    left: 3px;
    background: #ef7d81;
    border-radius: 50%;
}



section#apoiodisponivel h5 {
    font-size: 18px;
}


.support_columns_wrapper ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.support_columns_wrapper ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.support_columns_wrapper ul li > span {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 700;
    color: #c83736;
    width: 100%;
}
.support_columns_wrapper ul li > span img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    object-position: center;
    max-width: 150px;
}
.support_columns_wrapper ul li > p {
    font-size: 14px;
    margin: 6px 0 12px;
}
.support_columns_wrapper ul li > p span {
    color: #c83736;
    font-weight: 700;
}
.support_columns_wrapper ul li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0 6px;
}













/* FOOTER */
.section_prefooter_wrapper ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 56px 0 100px;
}
.section_prefooter_wrapper ul li img {
    height: 48px;
}

footer#footer .section_container {
    background: #c83736;
}
footer#footer .section_container .footer_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 0;
}
footer#footer .section_container .footer_content > img {
    width: 60px;
}
footer#footer .section_container .footer_content h1 {
    margin: 12px 0 0;
}
footer#footer .section_container .footer_content h1 img {
    height: 20px;
}

#footer .section_container_alt {
    background: #b73637;
}
#footer .section_container_alt p {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: 9px;
    font-weight: 300;
}
#footer .section_container_alt .footer_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}
#footer .section_container_alt img {
    width: 60px;
    margin: 6px 0 0;
}