/* ==========================================================================
   Footer (Figma 811:5063 / 192:1664)
   Due pannelli grigi: claim + CONTATTACI + logo (sx); Follow Us + social +
   legal + certificazioni (dx).
   ========================================================================== */

.footer { background: var(--color-surface); padding-block: var(--space-section); }

.footer__grid {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.footer__box {
  background: var(--color-surface-2); /* #eaeaea */
  border-radius: 15px;
  padding: 40px;
  min-height: 500px;
}

/* ---- Box sinistro ---- */
.footer__box--left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__left-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.footer__claim {
  font-size: var(--fs-h2); /* 48px */
  font-weight: var(--fw-light);
  line-height: 1.05;
  color: var(--color-text);
  opacity: 0.7;
}
.footer__claim strong { font-weight: var(--fw-bold); }
.footer__logo { width: 200px; height: auto; }

/* ---- Box destro ---- */
.footer__box--right {
  flex: 0 0 416px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.footer__follow { display: flex; flex-direction: column; gap: 20px; }
.footer__follow-title {
  font-size: var(--fs-p28); /* 28px */
  font-weight: var(--fw-regular);
  line-height: 1.2;
  color: var(--color-text);
  opacity: 0.7;
}
.footer__social { display: flex; gap: 4px; }
.footer__social-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  color: var(--color-text);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.footer__social-ic:hover { background: var(--color-text); color: #fff; }
.footer__social-ic svg { width: 22px; height: 22px; }

.footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.footer__legal { display: flex; flex-direction: column; gap: 5px; max-width: 260px; }
.footer__link {
  font-size: var(--fs-14); /* 14px */
  color: var(--color-text-strong);
  text-decoration: underline;
  line-height: 1.6;
}
.footer__copy {
  padding-top: 29px;
  font-size: var(--fs-14);
  line-height: 1.2;
  color: var(--color-text-muted);
}
.footer__cert { width: 168px; height: auto; flex-shrink: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 860px) {
  .footer__grid { flex-direction: column; }
  .footer__box { min-height: 0; }
  .footer__box--left,
  .footer__box--right { flex: 0 0 auto; width: 100%; }
  .footer__box--left { gap: 80px; }
}

@media (max-width: 560px) {
  .footer__box { padding: 28px; }
  .footer__left-head { flex-direction: column; gap: 24px; }
  .footer__box--left { gap: 56px; }
}
