/* ====== Custom Theme & CTA Buttons (Desktop + Mobile) ====== */

/* Importa a fonte Manrope se ainda não estiver carregada */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@700&display=swap');

/* Estilos principais */
button,
a.button,
.hs-button,
.hs-cta-wrapper a,
.cta-button,
.call-to-action button,
.call-to-action a,
.call-to-action .hs-button,
.call-to-action .cta-button,
.ly-button,
.ly-cta,
.ly-cta a {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800 !important; /* Bold */
  font-size: 16px !important;
  text-transform: uppercase !important; /* Caixa alta */
  letter-spacing: 0.5px !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
  word-break: keep-all !important;
}

/* Caso o texto do botão esteja dentro de um <span> */
.hs-cta-wrapper a span,
.cta_button a span {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  line-height: 1.4 !important;
}

/* Hover */
button:hover,
a.button:hover,
.call-to-action a:hover,
.ly-button:hover {
  opacity: 0.9;
  transition: all 0.2s ease-in-out;
}

/* ====== Mobile (garante consistência em telas menores) ====== */
@media (max-width: 768px) {
  button,
  a.button,
  .hs-button,
  .hs-cta-wrapper a,
  .cta-button,
  .call-to-action button,
  .call-to-action a,
  .call-to-action .hs-button,
  .call-to-action .cta-button,
  .ly-button,
  .ly-cta,
  .ly-cta a {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    line-height: 1.4 !important;
  }
}