/* ============================================================
   Auditas — Footer
   ============================================================ */
.footer {
  position: relative;
  background: linear-gradient(-64.77deg, var(--black60) 10.5%, var(--black90) 77%);
  box-shadow: 0 -8px 12px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  isolation: isolate;
}
/* Formas decorativas: el trazo del check dorado asomando por las esquinas
   (mismo arte del diseño en Figma), atenuado sobre el fondo oscuro. */
.footer__forma {
  position: absolute;
  width: 1200px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  filter: blur(16px) saturate(1.05);
}
.footer__forma--left { left: -900px; bottom: -520px; }
.footer__forma--right { right: -860px; top: -420px; transform: rotate(180deg); }

.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding-block: 55px 40px;
}

/* ---- Fila de columnas ---- */
.footer__cols {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(48px, 12vw, 160px);
  width: 100%;
}

.footer__about { display: flex; flex-direction: column; align-items: flex-start; gap: 19px; max-width: 440px; }
.footer__logo { height: 47px; width: auto; }
.footer__about-text { display: flex; flex-direction: column; gap: 5px; }
.footer__name { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 18px; color: var(--whitef); line-height: 1.35; }
.footer__desc { font-family: var(--font-body); font-size: var(--fs-body); color: var(--whitef); line-height: 1.35; }

.footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.footer__heading { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 18px; color: var(--whitef); }
.footer__social { display: flex; gap: 19px; }
.footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(253, 253, 253, 0.20);
  border-radius: var(--r-s);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform var(--t-fast) var(--ease-out), background-color var(--t-med) var(--ease-out);
}
.footer__social-btn:hover { transform: translateY(-2px); background: rgba(253, 253, 253, 0.32); }
.footer__social-btn img { width: 24px; height: 24px; }

.footer__details { display: flex; flex-direction: column; gap: var(--sp-8); }
.footer__detail { display: flex; align-items: center; gap: var(--sp-8); font-family: var(--font-body); font-size: var(--fs-body); color: var(--whitef); line-height: 1.35; }
.footer__detail-icon { width: 24px; height: 24px; flex: none; }
.footer__detail--link { transition: color var(--t-fast) var(--ease-out); }
.footer__detail--link:hover { color: var(--yelludit); }

/* ---- Divisor ---- */
.footer__divider { width: 100%; max-width: 947px; height: 0; border: none; border-top: 1px solid var(--gray70); }

/* ---- Legal ---- */
.footer__legal { display: flex; flex-direction: column; align-items: center; gap: var(--sp-8); text-align: center; }
.footer__copy { font-family: var(--font-body); font-size: var(--fs-mini); color: var(--whitef); line-height: 1.35; }
.footer__links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--sp-40); }
.footer__links a {
  font-family: var(--font-body);
  font-size: var(--fs-mini);
  color: var(--whitef);
  line-height: 1.35;
  transition: color var(--t-fast) var(--ease-out);
}
.footer__links a:hover { color: var(--yelludit); text-decoration: underline; }

/* ---- Responsive ---- */
@media (max-width: 760px) {
  .footer__cols { flex-direction: column; align-items: center; text-align: center; gap: 36px; }
  .footer__about, .footer__contact { align-items: center; }
  .footer__about-text { text-align: center; }
  .footer__links { gap: var(--sp-20); }
}
