body {
  background-color: #050505;
  color: white;
}
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.text-gradient {
  background: linear-gradient(to right, #c084fc, #f472b6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.donation-card:hover {
  border-color: #c084fc;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
.nav-blur {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
}

/* GARANTE QUE TEXTO NUNCA SEJA CORTADO */
h1 {
  overflow: visible !important;
  word-break: break-word;
}

/* REMOVE QUALQUER CORTE INVISÍVEL */
.reveal {
  overflow: visible !important;
}

/* CONTAINER NÃO PODE LIMITAR */
.max-w-4xl {
  max-width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}
