/* assets/css/contactar.css */
button {
	width: auto;
}
.contacto-container{
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 120px;
}

.contacto-hero{
  margin-bottom: 20px;
}

.contacto-hero h1{
  margin: 0 0 6px;
  color: var(--main);
}

.contacto-hero p{
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

/* Card estilo agentes */
.contacto-card{
  background: var(--background);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 16px;
}

/* Form */
.contacto-form .form-row{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.contacto-form label{
  font-size: 13px;
  color: var(--text);
  font-weight: 800;
}

.contacto-form input,
.contacto-form textarea{
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  width: auto;
  height: auto;
}

.contacto-form input:focus,
.contacto-form textarea:focus{
  border-color: var(--main);
  box-shadow: 0 0 0 3px rgba(106,13,173,0.10);
}

.hint{
  color: var(--muted);
  font-size: 12px;
}

.chk{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0 6px;
  color: var(--muted);
  font-size: 13px;
}

.form-actions{
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.form-msg{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
}

.form-msg.success{
  background: var(--success-bg);
  border: 1px solid var(--success-bd);
  color: var(--success);
}

.form-msg.error{
  background: var(--warning-bg);
  border: 1px solid var(--warning-bd);
  color: var(--warning);
}

/* Honeypot hidden */
.hp-field{
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
