.is-invalid{
    color: #f00;
}

html.sticky-header-active #header .header-logo {
    margin: 8px 0;
}

html.sticky-header-active #header .header-logo img {
    max-height: 40px;
    height: auto;
    width: auto;
}

html.sticky-header-active #header .header-nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    min-height: 80px;
}

.wa-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1100;
    animation: wa-float-bounce 2.8s ease-in-out infinite;
}

.wa-float .whatsapp-float {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float .whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
}

@keyframes wa-float-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}


#header .header-nav-main nav > ul li a{
    width: 100%;
    display: block;
    padding: 11px;
}