.fixed-actions {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.about-image img {
  object-position: center top;
}

.fixed-actions .fixed {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(3, 15, 27, .30);
  transition: transform .2s ease, box-shadow .2s ease;
}

.fixed-actions .fixed:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(3, 15, 27, .38);
}

.fixed-actions .instagram {
  background: linear-gradient(135deg, #d62976 8%, #f04f48 92%);
}

.fixed-actions .map {
  background: #df8817;
  color: #fff;
}

.fixed-actions .phone {
  background: #c31725;
}

.fixed-actions .whatsapp {
  background: #08bd66;
}

@media (max-width: 850px) {
  .fixed-actions {
    right: 12px;
    bottom: 16px;
    gap: 9px;
  }

  .fixed-actions .fixed {
    width: 48px;
    height: 48px;
    font-size: 21px;
  }
}
