.hero-contacto{
  padding-bottom: 26px;
}

/* =========================
   CONTROL SPAM
========================= */

.form-honeypot{
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ====================== */

.contacto-intro{
  padding-top: 0;
}

.contact-form-section{
  padding: 34px 0 72px;
}

.contact-form-card{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-xl);
  padding: 30px;
}

.contact-form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.form-field{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field-full{
  grid-column: 1 / -1;
}

.form-field label{
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea{
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(31,28,25,.1);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  font: inherit;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-field textarea{
  min-height: 180px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline: none;
  border-color: rgba(182,157,135,.65);
  box-shadow: 0 0 0 4px rgba(182,157,135,.12);
}

.checkbox-line{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

.checkbox-line input{
  margin-top: 3px;
  width: 18px;
  height: 18px;
  min-height: auto;
  flex: 0 0 18px;
}

.form-actions{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 6px;
}

.contact-submit{
  min-width: 220px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(31,28,25,.08);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(27,20,15,.08);
  background: #fff;
}

.form-note{
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
}

.form-note a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px){
  .contact-form-grid{
    grid-template-columns: 1fr;
  }

  .contact-form-card{
    padding: 24px;
  }
}

@media (max-width: 640px){
  .contact-form-card{
    border-radius: 22px;
    padding: 20px;
  }

  .contact-submit{
    width: 100%;
  }
}

/* =========================
   CONTROL DE ENVÍO
========================= */

.form-status{
  margin-bottom: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  font-size: .95rem;
  line-height: 1.7;
  box-shadow: var(--shadow-soft);
}

.form-status strong{
  display: block;
  margin-bottom: 4px;
  font-size: .98rem;
}

.form-status--ok{
  background: rgba(76, 132, 96, .10);
  border: 1px solid rgba(76, 132, 96, .18);
  color: #2d5c3d;
}

.form-status--error{
  background: rgba(168, 83, 83, .08);
  border: 1px solid rgba(168, 83, 83, .16);
  color: #7b3232;
}