.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
}

.whatsapp-float .pulse-ring {
    animation: pulse-whatsapp 2.2s infinite;
}

html {
    scroll-behavior: smooth;
}

.font-handsome {
    font-family: 'Allura', cursive;
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.mobile-menu.active {
    max-height: 800px;
}

.header-active {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.50);
}

.hamburger svg {
    transition: transform 0.4s ease;
    transform-origin: center;
}

.hamburger.active svg {
    transform: rotate(90deg);
}