/* Floating WhatsApp button */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;

  background: #25D366;
  color: #fff;
  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transform: translateZ(0); /* helps on mobile */
}

/* Raise above mobile browser bars / safe area */
@supports (padding: env(safe-area-inset-bottom)) {
  .wa-float{
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

/* Icon */
.wa-float .wa-icon{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.wa-float .wa-icon svg{
  width: 22px;
  height: 22px;
  display: block;
}

/* Label */
.wa-float .wa-label{
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

/* Hover / tap feedback */
.wa-float:hover{
  filter: brightness(0.95);
}

.wa-float:active{
  transform: translateY(1px);
}

/* Optional: on very small screens show icon only */
@media (max-width: 360px){
  .wa-float{
    padding: 12px;
  }
  .wa-float .wa-label{
    display: none;
  }
}

.socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #eaeef7;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: 0.2s ease;
}

.socials a:hover {
  background: #ffb000;
  color: #1b1b1b;
  transform: translateY(-2px);
}

.socials svg {
  width: 18px;
  height: 18px;
}
