:root{
    /* Colors */
    --primary-color: #1A5890;
    --primary-color-light: #4879A6;
    --primary-color-dark: #154673;
    --secundary-color: #5DBA98;
    --secundary-color-2: #469996;
    --secundary-color-light: #8ECFB7;
    --secundary-color-dark: #297459;
    --neutral-color: #E1E0E7;
    --neutral-color-light: #F1F0F5;
    --neutral-color-light-2: rgba(242, 242, 242, .16);
    --neutral-color-dark-1: #707070;
    --neutral-color-dark: #444444;
    --gradient-color: linear-gradient(58deg, var(--primary-color) 0%, var(--secundary-color) 100%);

    --black-color: #000;
    --white-color: #fff;

    --youtube-red: #F80004;
    --instagram-purple: #C200FF;
    --facebook-blue: #4864F4;
    --whatsapp-green: #1BDE3E;
    
    /* Fonts */
    --font-family-primary: 'Open Sans', arial, sans-serif;
    --font-size-little: 12px;
    --font-size-xxxs: 14px;
    --font-size-xxs: 16px;
    --font-size-xs: 18px;
    --font-size-sm: 20px;
    --font-size-md: 24px;
    --font-size-lg: 32px;
    --font-size-xl: 40px;
    --font-size-xxl: 48px;
    --font-size-xxxl: 56px;

    /* Tamanhos */
    --container-width: 80%;
}

/* Reset */

html, body, *{
    font-family: var(--font-family-primary);
    font-weight: 400;
    margin: 0;
    padding: 0;
    border: 0;
    left: 0;
    top: 0;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

address{
    font-style: normal;
}

ol, ul {
	list-style: none;
}

a{
    text-decoration: none;
}

details summary::-webkit-details-marker,
details summary::marker {
    display: none;
    content: "";
}

img{
    user-select: none;
}

textarea{
    resize: none;
}

html body iframe{
    aspect-ratio: 16 / 9;
    width: 100% !important;
    height: auto !important;
}

/* Geral */

html, body{
    scroll-behavior: smooth;
}

.left{
    text-align: left;
}

.right{
    text-align: right;
}

.center{
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.w-100{
    width: 100%;
}

.w-111{
    width: 111.5%;
}

.mb-1{
    margin-bottom: 1.2rem;
}

.desktop-none{
    display: none;
}

.btn-donate{
    background-color: var(--white-color);
    color: var(--neutral-color-dark) !important;
    border-radius: 20px;
    padding: .5rem 1.7rem;
}

#content{
    min-height: 50vh;
}

#topo{
    padding-top: calc(3.2rem + 4rem) /* altura da barra R7 + barra de doação + menu  */
}

.bold{
    font-weight: 700;
}

.overlay{
    display: none;
}

.bg-gradient{
    background: var(--gradient-color);
}

/* Hero Banner */

#hero{
    background: linear-gradient(85.47deg, #73A9DB 7.32%, #CCDCF3 104.54%);
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    height: 26vh;
    padding: 0 2rem;
}

.hero-title{
    font-size: var(--font-size-xxl);
    font-weight: 300;
}

.hero-subtitle{
    font-size: 22px;
    font-weight: 400;
    margin-top: .3rem;
}

.hero-title, .hero-subtitle{
    color: #154673;
    width: 100%;
}

/* Barra para doar agora */

.donate-now-bar{
    width: 60%;
    background: var(--gradient-color);
    border-radius: 5rem;
    margin: 0 auto;
    display: none;
    align-items: center;
    grid-template-columns: 80% 20%;
    height: 5rem;
    padding: 0 2rem;
    color: var(--white-color);
    margin-top: 2rem;
}

.donate-now-title{
    font-weight: 400;
    font-size: 23px;
}

.donate-now-btn{
    text-align: right;
}

/* Botão flutuante do WhatsApp */

#whatsapp{
    position: fixed;
    right: 8%;
    left: auto;
    top: auto;
    bottom: 8%;
    margin-bottom: 1rem;
    background-color: var(--white-color);
    width: 3.5rem;
    height: 3.5rem;
    text-align: center;
    box-shadow: 0px 4px 16px 0px #00000040;
    border-radius: 50%;
    font-size: var(--font-size-md);
}

#whatsapp a{
    display: block;
    width: 100%;
    height: 100%;
    line-height: 3.5rem;
    color: var(--whatsapp-green);
}

/* Barra de Mídias Sociais */

.social-medias .btn-donate{
    display: inline-block;
    font-size: var(--font-size-xxxs);
    margin-left: 2rem;
}

.social-medias{
    display: none;
    grid-template-columns: 60% 40%;
    min-height: 4rem;
    padding: 0 3rem;
    align-items: center;
    background: var(--gradient-color);
    color: var(--white-color);
    font-size: var(--font-size-xxs);
}

.social-icons a{
    display: inline-block;
    text-align: center;
    line-height: 2rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: var(--font-size-xs);
    background-color: var(--white-color);
    color: var(--neutral-color-dark-1);
    margin-left: .3rem;
}

.social-icons a:hover{
    transition: .2s;
}

.social-icons a.facebook:hover{
    color: var(--facebook-blue);
    outline: 1px solid var(--facebook-blue);
}

.social-icons a.youtube:hover{
    color: var(--youtube-red);
    outline: 1px solid var(--youtube-red);
}

.social-icons a.instagram:hover{
    color: var(--instagram-purple);
    outline: 1px solid var(--instagram-purple);
}

/* Menu */

#navbar{
    margin-top: 50px;
    width: 100vw;
    position: fixed;
    z-index: 100;
}

#menu{
    background-color: var(--white-color);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menu-list{
    display: grid;
    grid-template-columns: 15% 63% 20%;
    font-size: var(--font-size-xxs);
    background-color: var(--white-color);
    align-items: center;
    padding: 0 1rem;
}

.menu-list, .menu-list .menu-item a:not(.dropdown-sub-link), .menu-list .menu-item span{
    color: var(--neutral-color-dark);
    height: 4rem;
}

.menu-list .menu-item a.dropdown-sub-link{
    color: var(--neutral-color-dark);
    text-align: left;
    line-height: 1.3;
    white-space: nowrap;
}

ul.menu-list li.menu-item:not(.search){
    min-width: 3rem;
    max-width: 9rem;
    /* float: left; */
    text-align: center;
}

.menu-item.logomark img{
    width: 90%;
    margin-top: 0.6rem;
}

ul.menu-links li.menu-item:hover a::before,
ul.menu-links li.menu-item:hover span::before{
    content: '';
    position: absolute;
    top: 93.4%;
    left: 0;
    width: 100%;
    border-bottom: .3rem solid var(--secundary-color);
}

ul.menu-links li.menu-item:hover a.dropdown-sub-link::before{
    content: '';
    border-bottom: none;
}

.menu-links .menu-item a,
.menu-links .menu-item span{
    align-items: center !important;
    display: flex;
    position: relative;
}

.menu-links{
    display: flex;
    justify-content: space-between;
}

.dropdown-call:hover{
    cursor: pointer;
}

.menu-item.dropdown .dropdown-call::after{
    content: '';
    background: url('http://homol-ressoar.ir7.com.br/wp-content/themes/ressoar/assets/images/chevron.svg');
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    position: relative;
    width: 14px;
    height: 14px;
    margin-left: 0.4rem;
    transform: rotate(90deg);
}

.menu-item.dropdown:hover .dropdown-call::after{
    transform: rotate(-90deg);
}

.menu-item.dropdown:hover .menu-item-list-dropdown{
    display: grid;
    grid-template-columns: 55% 45%;
    position: absolute;
    top: auto;
    left: auto;
    background-color: #F9F9F9;
    border-radius: 0rem 0rem 0.22rem 0.22rem;
    box-shadow: 0px 18px 25px -8px rgba(0, 7, 56, 0.10);
    padding: 1.8rem;
    width: 35vw;
}

.menu-item-list-dropdown{
    display: none;
}

.menu-item.dropdown .menu-item-list-dropdown .menu-item-dropdown,
.menu-item.dropdown .menu-item-list-dropdown .menu-item-dropdowna {
    font-size: var(--font-size-xxxs);
    height: 1.5rem;
}

.menu-item-dropdown.bold{
    text-align: left;
}

.dropdown-column-1{
    border-right: 1px solid #E1E0E7;
}

.dropdown-column-2{
    padding-left: 1.3rem;
}

/* Barra de Busca */

.menu-item.search{
    display: grid;
    justify-content: end;
    width: 100%;
}

.search-box {
	width: fit-content;
	height: fit-content;
	position: relative;
}

.input-search {
    width: 3rem;
    height: 3rem;
	border-style: none;
	padding: 10px;
	font-size: 18px;
	letter-spacing: 2px;
	outline: none;
	border-radius: 0.6rem;
	transition: all 0.5s ease-in-out;
	background-color: #f1f0f5;
	padding-right: 40px;
	color: #707070;
}

.input-search::placeholder {
	color: #707070;
	font-size: 16px;
	letter-spacing: 1px;
}

.btn-search {
    width: 3rem;
    height: 3rem;
	border-style: none;
	font-size: 18px;
	font-weight: bold;
	outline: none;
	cursor: pointer;
	border-radius: 50%;
	position: absolute;
	right: 0px;
	color: #444;
	background-color: transparent;
    left: auto;
}

.input-search:focus,
.btn-search:focus ~ .input-search {
	width: 15vw;
	transition: all 0.6s cubic-bezier(0, 0.5, 0.35, 1);
}

.mobile-menu-btn{
    display: none;
}

/* Slider */

.slide-description{
    color: #fff;
    text-align: left;
    height: 460px;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    margin-left: 10%;
}

.slide-category {
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
}

.slide-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 57px;
    padding-top: 1rem;
    padding-bottom: 1.8rem;
}

.slide-description-text{
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.slide-link{
    color: #444;
    background-color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    padding: 0.6rem 1.6rem;
    border-radius: 4rem;
    margin-top: 1.8rem;
}

/* Sessão Sobre Nós da Home */

.item-mobile{
    display: none;
}

.about-us-box{
    display: grid;
    grid-template-columns: 35% 65%;
    width: 60%;
    margin: 3rem auto;
}

.about-us-img img{
    width: 100%;
    height: auto;
}

.about-us-circle{
    border-radius: 100%;
}

.about-us-description{
    padding-left: 5rem;
}

.about-us-title{
    font-size: 48px;
    color: #1A5890;
    font-weight: 300;
}

.about-us-text{
    font-size: 16px;
    line-height: 27px;
    padding: 3.2rem 0;
}

.btn-learn-more{
    background-color: #154673;
    border-radius: 20px;
    color: #FFFFFF;
    font-size: 16px;
    padding: 0.45rem 1.45rem;
}

strong{
    font-weight: 700;
}

/* Sessão de Prestação de Contas */

.mb-0{
    margin-bottom: 0;
}

.mb-6{
    margin-bottom: 60px;
}

.numbers-grid{
    display: grid;
    grid-template-columns: 55% 45%;
    color: #FFF;
    width: 60%;
    margin: 0 auto;
    padding: 3.5rem 0;
}

.numbers-title{
    font-size: 48px;
    font-weight: 300;
    line-height: 57px;
    text-align: left;
}

.numbers-text{
    width: 80%;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    margin: 2rem 0;
}

.numbers-description{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
}

.numbers-btn{
    padding-top: .4rem;
}

.numbers-list{
    width: 100%;
}

td.number-icon {
    display: flex;
    height: 3.5rem;
    width: 3.5rem;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
    color: #5DBA98;
    font-size: 32px;
    border-radius: 3rem;
    margin-top: 0.4rem;
}

.number-principal{
    font-size: 38px;
    font-weight: 700;
    line-height: 45px;
    text-align: left;
}

.number-call-info{
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;  
    margin-bottom: 1.8rem;  
}

/* Seção de Atualidades */

.blog-news{
    padding: 2.5rem 0;
}

.blog-news-title{
    color: #1A5890;
    font-size: 48px;
    font-weight: 300;
    line-height: 57px;
    text-align: left;
    width: 60%;
    margin: 0 auto;
    padding-bottom: 2.4rem;
}

.blog-news-box {
    display: grid;
    grid-template-columns: 24% 24% 24% 24%;
    width: 60%;
    margin: 0 auto;
    gap: 1rem;
}

.list-blog-post-img{
    width: 100%;
    margin-bottom: 0.8rem;
}

.blog-news-box .new{
    background-color: #FFF;
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    box-shadow: 0px 13px 10px -8px #0007381A;
    cursor: pointer;
}

.post-body {
    color: #444;
    padding: 0.6rem 1rem 1.4rem 1rem;
    text-align: left;
    height: auto;
}

.post-body p:not(.post-date){
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (min-height: 400px) and (max-height: 790px) {
    .post-body p:not(.post-date) {
        -webkit-line-clamp: 2 !important;
    }
}

.post-date{
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
}

.post-title{
    margin: 0.4rem 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
}

.post-description{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

/* Seção de Doe Agora */

.donate-grid {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    gap: 2%;
    color: #FFF;
    width: 70%;
    margin: 0 auto;
    padding: 3.5rem 0;
}

.donate-section-title{
    font-size: 64px;
    font-weight: 300;
    line-height: 76px;
    text-align: left;
    margin-bottom: 2.5rem;
}

.donate-section-desc{
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
}

.donate-column-pix, .donate-column-transfer {
    background: #FFF;
    border-radius: 6px;
    text-align: center;
    padding: 1.3rem;
}

.donate-column-pix h3, 
.donate-column-transfer h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 27px;
    color: #1A5890;
}

.donate-column-pix p, 
.donate-column-transfer p {
    color: #444;
}

.donate-column-pix p.my-2, 
.donate-column-transfer p.my-2 {
    width: 75%;
    margin: 1rem auto;
}

.donate-infos-transfer{
    font-size: 14px;
    font-weight: 700;
    line-height: 27px;
    text-align: left;
}

.donate-img-pix{
    width: 40%;
    margin: 0 auto;
}

.donate-qrcode-pix{
    width: 100%;
}

.donate-column-description{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
}

.donate-column-transfer{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-around;
}

/* Seção Outros Meios de Ajudar */

.help-grid {
    display: grid;
    grid-template-columns: 30% 33% 33%;
    gap: 2%;
    padding-bottom: 2.2rem;
}

.help-section-title, .help-grid {
    width: 70%;
    margin: 0 auto;
}

.help-section-title{
    font-size: 48px;
    font-weight: 300;
    line-height: 57px;
    text-align: left;
    color: #1A5890;
    padding: 2.2rem 0;
}

.help-card, .help-card-post {
    background-color: #FFF;
    color: #444444;
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    box-shadow: 0px 13px 10px -8px #0007381A;
}

.help-card-post img{
    width: 100%;
}

.help-card-title{
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
}

.help-card{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 1rem;
}

.help-card-desc{
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    text-align: center;
}

.help-card-email-input{
    width: 100%;
    padding: 1rem;
    border-radius: 4px;
    background-color: #E1E0E7;
}

.help-card-email-input,
.help-card-email-input::placeholder{
    color: #444;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: left;
}

.btn-register{
    background-color: #4879A6;
    color: #FFFFFF;
    width: 70%;
    height: 2.5rem;
    border-radius: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    display: block;
    margin: 1rem auto;
    cursor: pointer;
}

.help-post-desc{
    padding: 1rem 1rem 1.4rem 1rem;
}

.help-card-post-title{
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
    color: #444;
    margin-bottom: 1rem;
}

.help-card-post-desc{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #444;
}

/* Seção de Ressoar na TV */

.television-row{
    height: 50vh;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-evenly;
}

.television-row-content{
    width: 35%;
    margin-left: 15%;
}

.television-row-title{
    font-size: 48px;
    font-weight: 300;
    line-height: 57px;
    text-align: left;
    color: #1A5890;
}

.television-row-desc{
    color: #797588;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    padding: 2rem 0;
}

.television-row-btn{
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
    color: #FFF;
    background-color: #4879A6;
    width: 10rem;
    line-height: 2.5rem;
    border-radius: 20px;
    display: block;
}

.ressoar-title{
    font-size: 28px;
    font-weight: 100;
    line-height: 38px;
    text-align: left;
    color: #444;
    margin: 20px 0;
}

/* Seção de Doe Agora */

.donate-info-card{
    width: 70%;
    display: grid;
    grid-template-columns: 90% 10%;
    gap: .8rem;
    margin: 30px 0;
}

.donate-info-card div:not(.col-1, .col-2){
    border: 1px solid #E1E1E1;
    box-shadow: 0px 13px 10px -8px #0007381A;
    padding: 1.2rem 1.8rem;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 40% 50%;
    gap: 7%;
}

.donate-info-card .col-1{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.donate-info-card img{
    width: 100%;
    height: auto;
}

.donate-text{
    text-align: left;
    color: #444;
    margin: 5px 0 20px 0;
}

.donate-blue-text{
    font-size: 20pt;
    font-weight: 100;
    margin: 15px 0;
    color: #256095;
}

.donate-bold-text{
    font-weight: 600;
    margin: 0;
}

.donate-info-card div p{
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #444; 
}

.donate-info-card div h3, 
.donate-info-blue-text{
    font-size: 20px;
    font-weight: 600;
    color: #256095;
    margin-bottom: 0.5rem;
}

.donate-info-img{
    width: 100px;
    text-align: right;
}

.donate-report-row{
    padding: 20px;
    display: grid;
    grid-template-columns: 60% 35% 5%;
    border-radius: 4px;
}

.grey-color{
    background-color: var(--neutral-color);
}

.white-color{
    background-color: #fff;
}

.donate-report-btn{
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0.5rem;
    padding: 0px 19px;
}

.btn-view, .btn-download{
    border-radius: 6px;
    cursor: pointer;
    padding: 5px 8px;
}

/* ********** Páginas Internas ********** */

.breadcrumb{
    font-size: 16px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0em;
    text-align: left;
    color: #444;
}

.actual-page{
    font-weight: 700;
}

.grid{
    display: grid;
    grid-template-columns: 66% 28%;
    gap: 6%;
}

.container{
    width: 60%;
    margin: 2.5rem auto;
}

.page-intern-title{
    font-size: 42px;
    font-weight: 300;
    line-height: 57px;
    text-align: left;
    color: #1A5890;  
    margin: 1.8rem 0;  
}

.page-intern-subtitle{
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    text-align: left;
    color: #444;
    margin-bottom: 1.6rem; 
}

.page-intern-text{
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #444; 
    margin-bottom: 1.2rem;    
}

.horizontal-line{
    border-bottom: 1px solid #e2e2e2;
}

/* Busca */

.result-search {
    display: grid;
    grid-template-columns: 30% 70%;

    border: 1.4px solid #E1E0E7;
    border-radius: 6px;
    color: #444;
    text-align: left;
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 1.2rem;
}

.result-search-img img{
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.result-search-description {
    padding: 1.5rem;
}

.result-search-title{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.result-search-text {
    padding: 1.3rem 0;
    font-size: 15px;
}

.result-search-btn {
    position: relative;
    background-color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 3rem;
    color: #FFF;
}

/* Blog */

.coluna-a .blog-news-box {
    grid-template-columns: 31.5% 31.5% 31.5%;
    width: 100% !important;
}

.coluna-a .post-description {
    font-size: 13px;
    line-height: 17px;
}

.green-text{
    color: #5BB49A;
    font-weight: 600;
}

.header-blog{
    display: grid;
    grid-template-columns: 50% 50%;
}

.share-blog-content{
    display: flex;
    justify-content: end;
    padding-top: 0.6rem;
}

.share-blog-content h5{
    line-height: 5.5rem;
    margin-right: 0.6rem;
}

#share-blog-arrow{
    display: none;
}

.share-blog-social-icons{
    display: flex;
    margin-top: 30px;
}

.share-blog-social-icons a{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E1E0E7;
    color: #fff;
    border-radius: 0.2rem;
    margin-right: 0.2rem;
    width: 2rem;
    height: 2rem;
}

.share-instagram:hover {
    background-color: #C200FF;
    transition: 1s;
}

.share-facebook:hover {
    background-color: #4864F4;
    transition: 1s;
}

.share-twitter:hover {
    background-color: #4693F1;
    transition: 1s;
}

.share-whatsapp:hover {
    background-color: #1BDE3E;
    transition: 1s;
}

.share-linkedin:hover {
    background-color: #2F70B7;
    transition: 1s;
}

.share-email:hover {
    background-color: #EB4337;
    transition: 1s;
}

.divisory h4{
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
    color: #444;
}

.divisory p a{
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    color: #5BB49A;
}

/* Apoio e Parcerias */

.apoio-row{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.apoio-img{
    width: 25%;
    border: 1px solid #E1E1E1;
    box-shadow: 0px 13px 10px -8px #0007381A;
    border-radius: 6px;
    margin-right: 1.3rem;
    text-align: center;
}

.apoio-img img{
    height: auto;
    padding-top: .3rem;
    padding-left: .5rem;
    padding-right: .5rem;
    max-height: 9vh;
}

/* Galeria de Fotos */

.gallery{
    margin-bottom: 1.6rem;
}

.gallery-images {
    display: grid;
    grid-template-columns: 31% 31% 31%;
    column-gap: 1.3rem;
    row-gap: 1.75rem;
}

.gallery-img{
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    height: 9.5rem;
    object-fit: cover;
}

.gallery-title{
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
    color: #444;
    margin-bottom: 1.8rem;
    margin-top: 1.6rem;
}

.gallery-btn{
    text-align: center;
    margin-top: 5%;
}

.btn-gallery{
    cursor: pointer;
    transition: .4s;
    font-size: 18px;
    font-weight: 400;
    color: #FFF;
    background-color: #154673;
    line-height: 2.6rem;
    padding: 0 1.6rem;
    border-radius: 3rem;
}

.btn-gallery:hover{
    background-color: var(--primary-color-dark);
}

.desktop-gallery{
    margin-top: 1.7rem;
}

/* LightBox */

.video-overlay-lightbox.show,
.overlay-lightbox.show{
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-overlay-lightbox,
.overlay-lightbox {
    display: none;
    position: fixed;
    z-index: 99999999;
    background: rgba(6, 5, 5, 0.8);
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

.video-overlay-lightbox .big-pic,
.overlay-lightbox .big-pic {
    background: #fff;
    border-radius: 5px;
    max-width: 60vw;
    max-height: 60vh;
    padding: 1rem;
}

.video-overlay-lightbox .big-pic img,
.overlay-lightbox .big-pic img {
    width: 100%;
}

.video-overlay-lightbox .close,
.overlay-lightbox .close {
    position: absolute;
    top: 8rem;
    left: auto;
    right: 4rem;
    width: 3rem;
    line-height: 3rem;
    font-size: 20px;
    color: #fff;
    display: block;
    cursor: pointer;
    background-color: var(--primary-color);
    text-align: center;
    border-radius: 50%;
}

/* Formulário de Contato */

.contact-form-input, .contact-form-textarea{
    width: 100%;
    padding: 1rem;
    border-radius: 4px;
    background-color: #E1E0E7;
    margin-top: .3rem;
}

.contact-form-input, .contact-form-textarea,
.contact-form-input::placeholder, .contact-form-textarea::placeholder{
    color: #444;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: left;
}

.btn-send-form{
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #fff;
    background-color: #154673;
    width: 6.5rem;
    height: 2.4rem;
    border-radius: 20px;
    cursor: pointer;
    transition: .4s;
}

.btn-send-form:hover{
    background-color: var(--primary-color-dark);
}

.contact-form-title{
    font-size: 40px;
    font-weight: 300;
    line-height: 57px;
    text-align: left;
    color: #1A5890;
    padding: 1.6rem 0;
}

.form-contact-grid{
    display: grid;
    grid-template-columns: 58% 39%;
    gap: 3%;
}

.contact-form-label{
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    text-align: left;
    color: #444;
}

.form-contact-row {
    margin-top: 1.8rem;
}

.form-contact-row:first-of-type{
    margin-top: 0;
}

.contact-form-textarea{
    height: 9rem;
}

.google-captcha{
    height: 1.6rem;
}

.contact-form-subtitle{
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    text-align: left;
    color: #797588;
    margin-bottom: 1.35rem;
}

/* Página Sobre Nós */

.quotation{
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    text-align: left;
    color: #444;
    font-style: normal;
}

.values-grid {
    display: grid;
    grid-template-columns: 48% 48%;
    column-gap: 4%;
    row-gap: 4%;
    margin: 2.4rem 0;
    padding-bottom: 0.8rem;
    color: #444;
    text-align: left;
}

.values-title{
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 1.2rem;
}

.values-description{
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
}

.list-disc{
    list-style: disc;
    margin-left: 1.5rem;
}

.list-disc li{
    padding-bottom: 0.2rem;
}

.ours-projects{
    width: 85%;
    margin: 0 auto;
}

.our-project-card-img{
    width: 100%;
}

.ours-projects-row {
    display: grid;
    grid-template-columns: 31% 31% 31%;
    gap: 3.5%;
    margin-bottom: 4.5rem;
}

.our-project-card{
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 13px 10px -8px #0007381A;
    border: 1px solid #F0EFF5;
    border-radius: 6px;
}

.our-project-card-title{
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    margin: 1.5rem 0;
}

.our-project-card-btn{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #fff;
    background-color: #4879A6;
    padding: 0.5rem 1.2rem;
    border-radius: 4rem;
}

.our-project-card-btn-box{
    margin: 2rem 0;
}

.video-box img{
    border-radius: 6px;
}

.video-box{
    cursor: pointer;
    position: relative;
}

.video-overlay{
    display: none;
    position: absolute;
}

.video-overlay.closed{
    display: grid;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 99%;
    border-radius: 6px;
    background-color: rgba(50, 50, 50, .65);
}

.play-btn{
    height: auto;
    width: 45%;
    display: block;
    margin: 0 auto;
}

/* Nossa História */

#our-history{
    margin-bottom: 2.8rem;
}

.titles-margin-box{
    width: 95%;
    margin: 0 auto;
}

.history-slider {
    width: 100%;
    height: 50px;
    overflow: hidden;
}

.slide-line{
    height: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #444;
}

.is-active .slide-line{
    font-size: 18px;
    font-weight: 700;
    margin-top: 1rem;
}

.timeline-view {
    display: grid;
    grid-template-columns: 50% 50%;
}

.timeline-view-img{
    height: auto;
    max-height: 73vh;
}

.timeline-description{
    max-height: 61.4vh;
    overflow-y: scroll;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    text-align: left;
    color: #444;
}

.timeline-description p:not(:first-child){
    margin-top: 1.4rem;
}

.timeline-description .first-line{
    font-weight: 700;
    display: inline-block;
    text-indent: -5px;
}

.timeline-description .first-line::before{
    content: '•';
    position: relative;
    left: -3.5%;
    right: auto;
}

.timeline-description{
    padding-left: 5%;
    padding-top: 1%;
    padding-bottom: 5%;
    padding-right: 10%;
}

.splide__slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.splide__slide {
    opacity: 0.6;
}

.splide__slide.is-active {
    opacity: 1;
}

.splide__arrow--prev {
    left: 1em;
    right: auto;
}

.splide__arrow--next {
    right: 1em;
    left: auto;
}

.splide__track.splide__track--slide.splide__track--ltr.splide__track--draggable.splide__track--nav{
    padding: 0.6rem 3.5rem !important;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
    border: none !important;
}

#thumbnail-carousel .splide__slide,
#thumbnail-carousel-mobile .splide__slide{
    margin-right: 0 !important;
    text-align: center;
    width: 9rem !important;
}

.splide__arrow.splide__arrow--next,
.splide__arrow.splide__arrow--prev{
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    box-shadow: 0px 2px 4px 0px #00000080;
}

#main-carousel{
    height: 62vh;
}

#main-carousel-track{
    height: 100%;
}

/* Bloco Veja Também */

.aside-menu-box{
    background-color: #fff;
    border: 1.4px solid #E1E0E7;
    border-radius: 6px;
    padding: 1.3rem 1.6rem;
    color: #444;
    text-align: left;
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 5rem;
}

.aside-menu-title{
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    padding-bottom: 1.3rem;
    border-bottom: 1.4px solid #E1E0E7;
}

.aside-menu-subtitle{
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    margin-top: 1rem;
}

.aside-menu-project-category{
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
    margin: .65rem 0;
}

.aside-menu-link-box a{
    color: #444;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
}

.aside-menu-link-box{
    margin: .5rem 0;
}

/* Rodapé */

#footer{
    background: #F1F0F5;
}

#footer, #footer a:not(.footer-instagram, .footer-youtube, .footer-facebook, .footer-whatsapp){
    color: #444444;
}

#footer h5{
    font-size: var(--font-size-xs);
    font-weight: 700;
    margin: 2.2rem 0;
    color: #154673;
}

#footer .be-partner-title{
    margin-bottom: 1.5rem;
}

.footer-bottom{
    border-top: .1rem solid var(--neutral-color-light-2);
}

#footer .info-list .info-list-item a i{
    font-size: var(--font-size-xs);
}

.info-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: var(--container-width);
    height: 4rem;
    margin: 0 auto;
}

.info-list .info-list-item{
    float: left;
}

.footer-about p{
    width: 75%;
    margin-top: 2rem;
    font-size: var(--font-size-xxs);
    line-height: 27px;
}

.footer-icon{
    background-color: var(--white-color);
    border-radius: .3rem;
    padding: 2rem 1rem;
    width: 60%;
    padding: .9rem;
    padding-bottom: 0.3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.footer-icon img{
    width: 100%;
}

.footer-columns{
    display: grid;
    grid-template-columns: 22% 34% 22% 22%;
    width: var(--container-width);
    margin: 0 auto;
    padding: 3rem 0;
}

.footer-social-icons{
    display: flex;
}

.footer-social-icons a{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    color: #154673;
    font-size: 130%;
    border-radius: .2rem;
    margin-right: .6rem;
    width: 2.5rem;
    height: 2.5rem;
}

#footer .btn-donate{
    background-color: #FFF;
    color: #444 !important;
}

.record-links img{
    margin-right: .8rem;
    min-width: 3.3rem;
    max-height: 3.3rem;
}

.footer-links{
    padding-left: 3rem;
}

.footer-links-grid{
    display: grid;
    grid-template-columns: 35% 65%;
}

.footer-links-grid a{
    display: inline-flex;
    padding-bottom: 1rem;
}

#footer .social-links .mobile-none .btn-donate.btn-partner{
    background-color: #154673;
    color: #F1F0F5 !important;
}

/* Banner LGPD */

.toolkit-card.show {
    display: block;
}

.toolkit-card {
    position: fixed;
    z-index: 1000;
    width: 60%;
    min-height: 4.5rem;
    max-height: 6rem;
    top: 87%;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: slide-top 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-top 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.toolkit-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 9px 0 rgba(0,0,0,.41);
    padding: 1.4rem;
}

.toolkit-text {
    width: 85%;
    font-size: 14px;
    text-align: left;
}

.toolkit-text a{
    color: #218ee1;
    text-decoration: underline;
}

.toolkit-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border-radius: 4px;
    border: 0;
    background-color: var(--secundary-color);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    height: 39px;
    width: 106px;
    margin: 0 .6rem;
}

.toolkit-btn:hover{
    transition: .4s;
    background-color: var(--secundary-color-2);
}

.toolkit-close{
    -webkit-animation: slide-bottom 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-bottom 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(200px);
        transform: translateY(200px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(200px);
        transform: translateY(200px);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(200px);
        transform: translateY(200px);
    }
}

@keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(200px);
        transform: translateY(200px);
    }
}

/* Seção dos cards com temas */

.theme-cards{
    margin: 60px 0 30px 0;
}

.theme-cards-title{
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    text-align: left;
    color: #444;
    margin: 40px 0;
}

.theme-cards-box {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    gap: 1rem;
}

.card-theme{
    background-color: #FFF;
    border: 1px solid #E1E1E1;
    border-radius: 8px;
    box-shadow: 0px 13px 10px -8px #0007381A;
}

.theme-card-body {
    color: #444;
    padding: 0.6rem 1rem 1.4rem 1rem;
    text-align: left;
}

.theme-card-header{
    display: grid;
    grid-template-columns: 20% 80%;
    margin: 0.4rem 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
}

.theme-card-icon{
    background-color: #C0D45D;
    color: var(--secundary-color-dark);
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    border-radius: 50%;
    line-height: 2.5rem;
}

.theme-card-title{
    text-transform: capitalize;
    margin: 0.4rem;
    font-size: 12pt;
    font-weight: 600;
    height: 4.6rem;
    align-items: flex-end;
    display: flex;
}

.theme-card-description{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
}

/* Seção dos cards com contadores */

.counter-cards-box {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}

.card-counter{
    background-color: #FFF;
}

.counter-card-body {
    color: #444;
    padding: 0.6rem 0.5rem 1.4rem 0.5rem;
    text-align: center;
}

.counter-card-header{
    margin: 0.4rem 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
}

.counter-card-icon{
    background-color: #C0D45D;
    color: var(--secundary-color-dark);
    width: 3.5rem;
    height: 3.5rem;
    text-align: center;
    border-radius: 50%;
    line-height: 3.3rem;
    margin: 0 auto;
}

.counter-card-icon{
    font-size:18pt;
}

.counter-card-title{
    margin: 0.5rem;
    font-size: 24px;
    font-weight: 700;
}

.counter-card-description{
    font-size: 14px;
    font-weight: 400;
}

/* Google Captcha */

.google-captcha{
    position: relative;
    height: auto;
    width: 22rem;
    display: block;
    margin: 2rem 0;
}

#recaptcha-v3 {
    position: relative;
    width: 88%;
    display: grid;
    grid-template-columns: 65% 35%;
    padding: .5rem;
    background-color: #fbfbfb;
    border-radius: 4px;
    border: 1px solid #dcdbe0;
}

.icon-box, .captcha-links a{
    color: #444;
}

.captcha-title{
    font-size: 12px;
}

.captcha-links a{
    font-size: 9px;
}

.captcha-links{
    line-height: 8px;
}

.label-recaptcha{
    color: #222;
    font-weight: 600;
    font-size: 14px;
}

.icon-box{
    text-align: right;
}

.captcha-img img{
    width: 40%;
}

.captcha-img{
    width: 80%;
    margin-left: 20%;
    text-align: center;
}

.select-box{
    display: flex;
    align-items: center;
}

.ui-checkbox {
    --primary-color: #1677ff;
    --secondary-color: #fff;
    --primary-hover-color: #4096ff;
    --checkbox-diameter: 20px;
    --checkbox-border-radius: 4px;
    --checkbox-border-color: #dcdbe0;
    --checkbox-border-width: 1px;
    --checkbox-border-style: solid;
    --checkmark-size: 1.2;
}

.ui-checkbox, .ui-checkbox *, .ui-checkbox *::before, .ui-checkbox *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.ui-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: var(--checkbox-diameter);
    height: var(--checkbox-diameter);
    border-radius: var(--checkbox-border-radius);
    background: var(--secondary-color);
    border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.ui-checkbox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
    box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
    border-radius: inherit;
    opacity: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
    -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
    transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
    top: 40%;
    left: 50%;
    content: "";
    position: absolute;
    width: 4px;
    height: 7px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
    opacity: 0;
    -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
    -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
    transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
}

.ui-checkbox:hover {
    border-color: var(--primary-color);
}

.ui-checkbox:checked {
    background: var(--primary-color);
    border-color: transparent;
}

.ui-checkbox:checked::before {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
    -ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
    transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
    -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
    -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
    transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
    -webkit-transition: none;
    -o-transition: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: none;
    opacity: 1;
}

img.numbers-icon-img {
    width: 2.2rem;
    height: auto;
}

/* Paginação */

.page-numbers{
    border-radius: 4px;
    color: #bbb;
    border: 1px solid #ccc;
    font-size: 16px;
    padding: 0.5rem 0.5rem;
    margin-right: 0.4rem;
}

.page-numbers.current{
    background-color: #ccc;
    color: #909090;
}

.next.page-numbers, .prev.page-numbers{
    padding: 0.5rem 1.5rem !important;
}

/* Redesign */

#accountability.numbers-transparency.bg-gradient{
    background: linear-gradient(85.47deg, #73A9DB 7.32%, #CCDCF3 104.54%);
}

.numbers-title, .numbers-text,
.number-principal, .number-call-info{
    color: #154673;
}

.btn-courses{
    display: inline-block;
    background-color: #154673;
    color: #F1F0F5;
    border-radius: 20px;
    padding: 0.5rem 1.7rem;
}

.title-read-more{
    font-size: 28px;
    font-weight: 600;
    line-height: 34px;
    text-align: left;
    color: #444;
}

.mt-3{
    margin-top: 3rem;
}

.principal-gallery-image{
    height: 28vh;
}

.mobile-gallery-img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0.6rem;
}

/* Galeria de Vídeos */

.mobile-main-video{
    display: none;
}

.gallery-video{
    width: 100%; 
    border-radius: 6px; 
    cursor: pointer; 
    height: 9.5rem; 
    object-fit: cover; 
    border: 1px solid #e3dfdf;
}

.gallery-videos{
    display: grid; 
    grid-template-columns: 31% 31% 31%; 
    column-gap: 1.3rem; 
    row-gap: 1.75rem;
}

.video-gallery-item{
    cursor: pointer;
    position: relative;
}

.video-gallery-player{
    width: auto;
    height: auto;
    min-width: 48vw;
    max-width: 58vw;
    min-height: 35vh;
    max-height: 43vh;
}

.video-gallery-item::after {
    top: 37%;
    height: 60%;
    width: 100%;
    position: absolute;
    display: flex;
    content: '';
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
    border-radius: 6px;
}

.play-video-btn{
    position: absolute;
    width: 2.5rem;
    height: auto;
    top: 70%;
    display: block;
    right: 4%;
    left: auto;
    z-index: 9;
}