/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f4f6;
  color: #222;
}

/* CONTAINER */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */

.header {
  background: #111827;
  color: white;
  text-align: center;
  padding: 30px 0;
}

.header h1 {
  font-size: 2.2rem;
}

.header p {
  margin-top: 10px;
  opacity: 0.8;
}

/* HERO */

.hero {
  min-height: 70vh;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=1200&auto=format&fit=crop');

  background-size: cover;
  background-position: center;

  color: white;
  text-align: center;
}

.hero-text h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* BOTÃO */

#goForm {
  border: none;
  padding: 15px 30px;
  background: #2563eb;
  color: white;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

#goForm:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}

/* FORMULÁRIO */

.form-section {
  padding: 60px 0;
}

.form-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* INPUTS */

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.input-group label {
  margin-bottom: 8px;
  font-weight: bold;
}

.input-group input {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
}

/* BOTÃO SUBMIT */

.submit-btn {
  width: 100%;
  border: none;
  padding: 15px;
  background: #16a34a;
  color: white;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #15803d;
}

/* FOOTER */

.footer {
  background: #111827;
  color: white;
  text-align: center;
  padding: 25px 0;
}

/* RESPONSIVO */

@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 2rem;
  }

  .form-card {
    padding: 25px;
  }
}
