
/* ══════════════════════════════
   FORMULARIO
══════════════════════════════ */

.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 8px 40px rgba(144, 8, 112, 0.1);
  border: 1px solid rgba(144, 8, 112, 0.1);
}

.contact-form h4 {
  margin-bottom: 24px;
  color: var(--text);
}

.contact-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(144, 8, 112, 0.2);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--card-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  margin-bottom: 16px;
  outline: none;
  display: block;
}

.contact-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(144, 8, 112, 0.1);
  background: var(--white);
}

.contact-input::placeholder {
  color: #a07898;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.captcha-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  white-space: nowrap;
}

.captcha-input {
  width: 90px !important;
  margin-bottom: 0 !important;
  flex-shrink: 0;
}

.captcha-refresh {
  background: rgba(144, 8, 112, 0.1);
  border: none;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--brand);
  flex-shrink: 0;
  transition: background var(--transition);
}

.captcha-refresh:hover {
  background: rgba(144, 8, 112, 0.2);
}

.form-message {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 24px;
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 0 4px;
}

.form-message.success { color: #1a7a3c; }
.form-message.error   { color: #c0392b; }
