
/* SEO & Contact V5 - floating call + WhatsApp */
.floating-contact-v5{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-end;
  pointer-events:none;
}
.floating-contact-v5 a{
  pointer-events:auto;
  min-width:136px;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-weight:900;
  font-size:15px;
  text-decoration:none;
  box-shadow:0 18px 45px rgba(2,16,31,.20);
  transform:translateZ(0);
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
  border:1px solid rgba(255,255,255,.18);
}
.floating-contact-v5 a:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 60px rgba(2,16,31,.26);
  filter:saturate(1.05);
}
.call-float-v5{
  color:#fff;
  background:linear-gradient(135deg,#0b4778,#06325c);
}
.call-float-v5::before{
  content:"☎";
  font-size:17px;
  line-height:1;
}
.whatsapp-float-v5{
  color:#fff;
  background:linear-gradient(135deg,#25d366,#12a953);
}
.whatsapp-float-v5::before{
  content:"✆";
  font-size:17px;
  line-height:1;
}
@media(max-width:760px){
  .floating-contact-v5{
    right:14px;
    bottom:14px;
    gap:8px;
  }
  .floating-contact-v5 a{
    min-width:118px;
    min-height:48px;
    padding:0 18px;
    font-size:14px;
  }
}
@media(max-width:390px){
  .floating-contact-v5 a{
    min-width:108px;
    min-height:46px;
    padding:0 15px;
  }
}
