
.icn-btn-orcamento {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  box-shadow: none;
  transition:
  transform 0.2s ease,
  background-color 0.2s ease,
  border-color 0.2s ease;
}

.icn-btn-orcamento:focus,
.icn-btn-orcamento:focus-visible,
.icn-btn-orcamento:hover,
.icn-btn-orcamento:active {
  box-shadow: none !important;
}

.icn-btn-orcamento:focus-visible {
  outline: 2px solid #005fcc;
  outline-offset: 3px;
}

.icn-btn--primary {
  background-color: #FF9900;
  border-color: #FF9900;
  color: #fff;
  box-shadow: none;
}

.icn-btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}

.icn-btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.icn-btn--secondary {
  background-color: #111;
  border-color: #111;
  color: #fff;
  box-shadow: none;
}

.icn-btn--secondary:hover {
  color: #fff;
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: none;
}

.icn-btn--secondary:active {
  transform: translateY(0);
  box-shadow: none;
}

/*
 * Implementado como pseudo-elemento ::after no btn--secondary.
 * Não requer markup extra — é 100% CSS puro.
 * Posicionado no canto superior direito do botão.
 */
/* .icn-btn--secondary::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #44AD3A;
  position: absolute;
  top: -3px;
  right: -3px;
  box-shadow: 0 0 0 2px #fff;
  animation: icn-badge-pulse 1.8s ease-out infinite;
} */

/*
 * Pulso expande para fora e desaparece, depois reinicia do zero.
 */
/* @keyframes icn-badge-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 2px #fff, 0 0 0 0 rgba(68, 173, 58, 0.7);
  }
  70% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 2px #fff, 0 0 0 12px rgba(68, 173, 58, 0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 2px #fff, 0 0 0 12px rgba(68, 173, 58, 0);
  }
} */


/* RESPONSIVO — Ocultar botão WhatsApp no mobile     */
@media (max-width: 768px) {
  .icn-btn--secondary {
    display: none;
  }
  .icn-btn-orcamento {
    padding: 10px 12px !important;
  }
}
