/* =========================    CONTACTO    ========================= */



.contacto {
  padding: 8vh 5vw;
  background: #f9f9f9;
  text-align: center;
}

.contacto h1 {
  color: #25d366;
  margin-bottom: 1rem;
}

.form-contacto {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contacto p {
  color: #000000;
  margin-bottom: 1rem;
}

.form-contacto label {
  text-align: left;
  font-weight: 600;
  color: #333;
}

.form-contacto input,
.form-contacto textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-contacto button {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-contacto button:hover {
  background: #1ea854;
}
