@charset "UTF-8";
header {
  background-color: var(--white);
}

.topbar {
  text-transform: none;
}

.whatsapp-btn {
  background-image: url("/assets/images/whatsapp-button.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 54px;
  height: 54px;
  position: fixed;
  bottom: 28px;
  right: 30px;
  z-index: 9999;
}

.footer-two__widget-logo img {
  padding: 0 30%;
}

.footer-two .footer-two__widget p,
.footer-two .footer-two__widget li a {
  color: white;
}

.footer-two .footer-two__widget li a:hover {
  color: var(--tertiary-color);
}

.footer-two__copyright,
.off-canvas .off-canvas__contact .single a {
  text-transform: none;
}

.footer-two .footer-two__copyright-inner p a {
  color: var(--secondary-color);
}

.gap-top {
  margin-top: 150px;
}

.banner-space {
  /* min-height: 756px; */
  min-height: 400px;
  height: 400px;
}

.banner-item {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-item.active {
  display: block;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.banner-item.fading {
  display: block;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-four {
  background-color: var(--banner-bg-color);
  text-transform: none !important;
  padding: 40px 0px 170px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 90px;
}
@media only screen and (min-width: 1400px) {
  .banner-four {
    margin-top: 142px !important;
  }
}
.banner-four .sub-title {
  font-size: 3rem;
  margin-bottom: 30px;
  margin-top: 0px;
  color: var(--secondary-color);
  display: block;
}
.banner-four h1 {
  font-weight: 700;
  color: var(--white);
  margin: 16px 0px 24px;
}
.banner-four h1 span {
  font-family: var(--caveat);
  color: var(--secondary-color);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left 0px bottom 0px;
  font-size: 40px;
}
.banner-four h1 br {
  display: none;
}
.banner-four h2 {
  color: var(--primary-color);
}
.banner-four p {
  color: var(--template-color);
  max-width: 560px;
}
.banner-four .banner__content-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.banner-four .btn--tertiary,
.banner-four .btn--primary {
  background-color: var(--secondary-color) !important;
  color: var(--white);
  padding: 18px 40px;
  border-radius: 60px;
  font-weight: 700;
  gap: 8px;
}
.banner-four .btn--tertiary::before, .banner-four .btn--tertiary::after,
.banner-four .btn--primary::before,
.banner-four .btn--primary::after {
  border-radius: 0px;
}
.banner-four .btn--tertiary i,
.banner-four .btn--primary i {
  transform: rotate(-45deg);
  transition: transform 0.5s ease, color 0s ease;
  font-size: 18px;
}
.banner-four .btn--tertiary:hover i,
.banner-four .btn--primary:hover i {
  transform: rotate(0deg);
}

@media only screen and (min-width: 1400px) {
  .banner-four h2 {
    font-size: 45px !important;
    line-height: 55px !important;
  }
}
.titulo-efeito-transparente {
  display: inline-block;
  /* Garante comportamento inline-block */
  opacity: 0;
  /* Inicialmente transparente */
  animation: revelarTitulo 3s ease-in-out forwards;
  /* Anima a opacidade */
}

@keyframes revelarTitulo {
  0% {
    opacity: 0;
  }
  /* Começa totalmente transparente */
  20% {
    opacity: 0;
  }
  /* Mantém transparente por um tempo (ajuste conforme necessário) */
  100% {
    opacity: 1;
  }
  /* Finaliza totalmente visível */
}
.section-banner {
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
  margin-bottom: 30px;
  padding: 50px;
}

.section-banner-geral {
  background-image: url("/assets/images/banner/section-banner-geral.jpg");
}

.section-banner-projetos {
  background-image: url("/assets/images/banner/section-banner-projetos.jpg");
}

.section-banner-faca-parte {
  background-image: url("/assets/images/banner/section-banner-faca-parte.jpg");
}

.section-banner-sobre {
  background-image: url("/assets/images/banner/section-banner-sobre.jpg");
}

.section-banner h1 {
  font-family: var(--open-sans);
  color: var(--white);
  font-size: 2rem;
  text-align: center;
}

section.counter-four {
  background-color: var(--banner-bg-color);
}
@media only screen and (max-width: 480px) {
  section.counter-four {
    min-height: 790px;
  }
}

section.counter-four-bg-white {
  background-color: var(--white);
}

.help-two-card-wrapper {
  width: 157px;
  height: 310px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 10px #dadada;
  background-color: var(--white);
  position: absolute;
  border-bottom: 6px var(--primary-color) solid;
}

.help-two-card-wrapper.card-left {
  top: 110px;
  left: 100px;
  margin-left: 100px;
  float: left;
}
@media only screen and (max-width: 480px) {
  .help-two-card-wrapper.card-left {
    top: 450px !important;
    left: 150px;
  }
}
@media only screen and (max-width: 810px) {
  .help-two-card-wrapper.card-left {
    left: 0px;
    margin-left: 10px;
  }
}

.help-two-card-wrapper.card-right {
  top: 110px;
  right: 100px;
  margin-right: 100px;
  float: right;
}
@media only screen and (max-width: 480px) {
  .help-two-card-wrapper.card-right {
    top: 450px !important;
    right: 150px;
  }
}
@media only screen and (max-width: 810px) {
  .help-two-card-wrapper.card-right {
    right: 0px;
    margin-right: 10px;
  }
}

.help-two-card-wrapper .icon-star {
  color: red;
  font-size: 2rem;
  top: -140px;
  position: relative;
  left: -50px;
}

.help-card-content .sufix {
  float: right;
  margin-right: 7px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 4px;
}

.tab-btn {
  background-color: var(--white);
  color: var(--template-color);
  padding: 13px 10px;
  text-align: center;
  border-radius: 60px;
  margin: 20px 0px;
}

.tab-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

section.cause .content {
  background-color: var(--banner-bg-color);
  border-radius: 10px;
}

.cause .content {
  min-height: 124px;
}

.cause h5 {
  color: var(--template-color);
}

.cause .swiper {
  padding-bottom: 40px;
}

.cause .thumb a img {
  filter: opacity(0.5);
}

.cause .thumb a img:hover {
  filter: opacity(1);
}

section.ff-service {
  background-color: var(--white);
}

.ff-service__single {
  background-color: var(--banner-bg-color) !important;
}

section.ff-service h2,
.ff-service__single .content p {
  color: var(--template-color) !important;
}

.ff-service__single .content p {
  line-height: 1.2rem;
  margin-top: 10px;
}

.ff-service__single .thumb {
  width: 150px;
  height: auto;
}

.ff-community .tc-one,
.ff-community .tc-one p,
.ff-community .tc-two,
.ff-community .tc-two h3,
.ff-community .tc-two p,
.ff-community .tc-three,
.ff-community .tc-three p {
  color: var(--white) !important;
  font-weight: bold;
  border: 0 !important;
}

.ff-community .tc-two {
  color: var(--white);
  background: #e37a13;
}

.ff-community .tc-three {
  padding: 40px 40px;
  background-color: #2caba5;
}

section.history .help-three__tag {
  position: relative;
  bottom: 40px !important;
  left: 100px;
  background-color: var(--secondary-color);
  text-align: center;
}

section.history .help-three__content {
  top: -40px;
  position: relative;
  text-align: center;
  padding-top: 0;
}

section.counter-four h6 {
  color: var(--template-color);
}

.difference-two .difference-two__tab-btns {
  border-bottom: none !important;
}

.difference-two .difference-two__tab-btns .active {
  background-color: var(--secondary-color);
}

.difference-two .difference-two__thumb {
  min-width: 30vw;
}

.commit .commmit-tab-single {
  gap: 0;
  padding: 11px 10px;
}

.commit-tab-inner {
  gap: 5px !important;
}

.commit-tab-inner .thumb img {
  width: 200px;
}

.help-card-content span {
  padding-bottom: 2px;
}

.help-card-content .prefix {
  font-weight: bolder;
  font-size: 1.5rem;
}

.video-btn-wrapper .open-video-popup {
  background-color: red;
}

.pessoal-idealizadora .author-info p {
  margin-top: 0px;
  color: var(--base-color) !important;
}

.faq .shape {
  background-color: var(--base-color);
}

.faq .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--secondary-color) !important;
}

.faq .accordion-item ul li {
  list-style-type: square;
}

.faq .faq__thumb-inner .thumb-lg::before {
  background-color: var(--secondary-color) !important;
}

.team .team__single:hover .team__single-content p {
  color: var(--white);
}

/* section.pessoal-idealizadora::before {
    display: block;
    width: 100%;
    height: 200px;
    background-color: var(--base-color);
    content: "";
} */
.blog-main .cm-details-author .social a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

.blog-main div.cm-details-author div h6 {
  color: var(--base-color) !important;
}

section.blog-main div.author-thumb {
  width: 200px !important;
  min-width: 200px !important;
  height: 200px !important;
}

section.blog-main div.author-thumb img {
  object-fit: fill !important;
}

section.blog-main hr {
  margin-top: 20px !important;
  margin-bottom: 10px !important;
  border: 2px white solid !important;
}

section.blog-main div.cm-sidebar-post h2 {
  font-size: 0.8rem !important;
  line-height: 1rem !important;
}

section.blog-main div.cm-sidebar-post p {
  line-height: 1rem !important;
}

section.blog-main div.cm-details__sidebar div.cm-sidebar-post div.single-item div.thumb {
  background-color: var(--white);
}

section.blog-main div.cm-details__sidebar div.cm-sidebar-post div.single-item div.thumb a:hover {
  transform: rotate(0.6);
  opacity: 0.6;
}

section.blog-main div.cm-details__sidebar div.cm-sidebar-post div.single-item div.thumb img {
  border-radius: 5px !important;
  object-fit: scale-down !important;
  object-fit: cover !important;
}

section.blog-main div.cm-details__sidebar div.cm-sidebar-post div.single-item {
  flex-direction: initial !important;
  margin-bottom: 20px;
}

section.blog-main div.cm-details__sidebar div.cm-sidebar-post div.single-item .content {
  min-height: 80px;
  align-content: center;
}

section.volunteer .volunteer__form h4 {
  color: var(--base-color);
}

section.blog .excerpt {
  line-height: 1.2rem !important;
  padding: 6px 12px;
}

section.blog .blog__single:hover {
  background-color: var(--base-color) !important;
}

section.blog .blog__single-cta a {
  color: var(--secondary-color) !important;
}

section.blog .blog__single-cta a i {
  color: var(--base-color);
}

section.blog .pagination {
  display: inline-flex;
}

section.blog .container nav {
  text-align: center;
}

section.blog .pagination li {
  margin-left: 10px;
  color: var(--template-color) !important;
}

section.blog .pagination li span,
section.blog .pagination li a.page-link {
  background-color: var(--white) !important;
  border-top-left-radius: 45px !important;
  border-top-right-radius: 45px !important;
  border-bottom-left-radius: 45px !important;
  border-bottom-right-radius: 45px !important;
  width: 45px !important;
  height: 43px !important;
  border: 1px solid var(--secondary-color) !important;
  font-weight: bold;
  color: var(--template-color);
}

section.blog .pagination li.page-item.active span.page-link {
  background-color: var(--secondary-color) !important;
  color: var(--white) !important;
}

section.blog h6 {
  color: var(--template-color) !important;
}

section.blog-main .cm-details__content div.content {
  line-height: 1.6rem !important;
}

section.blog-main h5 {
  color: var(--secondary-color) !important;
}

section.blog-main .cm-sidebar-post .content p {
  margin-top: 0;
}

section.blog-main .cm-sidebar-post .content p a {
  font-size: 0.9rem;
}

section.fc-profit .profit__tab-btn {
  text-transform: none !important;
}

div.document-filter {
  background-color: var(--base-color);
  border-radius: 15px;
  padding: 15px;
}

.document-filter div.form-group {
  margin-top: 0;
  margin-inline: initial;
}

.document-filter label {
  color: var(--white);
  margin-right: 10px;
}

.document-filter div.nice-select,
.document-filter div.nice-select ul {
  width: 100%;
}

.document-results table {
  width: 100%;
}

.document-results table th {
  line-height: 4rem;
  text-align: center;
  font-weight: bolder;
  border-bottom: 1px solid var(--template-color);
}

.document-results table tbody tr:hover {
  background-color: var(--table-bg-color);
}

.document-results table td {
  vertical-align: middle;
  padding: 10px 5px;
  border-bottom: 1px dashed var(--template-color);
}

.document-results table td i {
  margin-right: 10px;
  font-size: 1.6rem;
  color: rgb(220, 0, 0);
}

div.volunteer__form div.input-single + span {
  top: -30px;
  position: relative;
}

.loading {
  position: fixed;
  z-index: 99999;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.seed-strip {
  background-color: var(--primary-color);
  /* padding: 10px; */
}

.seed-strip h1 {
  font-family: var(--protest-riot);
  font-size: 2.5rem;
  font-weight: lighter;
  color: var(--white);
  text-align: center;
}

.photo_fundadores {
  background-color: white;
  border: 10px solid white;
  border-radius: 20px;
  margin-right: calc(100% - 40vw);
  margin-bottom: 25px;
}

/* Transparent Overlay */
.loading:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}

/* Estilo do alerta/modal */
.alert-animated {
  position: fixed;
  left: 50%;
  top: 100%;
  /* Inicialmente fora da tela, abaixo */
  transform: translateX(-50%);
  /* Centraliza horizontalmente */
  opacity: 0;
  /* ComeÃ§a invisÃ­vel */
  animation: fadeInUp 1s ease-out forwards, fadeOut 4s ease-in 5s forwards;
  /* Aplica as animaÃ§Ãµes */
  z-index: 9999;
}

.alert-danger {
  background-color: #c21617 !important;
  color: white !important;
}

.alert-success {
  background-color: #377521 !important;
  color: white !important;
}

/* AnimaÃ§Ã£o de fade-in e subida */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    top: 50%;
    /* ComeÃ§a fora da tela, abaixo */
  }
  100% {
    opacity: 1;
    top: 100px;
    /* Fica a 20px abaixo do topo */
  }
}
/* AnimaÃ§Ã£o para desaparecer apÃ³s 3 segundos */
@keyframes fadeOut {
  0% {
    opacity: 1;
    top: 100px;
    /* MantÃ©m a posiÃ§Ã£o final */
  }
  100% {
    opacity: 0;
    top: -100%;
    /* Sobe para fora da tela */
  }
}
/* Form subscription */
.subscription {
  background-color: var(--banner-bg-color);
  text-align: center;
  margin-top: 10px;
  padding: 15px 0;
}

.subscription h1 {
  font-size: 20px;
  font-family: var(--protest-riot);
  color: var(--primary-color);
}

.subscription input {
  padding: 10px 20px;
  border-radius: 30px;
  min-width: 300px;
}

.subscription button {
  background-color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--white);
  margin: 0 5px;
}

/* Estilo do alerta/modal */
.alert {
  padding: 40px !important;
  border-radius: 30px;
}

.alert-animated {
  position: fixed;
  left: 50%;
  top: 100%;
  /* Inicialmente fora da tela, abaixo */
  transform: translateX(-50%);
  /* Centraliza horizontalmente */
  opacity: 0;
  /* Começa invisível */
  animation: fadeInUp 1s ease-out forwards, fadeOut 4s ease-in 5s forwards;
  /* Aplica as animações */
  z-index: 9999;
}

.alert-danger {
  background-color: #cd2d2d !important;
  color: white !important;
}

.alert-success {
  background-color: #24d366 !important;
  color: white !important;
}

/* Animação de fade-in e subida */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    top: 50%;
    /* Começa fora da tela, abaixo */
  }
  100% {
    opacity: 1;
    top: 100px;
    /* Fica a 20px abaixo do topo */
  }
}
/* Animação para desaparecer após 3 segundos */
@keyframes fadeOut {
  0% {
    opacity: 1;
    top: 100px;
    /* Mantém a posição final */
  }
  100% {
    opacity: 0;
    top: -100%;
    /* Sobe para fora da tela */
  }
}
/* slider História */
section.history .slider-navigation .slider-btn {
  display: inline;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
}

.fake-button {
  background-color: var(--banner-bg-color);
  padding: 2px 13px;
  border-radius: 30px;
  margin: 10px 10px 10px 0px;
  font-size: 0.9rem;
  text-align: center;
}