@import url("https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

header {
  background-image: url(./assets/Banner.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 80vh;
  text-align: center;
  color: white;
}
header p {
  font-size: 1.5rem;
  width: 50vw;
  margin: 0 auto;
  margin-bottom: 25px;
  font-weight: bold;
}
header h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
}
header button {
  background-color: #66BB6A;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}
header .box-header {
  background: rgba(0, 0, 0, 0.4);
  height: inherit;
  padding: 200px 40px 40px 40px;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.cards {
  background-color: #f1f8c9;
  padding: 50px 20px;
  text-align: center;
}
.cards .card {
  background-color: white;
  width: 280px;
  height: 350px;
  margin: 15px;
  padding-bottom: 20px;
  display: inline-block;
  border-radius: 10px;
  font-size: 18px;
}
.cards img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.cards button {
  margin-top: 15px;
  background-color: #66BB6A;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.formulario {
  background-color: #e8f5e9;
  padding: 50px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.formulario .descricao {
  margin-bottom: 20px;
  margin: 30px 0 0 30px;
  text-align: center;
}
.formulario p {
  margin-top: 10px;
  font-size: 12px;
}
.formulario form {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 520px;
  height: 380px;
  margin: auto;
  padding-bottom: 20px;
  border-radius: 10px;
  justify-content: center;
  color: lightslategrey;
}
.formulario form input, .formulario form select {
  padding: 20px;
  border: 2px none #ccc;
  border-radius: 10px;
}
.formulario form button {
  background-color: #66BB6A;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.footer {
  background-color: #66BB6A;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

@media (max-width: 768px) {
  header h1 {
    font-size: 25px;
  }
  header p {
    font-size: 15px;
  }
  .cards .card {
    width: 90%;
    height: auto;
  }
  .formulario form {
    width: 90%;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */