.site-footer {
  position: relative;
  padding: 58px max(18px, calc((100% - 1080px) / 2)) 40px;
  color: var(--blue);
  background: #eaf0f6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-company,
.footer-protection {
  text-align: center;
}

.footer-logo {
  width: 210px;
  margin: 0 auto 14px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 0 22px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}

.social-links img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.footer-protection h2 {
  margin-top: 10px;
  font-size: 28px;
}

.site-footer p {
  margin: 0 auto 14px;
  max-width: 440px;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
}

.site-footer strong {
  color: var(--red);
}

.footer-seals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 26px auto 0;
}

.footer-seals img {
  width: auto;
  max-width: 118px;
  max-height: 64px;
  object-fit: contain;
}

.privacy-bottom {
  display: block;
  width: max-content;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 25;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.whatsapp img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}
