
/*ESTILOS GERAIS*/
:root {
  --cor-primaria:rgb(11, 79, 116);
  --cor-secundaria:rgb(18, 124, 184);
  --cor-terciaria:#ef9559;
  --cor-laranja-escuro:#ff5733;
  --cor-branco:rgb(255,255,255);
  --cor-preto:rgb(0,0,0);
  --cor-verde-whats:#009900;

  --tempo-animacao: 1s;

  --fonte-titulo: "Solway", serif;
  --fonte-texto:"Montserrat", sans-serif;
  --fonte-botao:"Roboto", sans-serif;

  
}

html{
  overflow-x: hidden;
}

body{
  padding: 0;
  margin: 0;
  font-family: var(--fonte-texto);
  overflow-x: hidden;
  background-color: white!important;

}

.hr{
  border-top: solid 2px var(--cor-primaria);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

h1{
  font-family: var(--fonte-titulo);
}

.btn-primary{
  background-color: var(--cor-laranja-escuro);
  color: var(--cor-branco);
  border-radius: 50px;
  border: solid 1px transparent;
  font-family: var(--fonte-botao);
  padding: 10px 20px;
  
 }

 .btn-primary:hover{
  background-color: transparent;
  border: solid 1px var(--cor-laranja-escuro);
  color: var(--cor-branco);

 }

 .btn-secondary{
  background-color: var(--cor-laranja-escuro);
  color: var(--cor-branco);
  font-family: var(--fonte-botao);
  border-radius: 50px;
  border: solid 1px transparent;
  padding: 10px 20px;
  
 }

 .btn-secondary:hover{
  background-color: transparent;
  border: solid 1px var(--cor-laranja-escuro);
  color: var(--cor-laranja-escuro);
 }

.btn-whatsapp{
  background-color: var(--cor-verde-whats);
  color: var(--cor-branco);
  border-radius: 30px;
  border: solid 1px var(--cor-verde-whats);
  font-weight: bold;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.btn-whatsapp:hover{
  background-color: var(--cor-branco);
  color: var(--cor-verde-whats);
  border: solid 1px var(--cor-verde-whats);
  transition: 0.3s ease-in-out;
}

.btn-doacoes{
  background-color: var(--cor-branco);
  border: solid 1px transparent;
  color: #DF6D14;
  border-radius: 50px;
  padding: 3px 20px;
}

.btn-doacoes:hover{
  background-color: #DF6D14;
  color: var(--cor-branco)!important;
  text-decoration: none;
}

.btn-doacoes-mobile{
  background-color: #DF6D14;
  color: var(--cor-branco)!important;
  font-size: 16px !important;
  border-radius: 50px;
  padding: 3px 20px;
}

/*BANNER*/

.carroussel-banner h2{
  font-size: 2.5rem;
}

.carousel-item{
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 550px;
}

.slide-1{
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1)), url(../images/carroussel-banner/banner3.jpg);
}

.slide-2{
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1)), url(../images/carroussel-banner/banner6.jpg);
}

.slide-3{
  background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,1)), url(../images/carroussel-banner/banner5.jpg);
}

.hero{
  background-color: var(--cor-preto);
}


.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--cor-branco);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--cor-branco);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--cor-branco);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*ATUAÇÃO*/

.atuacao{
  background-color: var(--cor-branco);
 
 }
 
 .atuacao h2{
   font-family: var(--fonte-titulo);
   font-size: 2.3rem;
   font-weight: bold;
 }

 .atuacao p{
  font-size: 18px;
 }
 
 .atuacao .card{
   box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
   border-radius: 0;
 }
 
 .atuacao i{
   font-size: 30px;
   color: #dd9c4a;
 }

 .card {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  transition: width 0.4s ease-in-out;
}

.card::before {
  top: 0;
  right: 0;
}

.card::after {
  bottom: 0;
  left: 0;
}

/* Efeito no hover */
.card:hover {
  
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.card:hover::before {
  width: 100%;
  right: 0;
}

.card:hover::after {
  width: 100%;
  left: 0;
}

.card-vermelho::before,
.card-vermelho::after {
  background: #ff5733;
}

.card-azul::before,
.card-azul::after {
  background: #007dff;
}

.card-rosa::before,
.card-rosa::after {
  background: #ffd3bc;
}

.card-verde::before,
.card-verde::after {
  background: #b8e739;
}

/*COLABORE*/
.colabore{
  background-color: var(--cor-primaria);
  color: var(--cor-branco);
  position: relative;
}

.colabore h2{
  font-family: var(--fonte-titulo);
}

.colabore p{
  font-size: 18px;
}

.banner_arco_baixo{
  position: absolute;
  bottom:-1px;
  width: 100%;
  height: auto;
  z-index: 998;
}


.banner_arco_baixo img{
  width: 100%;

}

/*PILARES*/

.pilares span{
  border: 1px solid var(--cor-primaria);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--cor-terciaria);
  color: var(--cor-primaria);
  border-color: var(--cor-terciaria);

}

.pilares h4{
  font-weight:bold;
}

.pilares p{
  font-size: 20px;
}

/*DIREITO*/
.direito{
  position: relative;
  background-color: var(--cor-primaria);
}

.texto-direito{
  color: var(--cor-branco);
  font-size: 18px;
}

.banner_arco_alto{
  position: absolute;
  top:0;
  width: 100%;
  height: auto;
  z-index: 998;
}

.banner_arco_alto img{
  width: 100%;

}

/*PARCEIROS*/
.parceiros h2{
  font-family: var(--fonte-titulo);
  font-size: 2.3rem;
  font-weight: bold;
}

.parceiros p{
 font-size: 18px;
}

/*carroussel*/

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to{
    transform: translateX(-100%);
  }
}


.logos{
  overflow: hidden;
  padding: 30px 0;
  white-space: nowrap;
  position: relative;
}
.logos::before,
.logos::after{
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  content: "";
  z-index: 3;

}

.logos::before{
  left: 0;
  background: linear-gradient(to left, rgba(255,255,255,0), white);
}

.logos::after{
  right: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), white);
  
}

.logos:hover .logos-slide{
  animation-play-state: paused
  ;
}

.logos-slide{
  display: inline-block;
  animation: 30s slide infinite linear;
}

.logos-slide img{
  height: 200px;
  margin: 0 10px;
  transition: filter 0.3s ease; /* Adiciona uma transição suave */
}

/*FALE-CONOSCO*/
.fale-conosco{
  background-image:url(../images/home/ajuda.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 30px 30px;
  color: var(--cor-branco);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fale-conosco h2{
  font-family: var(--fonte-titulo);
  font-size: 2.3rem;
  font-weight: bold;
  
}

.fale-conosco p{
 font-size: 18px;
}

/*INSTITUTO*/
.banner-instituto{
  background-image: linear-gradient(rgba(5, 30, 44,0.3), rgba(5, 30, 44,0.3)), url(../images/quem-somos/banner1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment:fixed;
  height: 400px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.introducao-instituto p{
  font-size: 18px;
}

.introducao-instituto img{
  border-radius: 20px;
}

.card-missao{
  background-color: #ff5733;
  height: 310px;
  padding: 1rem;
  color: var(--cor-branco);
  border-radius: 20px;
}

/*TERCEIRO SETOR*/
.banner-terceiro-setor{
  background-image: linear-gradient(rgba(5, 30, 44,0.3), rgba(5, 30, 44,0.3)), url(../images/quem-somos/banner-terceiro-setor.jpg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment:fixed;
  height: 400px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.introducao-terceiro-setor p{
  font-size: 18px;
}

.introducao-terceiro-setor span{
  font-weight: bold;
}

/*NETO LEGAL*/
.banner-neto-legal{
  background-image: linear-gradient(rgba(5, 30, 44,0.3), rgba(5, 30, 44,0.3)), url(../images/projetos/banner-neto-legal.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment:fixed;
  height: 400px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.introducao-neto-legal p, .ajuda p{
  font-size: 18px;
}

.ajuda h3{
  font-weight: bold;
}

.ajuda img{
  border-radius: 20px;
}

.destaque-parceiro{
  background-color: #ff5733;
  color: var(--cor-branco);
  padding:1rem;
  padding-top: 2rem;
  border-radius: 20px;
}

/*REVISTA PÚBLICA*/

.banner-revista-publica{
  background-image: linear-gradient(rgba(5, 30, 44,0.3), rgba(5, 30, 44,0.3)), url(../images/projetos/banner-revista-publica.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment:fixed;
  height: 400px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.introducao-revista-publica p{
  font-size: 18px;
}

.introducao-revista-publica h3{
  font-weight: bold;
}

/*BLOG*/

.banner-blog{
  background-image: linear-gradient(rgba(5, 30, 44,0.3), rgba(5, 30, 44,0.3)), url(../images/home/blog.jpg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment:fixed;
  height: 400px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.corpo-blog p{
  font-size: 18px;
}

.corpo-blog h3{
  font-weight: bold;
}

.blog img{
  border-radius: 20px;
}

.blog h2{
  font-family: var(--fonte-titulo);
  font-size: 2.3rem;
  font-weight: bold;
  
}

.blog p{
 font-size: 18px;
}

/*CONTATO*/

.banner-contato{
  background-image: linear-gradient(rgba(5, 30, 44,0.3), rgba(5, 30, 44,0.3)), url(../images/home/banner-contato.jpg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment:fixed;
  height: 400px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.contato p{
  font-size: 18px;
}

.contato h3{
  font-weight: bold;
}

.formulario{
  border-radius: 20px;
  border: solid 2px var(--cor-secundaria);
  padding: 2rem;
}

.form-check-input:checked {
  background-color: var(--cor-terciaria);
  border-color: var(--cor-terciaria);
}

.form-check .form-check-input {
   margin-left: 0; 
}

.texto-checked{
  color: var(--cor-branco);
}

/*DOAÇÃO*/

.banner-doacao{
  background-image: linear-gradient(rgba(5, 30, 44,0.3), rgba(5, 30, 44,0.3)), url(../images/home/banner-doacoes.jpg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment:fixed;
  height: 400px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.doar-online p, .doar-computador p{
  font-size: 18px;
}

.doar-online h3{
  font-weight: bold;
}

/*RODAPE*/
.rodape{
  background-color:rgb(5, 30, 44);
  color: var(--cor-branco);
  text-align: center;

}

.rodape a, .rodape p{
  text-decoration: none;
  color: var(--cor-branco);
  font-size: 18px;

}

.rodape a:hover{
  text-decoration: none;
  color: var(--cor-secundaria);
}

.rodape img{
  border-radius: 20px;
}


.menu-rodape, .redes-sociais-rodape, .contatos-rodape{
  display: flex;
  flex-direction: column;
}

.botao-whatsapp{
  z-index: 999;
  position: fixed;
  right: 40px;
  bottom: 40px;
  transition: 0.2s ease-in-out;
 
}

.botao-whatsapp:hover{
  transform: scale(1.1);
}



/*CARREGAMENTO DA PAGINA*/
.logo-carregamento img{
  width: 70%;
  
}

.box-load{
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--cor-branco);
}

.content{
  display: none;
}

/* PULSAR*/

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
 
.icone{
  animation: pulse 1s infinite;
  font-size: 100px;
  color: var(--cor-verde-whats);
}


/*@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(90deg);
  }
  75% {
    transform: rotate(135deg);
  }
  100% {
    transform: rotate(180deg);
  }
}


.icone{
  animation: rotate 3s infinite;
}*/


/* LGPD */

.box-cook.hide{
  display: none !important;
}

.box-cook{
  z-index: 999;
  position: fixed;
  left: 10px;
  bottom: 10px;
  background-color: var(--cor-branco);
  padding: 0.5rem;
  color: var(--cor-black);
  box-shadow: 0px 0px 5px 0px var(--cor-primaria);
  font-size: 14px;
  border-radius: 8px;
}

.box-cook a{
text-decoration: none;
}

.politica-privacidade-lgpd{
  color: var(--cor-preto);
}

.politica-privacidade-corpo{
  background-color: #eee;
}

.politica-privacidade-lgpd:hover{
  color: var(--cor-preto);
  text-decoration: underline;
}

/*ANIMAÇÃO LGPD*/
.box-cook{
  animation: appear 2s;
}

@keyframes appear{

  from{
    opacity: 0;
    translate: 0 100%;
  }

  to{
    opacity: 1;
    translate: 0 0;
  }
}

/*EFEITO CARREGAMENTO LENTO*/

@keyframes square-animation {
  0% {
    left: 0;
    top: 0;
  }

  10.5% {
    left: 0;
    top: 0;
  }

  12.5% {
    left: 32px;
    top: 0;
  }

  23% {
    left: 32px;
    top: 0;
  }

  25% {
    left: 64px;
    top: 0;
  }

  35.5% {
    left: 64px;
    top: 0;
  }

  37.5% {
    left: 64px;
    top: 32px;
  }

  48% {
    left: 64px;
    top: 32px;
  }

  50% {
    left: 32px;
    top: 32px;
  }

  60.5% {
    left: 32px;
    top: 32px;
  }

  62.5% {
    left: 32px;
    top: 64px;
  }

  73% {
    left: 32px;
    top: 64px;
  }

  75% {
    left: 0;
    top: 64px;
  }

  85.5% {
    left: 0;
    top: 64px;
  }

  87.5% {
    left: 0;
    top: 32px;
  }

  98% {
    left: 0;
    top: 32px;
  }

  100% {
    left: 0;
    top: 0;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.fade-out {
  animation: fadeOut 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-100px);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(100px);
  }
}

@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animacao {
  opacity: 0;
  transition: opacity var(--tempo-animacao) ease-out, transform var(--tempo-animacao) ease-out;
}

.in-view-left,
.in-view-right,
.in-view-top,
.in-view-bottom {
  animation-duration: var(--tempo-animacao);
  animation-fill-mode: forwards;
}

.out-view-left,
.out-view-right,
.out-view-top,
.out-view-bottom {
  animation-duration: var(--tempo-animacao);
  animation-fill-mode: forwards;
}

.in-view-left {
  animation-name: slideInLeft;
}

.out-view-left {
  animation-name: slideOutLeft;
}

.in-view-right {
  animation-name: slideInRight;
}

.out-view-right {
  animation-name: slideOutRight;
}

.in-view-top {
  animation-name: slideInTop;
}

.in-view-bottom {
  animation-name: slideInBottom;
}




/* MEDIAS ##########################################################*/

@media (max-width: 576px) {
  

  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }

  .faixa-cabecalho p{
    font-size: 18px;
  }

  .carroussel-banner h2{
    font-size: 1.8rem;
  }
  
  .carousel-item{
    height: 550px;
  }
  
  .slide-1{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,1)), url(../images/carroussel-banner/banner3.jpg);
  }
  
  .slide-2{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,1)), url(../images/carroussel-banner/banner6.jpg);
  }
  
  .slide-3{
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,1)), url(../images/carroussel-banner/banner5.jpg);
  }
  
  .card-vermelho{
    border-top: solid 3px #ff5733;
    border-bottom: solid 3px #ff5733;
  }
  
  .card-azul{
    border-top: solid 3px #007dff;
    border-bottom: solid 3px #007dff;

  }
  
  .card-rosa{
    border-top: solid 3px #ffd3bc;
    border-bottom: solid 3px #ffd3bc;
  }
  
  .card-verde{
    border-top: solid 3px #b8e739;
    border-bottom: solid 3px #b8e739;
  }
  
  .banner_arco_baixo {
    bottom: -4px;
  }

  .banner_arco_alto {
    top: -6px;
  }

  .fale-conosco{
    background-image:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,1)), url(../images/home/ajuda-mobile2.jpg);
    background-attachment:fixed;
  }

  .rodape img{
    width: 80%;
  }

  .botao-whatsapp {
    right: 20px;
    bottom: 20px;
  }

  
}


@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
  }



/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .banner_arco_alto {
    top: -4px;
  }
 
 
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
  
}


@media (min-width: 1400px) {
  .banner_arco_alto {
    top: -3px;
  }
 
}