/* Contato WhatsApp — wa.me (app no celular / WhatsApp Web no PC) */
.saasos-wa-contact-bar {
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 1rem;
}

.saasos-wa-contact-bar--light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.saasos-wa-contact-bar--light .saasos-wa-contact-bar-label {
  color: rgba(255, 255, 255, 0.85);
}

.saasos-wa-contact-bar--light .saasos-wa-contact-bar-phone {
  color: #fff;
}

.saasos-wa-contact-bar--card {
  background: #fff;
  border: 1px solid #d8e2f7;
  box-shadow: 0 2px 10px rgba(21, 52, 102, 0.06);
  color: #1e293b;
}

.saasos-wa-contact-bar--card .saasos-wa-contact-bar-label {
  color: #64748b;
  font-size: 0.8rem;
}

.saasos-wa-contact-bar--card .saasos-wa-contact-bar-phone {
  color: #0f172a;
  font-weight: 700;
}

.saasos-wa-contact-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.saasos-wa-contact-bar-icon {
  font-size: 1.75rem;
  color: #25d366;
  line-height: 1;
}

.saasos-wa-contact-bar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 140px;
}

.saasos-wa-contact-bar-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.saasos-wa-contact-bar-phone {
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.saasos-wa-contact-bar-phone:hover {
  text-decoration: underline;
}

.saasos-wa-contact-bar-btn {
  white-space: nowrap;
  font-weight: 600;
}

.saasos-wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1035;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.saasos-wa-fab:hover {
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

.saasos-wa-fab-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: #0f172a;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.saasos-wa-fab:hover .saasos-wa-fab-tooltip,
.saasos-wa-fab:focus-visible .saasos-wa-fab-tooltip {
  opacity: 1;
}

@media (max-width: 576px) {
  .saasos-wa-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .saasos-wa-fab-tooltip {
    display: none;
  }
}
