.contact-success {
  padding: 18px 20px;
  margin-bottom: 20px;
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #badbcc;
  border-radius: 10px;
}

.contact-success p {
  margin: 0;
}

.contact-success-home {
  align-items: center;
  background: linear-gradient(135deg, #3479e8, #6aa5fb);
  border-radius: 999px;
  box-shadow: 0 9px 20px rgba(52, 121, 232, .24);
  color: #fff;
  display: inline-flex;
  font-size: .94rem;
  font-weight: 700;
  gap: .5rem;
  margin-top: 1.1rem;
  padding: .72rem 1.25rem;
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}

.contact-success-home:hover,
.contact-success-home:focus-visible {
  box-shadow: 0 12px 26px rgba(52, 121, 232, .34);
  color: #fff;
  transform: translateY(-2px);
}

/* Tras enviar, se elimina el formulario sin forzar un alto de viewport.
   Forzar min-height dejaba una franja blanca después del footer. */
body.contact-completed #wrapper { min-height: 0; }
body.contact-completed #content { padding-bottom: 0; }
body.contact-completed footer { margin-top: 0; }

.contact-success-home:focus-visible {
  outline: 3px solid rgba(52, 121, 232, .35);
  outline-offset: 3px;
}

.contact-status {
  padding: 12px 14px;
  margin-bottom: 18px;
  border-radius: 8px;
}

.contact-status.alert-danger {
  color: #842029;
  background: #f8d7da;
}

.contact-status.alert-success {
  color: #0f5132;
  background: #d1e7dd;
}

.contact-status.alert-info {
  color: #055160;
  background: #cff4fc;
}

.contact-status.d-none {
  display: none;
}

.contact-field {
  margin-bottom: 16px;
}

.contact-field label {
  display: block;
  margin-bottom: 6px;
  color: #002868;
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid #d7deea;
  border-radius: 8px;
  color: #102a43;
  font: inherit;
  box-sizing: border-box;
}

.contact-field textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-field input.is-invalid,
.contact-field textarea.is-invalid {
  border-color: #dc3545;
}

.contact-field small,
[data-error-for="turnstile"] {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: #b02a37;
  font-size: 13px;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.cf-turnstile {
  margin: 6px 0 12px;
}

@media (max-width: 991px) {
  .cf-turnstile {
    transform: scale(.9);
    transform-origin: left top;
  }

  /* Mantiene legibles los títulos de subpáginas sin alterar su composición. */
  #subheader h1 {
    max-width: 100%;
    font-size: clamp(2rem, 7vw, 2.6rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
}
