/* ======= FORMULARIO DE CONTACTO ======= */

.contacto-formulario {
  background: linear-gradient(to right, #0d0b14, #15131d);
  color: white;
  padding: 4rem 2rem;
}

.contacto-grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

.contacto-info {
  flex: 1 1 350px;
  text-align: center;
}

.contacto-info h2 {
  font-size: 1.8rem;
  margin: 1rem 0;
}

.contacto-info p {
  font-size: 1rem;
  color: #ccc;
}

.contacto-icono {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

.contacto-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contacto-form h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contacto-form p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #aaa;
}

.contacto-form input,
.contacto-form textarea {
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  background: #1e1d2a;
  color: white;
  outline: none;
}

.contacto-form textarea {
  resize: vertical;
}

.contacto-form button {
  background: linear-gradient(90deg, #a084ff, #d985f5);
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(160, 132, 255, 0.6);
  transition: all 0.3s ease;
}

.contacto-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(160, 132, 255, 0.9);
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
  .contacto-grid {
    flex-direction: column;
    text-align: center;
  }

  .contacto-form {
    width: 100%;
  }
}
