/* Remover botão v0 indesejado */
[id*="v0-built-with-button"] {
  display: none !important;
}

[style*="position: fixed"][style*="bottom: 24px"][style*="right: 24px"] {
  display: none !important;
}

div[style*="position: fixed; bottom: 24px; right: 24px"] {
  display: none !important;
}

/* Animações personalizadas */
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

/* Responsividade */
@media (max-width: 640px) {
  .max-w-md {
    max-width: 100%;
    margin: 0;
    padding: 1rem;
  }
}
