/* cabeçalho */
* {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.cabecalho {
    padding: 40px;
    background-image: url(../image/header.jpg);
    background-size: cover;
    background-position: center;
}
.cabecalho p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 150px;
    font-size: 40px;
    padding: 20px;
    color: aliceblue;
    text-shadow: 2px 2px 2px #000;
}
.cabecalho-navegar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -40px;
    margin-top: -30px;
}
.cabecalho img {
    width: 180px;
    height: auto;
    margin-top: -20px;
    margin-left: 70px;
}
.cabecalho-navegar a {
    margin-right: 10px;
    text-decoration: none;
    color: black;
    font-size: 19px;
    padding: 20px;
    margin-top: -40px;
}
.cabecalho-navegar a:hover {
    color: #4e7541;
    font-size: 21px;
    transition: all 0.3s ease;
}
.icones-container {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    gap: 40px;
    margin-top: -70px;
    margin-right: 90px;
}
.icons {
    color: black;
    font-size: 26px;
    width: 20px;
}
.icons:hover {
    color: #4e7541;
    font-size: 36px;
    transition: all 0.3s ease;
}
.icons-2:hover {
    color: #4e7541;
    font-size: 36px;
    transition: all 0.3s ease;
}
.icons-2 {
    color: black;
    font-size: 26px;
    width: 20px;
}
.cabecalho--botao {
    text-decoration: none;
    color: black;
    font-size: 17px;
    border: 2px solid #ffd315;
    border-radius: 6px;
    background-color: #ffd315;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
    margin-left: 44%;
    margin-top: 120px;
}
/* proximo eventos */
.proximos_eventos {
  display: flex;
  align-items: center;
  justify-content: center;
 
}
.proximos_eventos a {
  
}
.proximos_eventos p {
   border: 2px solid black;
   padding: 20px;
   border-radius: 20px;
   box-shadow: 5px 5px rgba(0, 0, 0, 0.445);
   font-size: 24px;
   animation: flutuar 2s infinite ease-in-out;
}
.proximos_eventos p b {
  font-size: 26px;
  color: rgb(17, 133, 2);
}
@keyframes flutuar {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.prx-eventos {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* section */

.sobre-nos {
   display: flex;
   margin-bottom: 90px;
}
.sobre-nos--texto {
    margin-left: 190px;
    margin-top: 40px;
    width: 500px;
    height: 200px;
}
.sobre-nos--texto h1 {
    font-size: 35px;
}
.sobre-nos--texto h2 {
    font-size: 25px;
}
.sobre-nos--texto p {
    font-size: 18px;
    color: #000000c2;
}
.sobre-nos--foto img {
    width: 500px;
    height: auto;
    margin-left: 100px;
    margin-top: 100px;
}
.cabecalho--botao-aboutUs {
    text-decoration: none;
    color: black;
    font-size: 17px;
    border: 2px solid #ffd315;
    border-radius: 6px;
    background-color: #ffd315;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
    margin-top: 50px;
}
.cabecalho--botao:hover,
.cabecalho--botao-aboutUs:hover {
    font-size: 20px; 
    transform: scale(1.05); 
    background-color: #ffc400; 
    transition: all 0.3s ease;
}

/* Nossas atividades */

.quebra {
    background-color: #90bc82;
    font-size: 40px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.atividades {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 70px;
}
.atividade-foto{
    color: #fff;
    text-shadow: 2px 2px 2px #000;
    font-size: 20px;
    width: 200px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 20px;
    margin-bottom: 40px;
}
#foto1 {
    background-image: url(../image/atividades1.jpg);
    background-size: cover;
}
#foto2 {
    background-image: url(../image/atividades2.jpg);
    background-size: cover;
}
#foto3 {
    background-image: url(../image/atividades3.jpg);
    background-size: cover;
}
#foto4 {
    background-image: url(../image/atividades4.jpg);
    background-size: cover;
}

/* Contato - e Login lado a lado */

.contato-login-wrapper {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 50px 20px;
  background-color: #f5f5f5;
  
}

/* Container principal dos blocos lado a lado */
.contato-login-container {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  flex-wrap: wrap; /* para ficar responsivo */
  
}

/* Blocos individuais */
.contato-bloco, .login-bloco {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  flex: 1 1 350px;
  max-width: 450px;
  position: relative; /* ajuda na renderização */
  z-index: 1;
  margin-bottom: 50px;
}



/* Títulos */
.contato-bloco h2, .login-bloco h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #333;
}

/* Formulário */
.form-contato label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #555;
  font-size: 0.95rem;
}
.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1.8px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-contato input:focus,
.form-contato textarea:focus {
  outline: none;
  border-color: #90bc82;
  box-shadow: 0 0 8px rgba(144,188,130,0.4);
}

/* Botão Enviar */
.form-contato button {
  background-color: #90bc82;
  border: none;
  padding: 14px 30px;
  border-radius: 10px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form-contato button:hover {
  background-color: #6d9762;
}

/* Botão login/cadastro */
.cadastro-login {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #0a74da;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #0a74da;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 30px;
}
.cadastro-login:hover {
  background-color: #0a74da;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

/* Para o texto “Já tem uma conta?” e “Entre em contato” */
.contato-bloco h2, .login-bloco h2 {
  text-align: center;
}

/* Para garantir que em telas pequenas fique empilhado */
@media (max-width: 800px) {
  .contato-login-container {
    flex-direction: column;
    gap: 40px;
    padding: 20px;
  }
  .contato-bloco, .login-bloco {
    max-width: 100%;
  }
}

/* rodape */

.rodape {
    background-image: url(../image/rodape.jpg);
    background-position: bottom;
    background-size: cover;
    color: #fff;
    padding: 40px 20px;
    font-size: 16px;
}

.rodape-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.rodape-logo img {
    width: 150px;
    height: auto;
}

.rodape-contato p {
    margin: 5px 0;
}

.rodape-redes a {
    color: #fff;
    font-size: 26px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.rodape-redes a:hover {
    color: #ffd315;
}

/* Para tablets e telas médias (até 1024px) */
@media (max-width: 1024px) {
  .sobre-nos {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }
  .sobre-nos--texto {
    margin-left: 0;
    margin-top: 20px;
    width: 90%;
    height: auto;
    text-align: center;
  }
  .sobre-nos--texto h1 {
    font-size: 28px;
  }
  .sobre-nos--texto h2 {
    font-size: 20px;
  }
  .sobre-nos--foto img {
    width: 90%;
    margin-left: 0;
    margin-top: 40px;
  }

  .atividades {
    gap: 20px;
  }
  .atividade-foto {
    width: 180px;
    height: 220px;
    font-size: 18px;
  }

  .cabecalho p {
    font-size: 30px;
    margin-top: 100px;
    padding: 15px;
  }

  .cabecalho-navegar {
    margin-left: 0;
    margin-top: 0;
  }
  .cabecalho-navegar a {
    font-size: 17px;
    margin-top: 0;
    padding: 15px;
  }

  .cabecalho img {
    width: 140px;
    margin-left: 0;
    margin-top: 0;
  }

  .cabecalho--botao {
    margin-left: 40%;
    margin-top: 80px;
    width: 130px;
    height: 38px;
    font-size: 15px;
  }
  .cabecalho--botao-aboutUs {
    width: 130px;
    height: 38px;
    font-size: 15px;
  }
}

/* Para celulares e telas pequenas (até 600px) */
@media (max-width: 600px) {
  .sobre-nos {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .sobre-nos--texto {
    margin-left: 0;
    margin-top: 10px;
    width: 95%;
    height: auto;
    text-align: center;
  }
  .sobre-nos--texto h1 {
    font-size: 24px;
  }
  .sobre-nos--texto h2 {
    font-size: 18px;
  }
  .sobre-nos--texto p {
    font-size: 16px;
  }
  .sobre-nos--foto img {
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }

  .atividades {
    flex-direction: column;
    gap: 15px;
  }
  .atividade-foto {
    width: 100%;
    height: 200px;
    font-size: 16px;
    padding: 15px;
  }

  .cabecalho p {
    font-size: 24px;
    margin-top: 80px;
    padding: 10px;
  }

  .cabecalho-navegar {
    flex-direction: column;
    margin-left: 0;
    margin-top: 10px;
  }
  .cabecalho-navegar a {
    font-size: 16px;
    padding: 10px 0;
    margin-top: 0;
  }

  .cabecalho img {
    width: 120px;
    margin-left: 0;
    margin-top: 10px;
  }

  .cabecalho--botao {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    width: 120px;
    height: 35px;
    font-size: 14px;
  }
  .cabecalho--botao-aboutUs {
    width: 120px;
    height: 35px;
    font-size: 14px;
  }

  .contato-login-container {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }
  .contato-bloco, .login-bloco {
    max-width: 100%;
    flex: none;
  }

  .rodape-container {
    flex-direction: column;
    text-align: center;
  }
  .rodape-logo img {
    width: 120px;
    margin-bottom: 20px;
  }
  .rodape-redes a {
    font-size: 22px;
    margin: 0 8px;
  }
}
