/* ====== CONTACTO ====== */
.contacto-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contacto-container h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #28a745;
}

.contacto-form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contacto-form textarea {
  resize: vertical;
  height: 150px;
}

.contacto-form button {
  margin-top: 20px;
  background-color: #007bff;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.contacto-form button:hover {
  background-color: #0056b3;
}
