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

body {
  font-family: "Roboto", sans-serif;
  color: #333;
  background-color: #f8f8f8;
}

/* ===== HEADER ===== */
header {
  background-image: url("./assets/fundo.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 80vh;
  text-align: center;
  color: white;
}
header .box-header {
  background: rgba(0, 0, 0, 0.4);
  height: inherit;
  padding: 200px 40px 40px 40px;
  display: inline-block;
  width: 100%;
  text-align: center;
}
header .box-header h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 15px;
}
header .box-header p {
  font-size: 1.4rem;
  width: 50vw;
  margin: 0 auto 25px auto;
  font-weight: bold;
}
header .box-header button {
  background-color: #66bb6a;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
header .box-header button:hover {
  background-color: #57a85b;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 10%;
  text-align: center;
}
.cards .card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.cards .card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 20px;
}
.cards .card h2 {
  font-size: 1.5rem;
  color: #2e7d32;
  margin-bottom: 10px;
}
.cards .card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}
.cards .card button {
  background-color: #66bb6a;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cards .card button:hover {
  background-color: #57a85b;
}

/* ===== SOBRE ===== */
.sobre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 10%;
  flex-wrap: wrap;
  background-color: #e8f5e9;
}
.sobre .content {
  flex: 1 1 400px;
}
.sobre .content h2 {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 20px;
}
.sobre .content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}
.sobre img {
  width: 400px;
  border-radius: 20px;
}

/* ===== CADASTRO ===== */
.cadastro {
  background-color: #e8f5e9;
  text-align: center;
  padding: 80px 10%;
}
.cadastro h2 {
  font-size: 2rem;
  color: #1b5e20;
  margin-bottom: 10px;
}
.cadastro p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}
.cadastro form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cadastro form input,
.cadastro form select {
  padding: 15px;
  border-radius: 15px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.cadastro form input::-moz-placeholder, .cadastro form select::-moz-placeholder {
  color: #aaa;
}
.cadastro form input::placeholder,
.cadastro form select::placeholder {
  color: #aaa;
}
.cadastro form button {
  background-color: #66bb6a;
  color: white;
  font-weight: bold;
  padding: 15px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.cadastro form button:hover {
  background-color: #57a85b;
}

/* ===== FOOTER ===== */
footer {
  background-color: #66bb6a;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  header .box-header {
    padding-top: 120px;
  }
  header .box-header h1 {
    font-size: 3rem;
  }
  header .box-header p {
    width: 80%;
    font-size: 1.1rem;
  }
  .sobre {
    flex-direction: column-reverse;
    text-align: center;
  }
  .sobre img {
    width: 80%;
  }
}/*# sourceMappingURL=style.css.map */