* {
  margin: 0;
  padding: 0;
  outline: 0;
}

html {
  scroll-padding-top: 30rem;
}
@media (min-width: 768px) {
  html {
    scroll-padding-top: 8rem;
  }
}

body {
  font-family: "Heebo", sans-serif;
  font-size: calc(1rem + 0.25vw);
  color: #474747;
}

.color-laranja {
  color: #CE5429;
}

.color-verde {
  color: #1A8255;
}

header {
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.2784313725);
  position: sticky;
  top: 0;
  z-index: 5;
  background-image: url("../img/logos/bg.png");
  background-size: cover;
  background-position: top right;
  background-attachment: fixed;
  background-color: #FFF;
}
header nav {
  /*
  .navbar-toggler {
      &:focus {
          box-shadow: none;
      }

      @media(max-width:768px){
          padding: .5rem .7rem;

          span {
              width: 1.3rem;
              height: 1.3rem;
          }
      }
  }

  ul {
      li {
          a {
              color: $preto_padrao!important;
              font-family: 'Heebo', sans-serif;
              font-weight: 500!important;
              font-size: .75em!important;
          }

          &.active {
              a {
                  color: $verde_padrao!important;  
                  font-weight: 600!important;  

                  @media(min-width:992px){
                      border-bottom: 3px solid $verde_padrao;                
                  }
              }
          } 
      }
  }

  .btn-menu {
      li:nth-last-child(-n+2){
          border-radius: 1.5rem;   
          padding: .15rem 1rem;               

          a {
              color: #FFF!important;                        
          }
      }

      li:nth-last-child(2){
          background-color: $laranja_padrao;
      }

      li:last-of-type {
          background-color: $verde_padrao;
      }
  }
  */
}
header nav img {
  width: 8vw;
  min-width: 8rem;
}
header nav .toggle {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1200px) {
  header nav .toggle {
    display: none;
  }
}
header nav .toggle div {
  width: 1.8rem;
  height: 0.2rem;
  background-color: #1A8255;
  border-radius: 0.1rem;
  margin-block: 5px;
  transition: all ease-in-out 0.3s;
}
header nav .toggle.active {
  top: 2rem;
}
header nav .toggle.active div:nth-of-type(1) {
  transform: rotate(45deg) translate(0, 11px);
}
header nav .toggle.active div:nth-of-type(2) {
  opacity: 0;
}
header nav .toggle.active div:nth-of-type(3) {
  transform: rotate(-45deg) translate(0, -11px);
}
header nav #div_global {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  height: 4rem;
  transition: all 0.2s ease-in-out;
  position: relative;
}
@media (max-width: 1200px) {
  header nav #div_global {
    display: block;
  }
}
@media (max-width: 1200px) {
  header nav #div_global.active {
    height: 27rem;
    transition: all 0.5s ease-in-out;
  }
}
@media (max-width: 1200px) {
  header nav #div_global #div_links {
    visibility: hidden;
    height: -moz-max-content;
    height: max-content;
  }
}
header nav #div_global #div_links ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
@media (max-width: 1200px) {
  header nav #div_global #div_links ul {
    display: block;
  }
}
header nav #div_global #div_links ul li a {
  color: #2D2D2D !important;
  font-weight: 500 !important;
  font-size: 0.75em !important;
}
header nav #div_global #div_links ul li.active a {
  color: #1A8255 !important;
  font-weight: 600 !important;
}
@media (min-width: 992px) {
  header nav #div_global #div_links ul li.active a {
    border-bottom: 3px solid #1A8255;
  }
}
header nav #div_global #div_links.active {
  visibility: visible;
  margin-block: 1.5rem;
}
header nav #div_global #div_links.active ul {
  transition: all 0.5s ease-in-out;
}
header nav #div_global #div_links.active li {
  margin-top: 0.7rem;
}
header nav #div_global #div_links.active li a {
  width: -moz-max-content;
  width: max-content;
}
header nav #div_global #div_btns {
  font-weight: 500 !important;
  font-size: 0.75em !important;
  text-align: center;
}
@media (max-width: 1200px) {
  header nav #div_global #div_btns {
    display: none;
  }
}
header nav #div_global #div_btns .btnDisabled {
  pointer-events: none;
  cursor: not-allowed;
  background-color: #919191;
  border-radius: 1.5rem;
  white-space: nowrap;
}
header nav #div_global #div_btns.active {
  display: block;
  margin-top: 1rem;
}
header nav #div_global #div_btns.active ul li {
  flex-basis: 0;
  flex-grow: 1;
}
header nav #div_global #div_btns ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}
header nav #div_global #div_btns li {
  border-radius: 1.5rem;
  white-space: nowrap;
}
header nav #div_global #div_btns li:first-child {
  background-color: #CE5429;
}
header nav #div_global #div_btns li {
  background-color: #1A8255;
}
header nav #div_global #div_btns a {
  padding: 0.6rem 1.5rem;
  color: #FFF !important;
}
@media (max-width: 1200px) {
  header nav #div_global #div_logo.active {
    border-bottom: 1px solid #1A8255;
    padding-bottom: 1.5rem;
  }
}

main #sobre {
  position: relative;
  color: #FFF;
}
main #sobre .fundo-titulo {
  background: url("../img/titulo_branco.png") no-repeat center center;
  background-size: 110% 80%;
  padding: 1rem;
}
main #sobre h1 {
  color: #CE5429;
  max-width: -moz-max-content;
  max-width: max-content;
  flex-shrink: 0;
}
main #sobre .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/fundo_projeto2.png");
  background-size: cover;
  z-index: -1;
}
main #sobre #container_projeto {
  padding: 3rem;
}
main #sobre #container_projeto #iframe_projeto {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin-inline: auto;
  padding-top: 40%;
  border: 0.5rem solid #a5a5a5;
}
main #sobre #container_projeto #iframe_projeto iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
main #edital {
  position: relative;
  background: url("../img/fundo_chamada.png");
  background-size: cover;
  padding-block: 4rem;
}
main #edital .img_seta_chamada {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  right: 0;
  width: 40%;
  height: 40%;
  background: url("../img/seta_edital_chamada.png") no-repeat right center;
  background-size: contain;
}
@media (min-width: 1200px) {
  main #edital .img_seta_chamada {
    width: 70%;
    height: 70%;
  }
}
main #edital a {
  text-decoration: none;
}
main #edital .fundo-titulo-chamada {
  display: inline-block;
  background: url("../img/titulo_laranja.png") no-repeat;
  background-size: 100% 100%;
  padding: 1rem 2rem;
  color: #fff;
}
main #edital .modal-header {
  background-color: #CE5429;
  color: #fff;
}
main #edital .fundo-titulo-edital {
  display: inline-block;
  background: url("../img/titulo_verde.png") no-repeat;
  background-size: 100% 100%;
  padding: 1rem 2rem;
  color: #fff;
}
main #edital .btn-chamada {
  background: url("../img/botao_laranja.svg");
  background-size: 100% 100%;
  border: none;
  color: #CE5429;
  font-size: 1em;
}
main #edital .btn-chamada:hover {
  background: url("../img/botao_lar_hover.svg");
  background-size: 100% 100%;
  border: none;
  color: #CE5429;
  font-size: 1em;
  color: #fff;
}
main #edital .btn-chamada:hover a {
  color: #fff;
}
main #edital .btn-chamada a {
  color: #CE5429;
}
main #edital .btn-edital {
  background: url("../img/botao_laranja.svg");
  background-size: 100% 100%;
  border: none;
  color: #CE5429;
  font-size: 1.4em;
  font-weight: bold;
  transition: 0.2s ease-in;
}
main #edital .btn-edital:hover {
  background: url("../img/botao_lar_hover.svg");
  background-size: 100% 100%;
  border: none;
  color: #CE5429;
  font-size: 1.5em;
  color: #fff;
}
main #edital .btn-edital a {
  color: #CE5429;
}
main #contexto h1 {
  color: #fff;
  display: inline-block;
}
main #contexto h2 {
  font-size: 1.1em;
  font-weight: bold;
  color: #1A8255;
  margin-block: 1rem;
  text-align: center;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1999px) {
  main #contexto h2 {
    height: 4.2rem;
  }
}
@media (min-width: 1200px) {
  main #contexto h2 {
    height: 4rem;
  }
}
main #contexto p {
  text-align: center;
}
main #contexto .fundo-titulo {
  background: url("../img/titulo_laranja.png") no-repeat;
  background-size: 100% 100%;
  padding: 1rem;
  padding-right: 2rem;
}
main #contexto .slick-prev:before, main #contexto .slick-next:before {
  font-size: 2em;
  color: #1A8255;
}
main #contexto .destaque {
  color: #CE5429;
  font-weight: bold;
  font-size: 1.1em;
}
main #contexto i {
  color: #9b9b9b;
  margin-left: 0.2rem;
}
main #iniciativas .fundo-titulo {
  display: inline-block;
  background: url("../img/titulo_laranja.png") no-repeat;
  background-size: 100% 100%;
  padding: 1rem 2rem;
  color: #fff;
}
main #iniciativas .fundo_verde {
  background: url("../img/fundo_verde.png") no-repeat center center;
  background-size: 100% 100%;
  padding: 5rem 0px 3rem 0px;
}
main #iniciativas .fundo_verde .modal-header {
  background-color: #1A8255;
  color: #fff;
}
main #iniciativas .fundo_verde_bottom {
  background: url("../img/fundo_verde_bottom.png") no-repeat center center;
  background-size: 100% 100%;
  padding: 8rem 0px 5rem 0px;
  position: relative;
  top: -5rem;
  z-index: -1;
}
main #iniciativas .fundo_laranja {
  background: url("../img/fundo_forum.png") no-repeat top center;
  background-size: 100% 92%;
  padding: 3rem 0px 3rem 0px;
  z-index: 0;
}
main #iniciativas .fundo_laranja .modal-header {
  background-color: #CE5429;
  color: #fff;
}
main #iniciativas .fundo_laranja ul {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  list-style: none;
}
main #iniciativas .fundo_laranja ul li {
  border: 1px solid #CE5429;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
main #iniciativas h4 {
  color: #fff;
}
main #iniciativas p {
  font-weight: 200;
  margin-bottom: 2rem;
}
main #iniciativas .btn-outline-light {
  border-radius: 2rem;
  padding-inline: 1rem;
}
main #seminario {
  position: relative;
}
main #seminario .fundo-titulo {
  display: inline-block;
  background: url("../img/titulo_verde.png") no-repeat;
  background-size: 100% 100%;
  padding: 1rem 2rem;
  color: #fff;
}
main #seminario .btn-seminario {
  background: url("../img/botao_verde.svg");
  background-size: 100% 100%;
  border: none;
  color: #1A8255;
  font-size: 1em;
}
main #seminario .btn-seminario:hover {
  background: url("../img/botao_hover_ver.svg");
  background-size: 100% 100%;
  border: none;
  color: #CE5429;
  font-size: 1em;
  color: #fff;
}
main #seminario .porta {
  position: absolute;
  top: 1rem;
  right: 9rem;
  width: 15%;
}
@media (max-width: 768px) {
  main #seminario .porta {
    right: 2rem;
  }
}
main #seminario .modal-header {
  background-color: #1A8255;
  color: #fff;
}
main #contato {
  position: relative;
  padding-top: 6rem;
  margin-top: -6rem;
}
@media (max-width: 768px) {
  main #contato {
    padding-top: 8rem;
    padding-bottom: 2rem;
    margin-top: -8rem;
    margin-bottom: -1rem;
  }
}
main #contato .img {
  position: absolute;
  background: url("../img/fundo_contatos.png");
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.5;
}
main #contato .fundo-titulo {
  display: inline-block;
  background: url("../img/titulo_laranja.png") no-repeat;
  background-size: 100% 100%;
  padding: 1rem 2rem;
  color: #fff;
}
main #contato h3 {
  color: #CE5429;
}
main #contato img {
  width: 3rem;
  height: 3rem;
}
main #contato a {
  text-decoration: none;
  color: #474747;
}
main #contato .color-verde {
  color: #1A8255;
}
main #contato .form-control {
  border: 1px solid #CE5429;
  border-radius: 0;
}
main #contato input[type=text], main #contato input[type=email] {
  border-left: 0.5rem solid #CE5429 !important;
}
main #contato input::-moz-placeholder, main #contato textarea::-moz-placeholder {
  color: #a0a0a0;
  font-weight: 300;
}
main #contato input::placeholder, main #contato textarea::placeholder {
  color: #a0a0a0;
  font-weight: 300;
}
main #contato input[type=submit] {
  background-color: #CE5429;
  color: #fff;
  padding-inline: 2rem;
}
main #contato input[type=submit]:hover {
  background-color: #1A8255;
}
main #doe {
  position: relative;
}
main #doe .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/fundo _doe.png");
  background-size: 100% 100%;
  z-index: -1;
}
main #doe p {
  font-weight: 300;
  color: #fff;
}
main #doe a {
  text-decoration: none;
  color: #fff;
}
main #doe a:hover {
  text-decoration: underline;
}

footer #content_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  footer #content_footer {
    flex-direction: row;
  }
}
footer #content_footer #ceert img {
  width: 12.5vw;
  min-width: 8rem;
}
footer #content_footer #redes {
  display: flex;
  flex-direction: column;
}
footer #content_footer #redes h4 {
  color: #707070;
  font-weight: 300;
}
footer #content_footer #redes #redes_icon {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
footer #content_footer #redes #redes_icon a img {
  width: 3vw;
  min-width: 2rem;
}
footer p {
  background-color: #EFEFEF;
  color: #000;
  font-size: 1em;
  font-weight: 300;
}/*# sourceMappingURL=main.css.map */