/* ==============================
   CONFIGURAÇÕES GERAIS
   ============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  background-color: #dbece6;
  color: var(--preto);
  line-height: 1.6;
}

/* Cabeçalho */
header {
  background: linear-gradient(to right, #0C693A,  #3D909F);
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  box-shadow: 0px 1px 2px black;
}

header img {
  height: 50px;
}

/* ==============================
   SEÇÃO: DESENVOLVEDORES
   ============================== */
.desenvolvedores {
  text-align: center;
  padding: 2rem 1rem;
}

.desenvolvedores h1 {
  background-image: linear-gradient(to right, #3D909F, #0C693A);
  color: var(--branco);
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  box-shadow: 0px 5px 10px black;
}

.lista-desenvolvedores {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  justify-items: center;
  list-style: none;
}

.dev {
  background: linear-gradient(to right,#3D909F, #0C693A );
  color: var(--branco);
  border-radius: 20px;
  width: 80%;
  max-width: 250px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0px 5px 15px black;
}

.dev img {
  width: 100%;
  height: 150px;
  border-radius: 15px;
  object-fit: cover;
  background-color: #b6e2cf;
}

.dev h2 {
  margin-top: 0.8rem;
  font-size: 1.1rem;
}

.dev p {
  font-size: 0.9rem;
}

/* ==============================
   SEÇÃO: PROJETO
   ============================== */
.projeto {
  text-align: center;
  padding: 3rem 1rem;
}

.projeto h1 {
  background: linear-gradient(to right,#3D909F, #0C693A);
  color: var(--branco);
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  box-shadow: 0px 5px 10px black;
}

.projeto p {
  text-align: justify;
  margin: 1rem 0;
  color: #033a27;
  font-weight: bolder;
}

.projeto .conteudo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* ==============================
   SEÇÃO: FALE CONOSCO
   ============================== */
.fale-conosco {
  background: linear-gradient(to right,#3D909F, #0C693A);
  color: black;
  padding: 2.5rem 1rem;
  border-radius: 30px;
  margin: 2rem 1rem;
  text-align: center;
  box-shadow: 0px 5px 10px black;
}

.fale-conosco h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-family: "montserrat", arial, monospace;
}

.form-contato {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.form-contato label {
  width: 80%;
  margin: 0 auto;
  text-align: left; 
  display: block;
  align-self: flex-start;
  margin-left: 5%;
  font-weight: bold;
  font-family: "montserrat", arial, monospace;
}


.form-contato input,
.form-contato textarea {
  width: 20rem;
  border: none;
  border-radius: 15px;
  padding: 0.8rem;
  font-size: 1rem;
}

.form-contato textarea {
  height: 120px;
  resize: none;
}

.form-contato button {
  background: #dbece6;
  color: #69412A;
  border: none;
  border-radius: 20px;
  padding: 0.7rem 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  box-shadow: 0px 2px 4px black;
}

.form-contato button:hover {
  background: var(--verde-claro);
  color: var(--branco);
}

/* ==============================
   RODAPÉ
   ============================== */
footer {
  text-align: center;
  padding: 1rem 0;
  font-weight: bold;
  font-family: "montserrat", arial, monospace;
}

footer a {
  text-decoration: none;
  color: black;
  font-size: 1.3rem;
}

footer a:hover {
  color: rgb(16, 54, 16);
}

/* ==============================
   RESPONSIVIDADE
   ============================== */

/* Tablets */
@media (min-width: 600px) {
  .lista-desenvolvedores {
    grid-template-columns: repeat(2, 1fr);
  }

  .projeto .conteudo {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .fale-conosco {
    width: 80%;
    margin: 2rem auto;
  }
  
  .projeto p {
    font-size: 1.4rem;
  }
}

/* Desktops */
@media (min-width: 992px) {
  .lista-desenvolvedores {
    grid-template-columns: repeat(3, 1fr);
  }

  .projeto {
    max-width: 1000px;
    margin: 0 auto;
  }

  .fale-conosco {
    width: 70%;
  }
.form-contato input,
.form-contato textarea {
  width: 30rem;
  border: none;
  border-radius: 15px;
  padding: 0.8rem;
  font-size: 1rem;
}
}
