html { 
    scroll-behavior: smooth; 
}

/* Animação do botão de WhatsApp */
.pulse-animation {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Estilo da Logo */
.logo-img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}

/* Ajuste para evitar sobreposição no mobile */
@media (max-width: 768px) {
    .hero-text { margin-top: 2rem; }
}