/* MRM — contatos flutuantes compartilhados */
.mrm-floating-whatsapp{
  position:fixed;
  left:22px;
  bottom:22px;
  z-index:9998;
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:56px;
  padding:0 18px;
  border-radius:999px;
  background:#20c864;
  color:#fff !important;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  font-weight:800;
  line-height:1;
  text-decoration:none !important;
  box-shadow:0 14px 34px rgba(0,0,0,.25);
  transition:transform .18s ease,box-shadow .18s ease;
}
.mrm-floating-whatsapp:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 38px rgba(0,0,0,.3);
}
.mrm-floating-whatsapp svg{
  width:27px;
  height:27px;
  fill:currentColor;
  flex:0 0 auto;
}
.mrm-floating-whatsapp small{
  display:block;
  font-size:10px;
  line-height:1.1;
  font-weight:600;
  opacity:.92;
}
.mrm-floating-whatsapp strong{
  display:block;
  font-size:14px;
  line-height:1.15;
}
@media (max-width:680px){
  .mrm-floating-whatsapp{
    left:14px;
    bottom:14px;
    width:56px;
    height:56px;
    min-height:56px;
    padding:0;
    justify-content:center;
  }
  .mrm-floating-whatsapp span{display:none}
}
