/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: #f8f8f8;
  color: #333;
  line-height: 1.7;
}

.contacto-container {
  max-width: 850px;
  margin: 6rem auto 4rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contacto-container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  color: #530045;
}

.intro {
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.contacto-datos p {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.contacto-formulario {
  margin-top: 3rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.btn-enviar {
  display: inline-block;
  background: #530045;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-enviar:hover {
  background: #01004d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contacto-container {
    padding: 1.5rem;
    margin: 4rem 1rem;
  }

  .contacto-container h1 {
    font-size: 2rem;
  }
}
