<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* ========== FORMULARIO DE CONTACTO (BASE) ========== */
.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem auto 0;
  max-width: 700px;
}

.formulario-contacto label {
  font-weight: 600;
}

.formulario-contacto input,
.formulario-contacto textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  width: 100%;
}

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

.formulario-contacto button {
  padding: 0.9rem 1rem;
  background-color: #111;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-contacto button:hover {
  background-color: #333;
}
</pre></body></html>