@charset "utf-8";
/* CSS Document */
  .whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
  }

  .whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.28);
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  /* Tooltip */
  .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    bottom: 12px;
    background-color: #128C7E;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .whatsapp-float:hover + .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
  }

  /* Responsivo */
  @media (max-width: 420px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      right: 14px;
      bottom: 14px;
    }
    .whatsapp-tooltip {
      right: 60px;
      bottom: 10px;
      font-size: 13px;
    }
  }

  /* Esconder fora do horário */
  .hidden {
    display: none !important;
  }