/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://use.typekit.net/xuo5jcg.css");

.azul {
  background-image: radial-gradient(circle, #0061C1, #003896);
}

.vermelho {
  background-image: radial-gradient(circle, #CF2C38, #811119);
}

.verde {
  background-image: radial-gradient(circle, #07bb07, #008600);
}

.ciano {
  background-image: radial-gradient(circle, #0099C1, #007E9F);
}

.laranja {
  background-image: radial-gradient(circle, #FF9E38, #ED7900);
}


body {
  font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: #000;
}


@media (max-width: 768px) {

}




/* BANNER */
.banner {
  background-image: radial-gradient(circle, #00B000, #009200);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
  color: #fff;
  text-align: center;
}

.texto-banner, .imagem-banner{
  width: 50%;
}

.texto-banner h1 {
  font-size: 2.5em;
  font-weight: 800;
  text-transform: uppercase;
}

.texto-banner p {
  margin: 10px 0;
  font-size: 1.8em;
  font-weight: bold;
  color: #003896;
}

.btn-laranja {
  display: inline-block;
  width: 200px;
  margin-top: 30px;
  background-color: #E05900;
  font-size: 1.3em;
  color: #fff;
  padding: 5px 0;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 2px 2px 4px #1d1d1d81;
  text-align: center;
}

.btn-laranja:hover {
  background-color: #ED7900;
}



/* CULTURA */
.cultura {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #3E4095;
  color: #FFF;
  padding: 20px;
  text-align: center;
  align-items: center;
  font-size: 1rem;
}

.cultura-txt {
  font-size: 0.8em;
}

.cultura p,
.cultura li {
  font-size: 1em !important;
}

.conceca-cultura p {
  font-weight: 400;
}

.conceca-cultura{
  font-size: 0.9em;
}

.cultura img{
  width: 90px;
}

.cultura li{
  list-style: none;
}


/* RESPONSIVIDADE*/
@media (max-width: 1160px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card.largo {
    grid-column: span 2;
  }

  .quadros {
    width: 80%;
    margin: auto;
  }

}

@media (max-width: 1000px) {
  .cards-grid {
    text-align: center;
    margin: auto;
    grid-template-columns: 1fr;
  }

  .card{
    width: 100%;
    font-size: 130%;
  }

  .card.largo {
    grid-column: auto;
    grid-row: auto;
  }

  .coluna-pequenos {
    grid-template-columns: 1fr;
  }

  /* BANNER */
  .banner {
    flex-direction: column;
    padding: 30px 20px;
  }

  .texto-banner,
  .imagem-banner {
    width: 100%;
  }

  .texto-banner h1 {
    font-size: 1.4em;
  }

  .texto-banner p {
    font-size: 1.2em;
  }

  .banner-img {
    width: 90%;
    max-width: 550px;
    height: auto;
  }

  .bem-vindo img {
    width: 20%;
  }

  .texto-bem-vindo p {
    font-size: 1.2em;
  }

  .btn-laranja {
    width:40%;
    font-size: 1.1em;
    margin-top: 10px;
  }
}


@media (max-width: 768px) {


  /* BANNER */
  .banner {
    flex-direction: column;
    padding: 30px 20px;
  }

  .texto-banner,
  .imagem-banner {
    width: 100%;
  }

  .texto-banner h1 {
    font-size: 1.4em;
  }

  .texto-banner p {
    font-size: 1.2em;
  }

  .banner-img {
    width: 100%;
  }

  /* BENEFÍCIOS */
  .beneficios {
    flex-direction: column;
    gap: 20px;
  }

  /* QUADROS */
  .quadros {
    flex-direction: column;
    align-items: center;
  }

  .quadro {
    width: 85% !important;
  }

  .quadro p{
    font-size: 0.9em !important;
  }

  /*QUEM SOMOS*/
  .quem-somos {
    font-size: 0.8em;
  }

  /* BEM-VINDO */
  .bem-vindo {
    flex-direction: column;
    padding: 30px 40px !important;
  }

  .bem-vindo img {
    width: 70% !important;
  }

  .texto-bem-vindo {
    align-items: center;
  }

  .texto-bem-vindo p {
    font-size: 1.2em;
    text-align: justify;
    color: black;
  }
  
  .texto-bem-vindo a{
    margin: 20px auto 0 auto;
  }

  /* LOGOS */
  .logos {
    justify-content: center;
    gap: 10px;
  }




}

