﻿body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    margin: 0;
}

.navbar-menu {
    transition: all 0.3s ease;
}

.navbar-mobile {
    transition: all 0.3s ease;
}

    .navbar-mobile.active {
        display: flex;
    }

.whatsapp-btn {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .navbar-mobile {
        display: none;
    }

        .navbar-mobile.active {
            display: flex;
        }

    .whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem;
    }

        .whatsapp-btn img {
            width: 1.5rem;
            height: 1.5rem;
        }
}

@media (min-width: 769px) {
    .navbar-mobile {
        display: none !important;
    }
}
