/* Inter Clínicas Litoral — botões flutuantes V85 */
.float-whatsapp,
#tawk-chat-fallback,
#tawk-custom-launcher{
  display:none !important;
}

.icl-wa-v85{
  position:fixed;
  right:22px;
  bottom:20px;
  z-index:2147483001;
  width:100px;
  height:100px;
  display:grid;
  place-items:center;
  border-radius:50%;
  text-decoration:none;
  isolation:isolate;
  filter:drop-shadow(0 17px 25px rgba(11,93,52,.30));
  transition:transform .22s ease,filter .22s ease;
}
.icl-wa-v85::before{
  content:"";
  position:absolute;
  inset:3px;
  z-index:-1;
  border-radius:50%;
  background:rgba(255,255,255,.96);
  box-shadow:
    0 0 0 3px rgba(255,255,255,.96),
    0 0 0 6px rgba(23,184,92,.30);
}
.icl-wa-v85::after{
  content:"WhatsApp";
  position:absolute;
  right:7px;
  top:-7px;
  min-width:62px;
  padding:5px 8px;
  border-radius:999px;
  background:#07355f;
  color:#fff;
  font:700 10px/1 Arial,sans-serif;
  letter-spacing:.02em;
  text-align:center;
  box-shadow:0 7px 18px rgba(5,44,78,.24);
}
.icl-wa-v85 img{
  width:88px;
  height:88px;
  display:block;
  object-fit:contain;
}
.icl-wa-v85:hover{
  transform:translateY(-5px) scale(1.045);
  filter:drop-shadow(0 22px 31px rgba(11,93,52,.38));
}

.icl-chat-v85{
  position:fixed;
  left:20px;
  bottom:20px;
  z-index:2147483001;
  width:246px;
  min-height:74px;
  display:flex;
  align-items:center;
  gap:13px;
  padding:9px 17px 9px 9px;
  border:1px solid rgba(218,179,93,.55);
  border-radius:22px;
  background:
    linear-gradient(90deg,#d9b35d 0 5px,transparent 5px),
    linear-gradient(135deg,#061f3c 0%,#073b67 62%,#075f7c 100%);
  color:#fff;
  box-shadow:0 18px 42px rgba(4,35,66,.34);
  cursor:pointer;
  font-family:Arial,sans-serif;
  text-align:left;
  overflow:hidden;
  transition:transform .22s ease,box-shadow .22s ease;
}
.icl-chat-v85:hover{
  transform:translateY(-4px);
  box-shadow:0 23px 50px rgba(4,35,66,.42);
}
.icl-chat-v85__icon{
  position:relative;
  width:52px;
  height:52px;
  flex:0 0 52px;
  display:grid;
  place-items:center;
  margin-left:2px;
  border-radius:17px;
  background:linear-gradient(145deg,#fff,#e7f4fb);
  box-shadow:inset 0 0 0 1px rgba(4,48,86,.08),0 8px 19px rgba(0,0,0,.18);
}
.icl-chat-v85__icon svg{
  width:29px;
  height:29px;
  fill:#075582;
}
.icl-chat-v85__dot{
  position:absolute;
  right:-2px;
  top:-2px;
  width:15px;
  height:15px;
  border:3px solid #fff;
  border-radius:50%;
  background:#35d06f;
  box-shadow:0 0 0 0 rgba(53,208,111,.48);
  animation:iclChatPulseV85 2s infinite;
}
.icl-chat-v85__copy{
  min-width:0;
  display:grid;
  gap:4px;
}
.icl-chat-v85__topline{
  display:flex;
  align-items:center;
  gap:7px;
}
.icl-chat-v85__copy strong{
  color:#fff;
  font-size:15px;
  line-height:1.05;
  letter-spacing:.01em;
}
.icl-chat-v85__badge{
  display:inline-flex;
  align-items:center;
  min-height:18px;
  padding:0 7px;
  border-radius:999px;
  background:#d9b35d;
  color:#062846;
  font-size:8px;
  line-height:1;
  font-weight:900;
  letter-spacing:.08em;
}
.icl-chat-v85__copy small{
  color:rgba(255,255,255,.76);
  font-size:11.5px;
  line-height:1.15;
  font-weight:600;
}
html[data-icl-chat-status="offline"] .icl-chat-v85__dot{
  background:#e6ae3d;
  animation:none;
}

@keyframes iclChatPulseV85{
  0%{box-shadow:0 0 0 0 rgba(53,208,111,.48)}
  70%{box-shadow:0 0 0 10px rgba(53,208,111,0)}
  100%{box-shadow:0 0 0 0 rgba(53,208,111,0)}
}

@media(max-width:720px){
  .icl-wa-v85{
    right:12px;
    bottom:14px;
    width:88px;
    height:88px;
  }
  .icl-wa-v85 img{
    width:77px;
    height:77px;
  }
  .icl-wa-v85::after{
    right:3px;
    top:-7px;
    min-width:55px;
    font-size:9px;
  }
  .icl-chat-v85{
    left:12px;
    bottom:14px;
    width:210px;
    min-height:64px;
    padding:7px 12px 7px 7px;
    border-radius:19px;
    gap:10px;
  }
  .icl-chat-v85__icon{
    width:48px;
    height:48px;
    flex-basis:48px;
    border-radius:15px;
  }
  .icl-chat-v85__copy strong{font-size:13px}
  .icl-chat-v85__copy small{font-size:10px}
  .icl-chat-v85__badge{font-size:7px;padding:0 6px}
}

@media(max-width:390px){
  .icl-chat-v85{
    width:64px;
    height:64px;
    min-height:64px;
    padding:6px;
    border-radius:20px;
  }
  .icl-chat-v85__icon{
    width:50px;
    height:50px;
    flex-basis:50px;
  }
  .icl-chat-v85__copy{display:none}
}

@media(prefers-reduced-motion:reduce){
  .icl-wa-v85,
  .icl-chat-v85{
    transition:none !important;
  }
  .icl-chat-v85__dot{
    animation:none !important;
  }
}