footer {
  background: #080808;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  gap: 20px;
  flex-wrap: wrap;
}
footer .logo { font-size: 1.2rem; }
footer p { font-size: .82rem; color: var(--gray); }

.footer-socials { display: flex; gap: 14px; }

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: .9rem;
  text-decoration: none;
  transition: all .25s;
}
.footer-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

/* ─── Floating WhatsApp ─── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.whatsapp-tooltip {
  background: var(--dark2);
  color: var(--white);
  border: 1px solid rgba(37,211,102,0.3);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .8rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all .3s;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

.wa-btn {
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform .3s;
  animation: wa-bounce 3s ease-in-out infinite;
}
.wa-btn:hover { animation: none; transform: scale(1.15); }

@keyframes wa-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
