/* Estilos personalizados adicionais.
   O layout principal usa Tailwind via CDN. */

/* Scroll suave com offset para manter header visível */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Transições suaves e minimalistas */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animações suaves para elementos */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Botão WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

