/* Base responsiva — todas as páginas */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  min-width: 0;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

a,
button,
input,
select,
textarea {
  touch-action: manipulation;
}

/* Evita overflow de URLs e textos longos */
.campaign-rich-text,
.reward-card__desc,
.author-box p,
.equipe-card__body p,
.capa-lead,
.doacoes-motivation p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.btn-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

@media (min-width: 480px) {
  .btn-stack--sm-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
