.language-plugin {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  background: rgba(12, 39, 61, .88);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
}

.language-plugin button {
  min-width: 44px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: 800 13px/1 Arial, sans-serif;
  letter-spacing: 0;
}

.language-plugin button[aria-pressed="true"] {
  background: #fff;
  color: #17425f;
}

.language-plugin button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .8);
  outline-offset: 2px;
}

.social-contact {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-contact__link {
  min-width: 112px;
  padding: 11px 14px;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font: 800 14px/1 Arial, sans-serif;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
  transition: transform .18s ease, box-shadow .18s ease;
}

.social-contact__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .26);
}

.social-contact__link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .9);
  outline-offset: 2px;
}

.social-contact__link--whatsapp {
  background: #1f9d55;
}

.social-contact__link--facebook {
  background: #1877f2;
}

.social-contact__link--instagram {
  background: #c13584;
}

@media (max-width: 560px) {
  .language-plugin {
    top: 10px;
    right: 10px;
  }

  .language-plugin button {
    min-width: 40px;
  }

  .social-contact {
    right: 10px;
    bottom: 10px;
    left: 10px;
    flex-direction: row;
    justify-content: center;
  }

  .social-contact__link {
    min-width: 0;
    flex: 1;
    padding: 11px 8px;
    font-size: 13px;
  }
}
