/* ================================================================
   VELO.LAW® — FOOTER (.wpr-footer-area) + WhatsApp float
   Texto, espaçamento, shapes, goTop, botão flutuante
   ================================================================ */

/* ── Footer: sobe para ficar próximo da seção acima ── */
.wpr-footer-area {
  margin-top: -16px !important;
}

/* ── Espaçamento interno reduzido ── */
.wpr-footer-area .section-inner {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}
.wpr-footer-area .footer-logo-area {
  padding: 20px 0 !important;
}

/* ── Texto escuro no light mode ── */
.wpr-footer-area .footer-top a,
.wpr-footer-area .copyright-area p,
.wpr-footer-area .copyright-area ul li a,
.wpr-footer-area p.copyright {
  color: #1a1a1a !important;
  opacity: 0.8 !important;
}
.wpr-footer-area .copyright-area ul li a,
.wpr-footer-area .left-social-area a {
  opacity: 0.75 !important;
  color: #1a1a1a !important;
}
.wpr-footer-area .copyright p,
.wpr-footer-area p.copyright {
  opacity: 0.75 !important;
  color: #1a1a1a !important;
}

/* ── Shapes decorativos: ocultos no desktop (renderizavam como retângulos verdes) ── */
@media (min-width: 768px) {
  .wpr-footer-area .footer-logo-area .shape {
    display: none !important;
  }
}

/* ── goTop: oculto em todos os devices ── */
#goTop {
  display: none !important;
}

/* ── WhatsApp floating button ── */
#whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: var(--color-primary, #0efa71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(14, 250, 113, 0.45);
  z-index: 9999;
  animation: waFloat 2.8s ease-in-out infinite;
  transition: transform .18s ease, box-shadow .18s ease;
}
#whatsapp-float:hover {
  transform: scale(1.12) !important;
  box-shadow: 0 6px 28px rgba(14, 250, 113, 0.65);
  animation: none;
}
#whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #000;
  display: block;
  flex-shrink: 0;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0);    box-shadow: 0 4px 18px rgba(14,250,113,.45); }
  50%       { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(14,250,113,.6);  }
}

/* ── Mobile: shapes e padding ── */
@media (max-width: 767.98px) {
  .footer-logo-area .shape {
    display: none !important;
  }
  .wpr-footer-area .footer-logo-area {
    padding: 32px 20px !important;
  }
}
