/* --- FORMULARIO DE CONTACTO - ESTILO ROTO KA --- */
.container-contacto {
  max-width: 760px;
  margin: auto;
  background: linear-gradient(135deg, #1e1e2f, #16141f);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #2c2c3a;
  box-shadow: 0 0 20px rgba(240, 70, 128, 0.4);
}

.container-contacto h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff2e8b;
  text-shadow: 0 0 8px #ff2e8b80;
}

.container-contacto p.descripcion {
  text-align: center;
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.container-contacto form {
  display: flex;
  flex-direction: column;
}

.container-contacto label {
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #ccc;
}

.container-contacto input,
.container-contacto textarea {
  background: #272636;
  border: 1px solid #444;
  border-radius: 6px;
  padding: 0.8rem;
  color: #f5f5f5;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
}

.container-contacto input:focus,
.container-contacto textarea:focus {
  border-color: #ff2e8b;
  outline: none;
  box-shadow: 0 0 5px #ff2e8b80;
}

.container-contacto button {
  padding: 0.9rem;
  background: linear-gradient(45deg, #ff2e8b, #d70063);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.container-contacto button:hover {
  background: linear-gradient(45deg, #ff4da1, #f04680);
  box-shadow: 0 0 12px rgba(255, 46, 139, 0.6);
}
