.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

html {
    scroll-behavior: auto;
}

section[id] {
    scroll-margin-top: 96px;
}

.material-symbols-filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.nav-blur {
    backdrop-filter: blur(12px);
}

.kinetic-shadow {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.kinetic-shadow-hover:hover {
    box-shadow: 0px 10px 30px rgba(0, 46, 142, 0.1);
    transform: translateY(-4px);
}

@keyframes radar-pulse {
    0%   { transform: translate(-50%, -50%) scale(0.4); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.radar-ring {
    position: absolute;
    left: 50%;
    top: 45%;
    border-radius: 9999px;
    border: 2px solid rgba(0, 65, 194, 0.18);
    animation: radar-pulse 3.2s ease-out infinite;
    pointer-events: none;
}

.radar-ring:nth-child(1) { width: 260px; height: 260px; animation-delay: 0s; }
.radar-ring:nth-child(2) { width: 380px; height: 380px; animation-delay: 0.8s; }
.radar-ring:nth-child(3) { width: 500px; height: 500px; animation-delay: 1.6s; }
.radar-ring:nth-child(4) { width: 620px; height: 620px; animation-delay: 2.4s; }

.brand-logo {
    display: block;
    height: auto;
    width: 220px;
    max-width: 100%;
}

.brand-logo-header {
    width: 190px;
}

.brand-logo-footer {
    width: 210px;
}

@keyframes btn-radar {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.15); opacity: 0; }
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(88, 204, 2, 0.7);
    animation: btn-radar 1.6s ease-out infinite;
    pointer-events: none;
}

.btn-glow-primary {
    position: relative;
}

.btn-glow-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(0, 65, 194, 0.7);
    animation: btn-radar 1.6s ease-out infinite;
    pointer-events: none;
}

.step-number-glow {
    overflow: visible;
}

.step-number-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    border: 2px solid rgba(88, 204, 2, 0.65);
    animation: btn-radar 1.4s ease-out infinite;
    pointer-events: none;
}

@keyframes section-focus {
    0% { transform: translateY(12px); opacity: 0.88; }
    100% { transform: translateY(0); opacity: 1; }
}

.section-scroll-focus {
    animation: section-focus 480ms ease-out both;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .section-scroll-focus {
        animation: none;
    }
}


.floating-whatsapp {
            position: fixed;
            left: 16px;
            bottom: 20px;
            z-index: 60;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 9999px;
            background: #ffffff;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
            opacity: 0;
            pointer-events: none;
            transform: translateX(-16px) scale(0.9);
            transition: opacity 220ms ease, transform 220ms ease;
        }

        .floating-whatsapp.is-visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateX(0) scale(1);
            animation: whatsapp-zoom-pulse 1.6s ease-in-out infinite;
        }

        .floating-whatsapp img {
            width: 44px;
            height: 44px;
            object-fit: contain;
        }

        @keyframes whatsapp-zoom-pulse {
            0% { transform: translateX(0) scale(1); }
            50% { transform: translateX(0) scale(1.12); }
            100% { transform: translateX(0) scale(1); }
        }

        @media (max-width: 640px) {
            .floating-whatsapp {
                left: 12px;
                bottom: 16px;
                width: 54px;
                height: 54px;
            }

            .floating-whatsapp img {
                width: 40px;
                height: 40px;
            }
        }

        /* FAQ question icons */
        #faq [data-faq-toggle] > span.font-bold {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        #faq [data-faq-toggle] > span.font-bold::before {
            content: 'help';
            font-family: 'Material Symbols Outlined';
            font-size: 20px;
            line-height: 1;
            color: #2453d2;
            font-weight: 400;
            font-style: normal;
            letter-spacing: normal;
            text-transform: none;
            white-space: nowrap;
            direction: ltr;
            -webkit-font-feature-settings: 'liga';
            -webkit-font-smoothing: antialiased;
        }

        /* Carrossel hero - crossfade */
        .hero-carousel-slide {
            opacity: 0;
            transition: opacity 650ms ease;
            pointer-events: none;
        }

        .hero-carousel-slide.is-active {
            opacity: 1;
            pointer-events: auto;
        }