.contact-hero {
  background: url("../img/fondo-mail.jpg") center / cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

/* FORM */
.contact-form-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.contact-form h1 {
  color: #003a8f;
  margin-bottom: 5px;
  text-align: center;
}

.contact-form .subtitle {
  text-align: center;
  color: #003a8f;
  margin-bottom: 25px;
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #003a8f;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: orange;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  min-height: 100vh;
  background: 
    linear-gradient(rgba(170, 169, 169, 0.45), rgba(170, 169, 169, 0.45)),
    url("../img/fondo-mail.jpg") center / cover no-repeat fixed;
}