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

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

.alert {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alert li {
    margin: 5px 0;
}

.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.9em;
    font-weight: bold;
    color: #003896;
}

.texto-banner span {
    color: #3E4095;
}

.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;
}

/* FORMULÁRIO*/

.contato {
    margin: auto;
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;

}

.contato-info {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.contato-info h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contato-info .duvida {
    color: #3E4095;
}

.contato-info .fale {
    color: #ed3232;
}

.duvida,
.fale {
    text-shadow: 2px 2px 2px rgba(197, 197, 197, 0.767);
}

.bloco {
    background-color: #3E4095;
    color: white;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.bloco img {
    width: 30px;
    height: auto;
}

.bloco div {
    line-height: 1.4em;
    font-size: 0.95em;
}

.formulario-contato {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
}

.formulario-contato p {
    font-weight: 500;
    color: #3E4095;
    margin-bottom: 20px;
}

.formulario-contato form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formulario-contato input,
.formulario-contato textarea {
    border: 1.5px solid #3E4095;
    border-radius: 6px;
    padding: 10px;
    font-size: 0.8em;
    font-family: 'Poppins', sans-serif;
    resize: none;
}

.formulario-contato button {
    margin: auto;
    width: 40%;
    background-color: #3E4095;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 2px 2px 2px rgb(184, 184, 184);
}

.formulario-contato button:hover {
    background-color: #2e3175;
}


/* RESPONSIVO */
@media (max-width: 768px) {
    .contato {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 10px;
    }

    .contato-info,
    .formulario-contato {
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 0 10px;
        margin: 0 auto;
    }

    .bloco {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin: 0 auto 20px auto;
        max-width: 350px;
        width: 90%;
        text-align: left;
    }

    .formulario-contato form {
        width: 90%;
        max-width: 350px;
        margin: 0 auto;
    }
}


/* MAPA*/

.mapa {
    width: 80%;
    margin: auto;
    margin-bottom: 50px;

}

.mapa iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    box-shadow: 2px 2px 4px rgba(119, 119, 119, 0.644);
}

/* 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;
}

.cultura img {
    margin-top: 7px;
}


/* RESPONSIVIDADE*/
@media (max-width: 1160px) {

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

  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

}

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

  .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.6em;
  }

  .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;
  }

  h1 {
    font-size: 1.6em;
  }

  p {
    font-size: 1.2em;
  }
}


@media (max-width: 768px) {


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

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

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

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

  .banner-img {
    width: 100%;
  }

  .contato-info{
    font-size: 0.8em;
  }
  /* 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 {
    font-size: 0.8em;
  }

  .bem-vindo {
    flex-direction: column;
    padding: 20px;
  }

  .bem-vindo img {
    width: 50%;
    margin-bottom: 20px;
  }

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

  .texto-bem-vindo h2 {
    font-size: 1.5em;
  }

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

  .logos {
    justify-content: center;
    text-align: center;
  }




}

@media (max-width: 480px) {
  /* Proper padding and gaps */
  .banner {
    padding: 20px 10px;
  }

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

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

  .btn-laranja {
    width: 40%;
    font-size: 1em;
  }
}