.abdz-mascota-guia {
  position: fixed;
  left: clamp(12px, 2vw, 30px);
  bottom: 26px;
  z-index: 45;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease;
}

.abdz-mascota-guia.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.abdz-mascota-guia__boton {
  position: relative;
  bottom: 16px;
  width: 112px;
  height: 112px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.abdz-mascota-guia__imagen {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
}

.abdz-mascota-guia__mensaje,
.abdz-mascota-guia__hola {
  max-width: 240px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(28, 51, 73, .14);
  border-radius: 14px 14px 14px 4px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 28px rgba(23, 42, 58, .14);
  color: #24384c;
  font: 500 14px/1.45 Arial, sans-serif;
}

.abdz-mascota-guia__hola {
  padding: 7px 11px;
  font-size: 13px;
}

@media (max-width: 640px) {
  .abdz-mascota-guia {
    left: 10px;
    bottom: 84px;
    gap: 4px;
  }

  .abdz-mascota-guia__boton {
    bottom: 10px;
    width: 78px;
    height: 78px;
  }

  .abdz-mascota-guia__mensaje {
    max-width: min(190px, calc(100vw - 116px));
    margin-bottom: 8px;
    padding: 10px 11px;
    font-size: 12px;
  }

  .abdz-mascota-guia__hola {
    margin-bottom: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .abdz-mascota-guia { transition: none; }
}
