/* ============================================
   CONTACTO ANIMA – LAYOUT GENERAL
   ============================================ */
.aa-contact {
  background: #F6F7F9;
  padding: 70px 0;
}

.aa-contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .aa-contact__inner {
    grid-template-columns: 1fr;
  }
}

/* Columna izquierda: imagen vertical */
.aa-contact__image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  background: #000;
}

.aa-contact__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   FORMULARIO CONTACTO ANIMA (wrapper)
   ============================================ */
.aa-contact-form-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 24px 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.aa-contact-form__title {
  font-size: 20px;
  margin: 0 0 4px;
  color: #111111;
}

.aa-contact-form__subtitle {
  font-size: 14px;
  color: #777777;
  margin-bottom: 18px;
}

/* ============================================
   ESTILO ANIMA PARA WPFORMS
   ============================================ */

.aa-contact-form-wrapper .wpforms-form {
  margin: 0;
}

.aa-contact-form-wrapper .wpforms-field {
  margin-bottom: 14px !important;
}

.aa-contact-form-wrapper .wpforms-field-label {
  font-size: 14px;
  font-weight: 500;
  color: #444444;
  margin-bottom: 6px;
}

.aa-contact-form-wrapper .wpforms-required-label {
  color: #C87914;
}

.aa-contact-form-wrapper .wpforms-field input[type="text"],
.aa-contact-form-wrapper .wpforms-field input[type="email"],
.aa-contact-form-wrapper .wpforms-field input[type="tel"],
.aa-contact-form-wrapper .wpforms-field select,
.aa-contact-form-wrapper .wpforms-field textarea {
  width: 100%;
  padding: 9px 11px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #D5D7DD;
  background: #FBFBFC;
  transition: 0.15s ease;
}

.aa-contact-form-wrapper .wpforms-field input:focus,
.aa-contact-form-wrapper .wpforms-field textarea:focus,
.aa-contact-form-wrapper .wpforms-field select:focus {
  border-color: #C87914;
  background: #ffffff;
}

.aa-contact-form-wrapper .wpforms-field textarea {
  min-height: 110px;
  resize: vertical;
}

/* Botón enviar WPForms */
.aa-contact-form-wrapper .wpforms-submit {
  width: 100%;
  padding: 11px 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  background: #C87914;
  color: #fff;
  border: none;
  transition: 0.15s ease;
}

.aa-contact-form-wrapper .wpforms-submit:hover {
  background: #a9630f;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* Nota legal */
.aa-contact-form__legal {
  margin-top: 10px;
  font-size: 11px;
  color: #999999;
  line-height: 1.5;
}

/* ============================================
   BOTONES WHATSAPP ANIMA
   ============================================ */
.aa-wp-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.aa-wp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  background: #ffffff;
  color: #111111;
  border: 1px solid #E3E4E6;
  transition: 0.18s ease;
}

.aa-wp-btn:hover {
  border-color: #C87914;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.aa-wp-btn--gold {
  background: #C87914;
  color: #fff;
  border-color: #C87914;
}

.aa-wp-btn--gold:hover {
  background: #a9630f;
  transform: translateY(-2px);
}
