body {
    background: radial-gradient(circle, #1e1e2f, #0e0e1a);
    color: #fff;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.flag {
    cursor: pointer;
    transition: transform 0.2s;
}

    .flag:hover {
        transform: scale(1.1);
    }

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #fff, 0 0 10px #6b21a8, 0 0 15px #9333ea;
    }

    50% {
        text-shadow: 0 0 20px #c084fc, 0 0 30px #6b21a8;
    }

    100% {
        text-shadow: 0 0 5px #fff, 0 0 10px #6b21a8;
    }
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-wave {
    animation: waveMove 10s linear infinite;
    transform: translateX(0);
}

@keyframes pulseWave1 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@keyframes pulseWave2 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

@keyframes pulseWave3 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }
}

.animate-pulse-wave1 {
    animation: pulseWave1 4s ease-in-out infinite;
}

.animate-pulse-wave2 {
    animation: pulseWave2 6s ease-in-out infinite;
}

.animate-pulse-wave3 {
    animation: pulseWave3 8s ease-in-out infinite;
}

.ribbon {
    position: absolute;
    top: 1rem;
    right:0.1rem;
    transform: rotate(15deg);
}

.hp-wrap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
/* ——— MENU ESTILO DO SITE ——— */
.nav-shell {
    box-shadow: 0 8px 24px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.04);
    backdrop-filter: blur(10px);
}

.nav-link {
    position: relative;
    padding: .5rem .9rem;
    border-radius: 9999px;
    color: #fff !important;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease, border .2s ease;
    border: 1px solid transparent;
}

    .nav-link:hover {
        color: #fff;
        background: rgba(255,255,255,0.06);
        border-color: rgba(255,255,255,0.12);
        box-shadow: 0 0 0 2px rgba(147,51,234,.18), 0 6px 20px rgba(147,51,234,.28);
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 6px;
        height: 2px;
        border-radius: 2px;
        background: linear-gradient(90deg,#9333ea,#ec4899);
        opacity: .65;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .25s ease;
    }

    .nav-link:hover::after {
        transform: scaleX(1);
    }

    /* ativo via scrollspy */
    .nav-link.is-active {
        color: #ffe89a;
        background: rgba(147,51,234,.16);
        border-color: rgba(236,72,153,.3);
        box-shadow: 0 0 20px rgba(147,51,234,.25);
    }

        .nav-link.is-active::after {
            transform: scaleX(1);
        }

/* botão CTA combina com o resto */
.nav-cta {
    box-shadow: 0 10px 28px rgba(236,72,153,.28);
}

/* botão hambúrguer “vidro” */
.btn-ghost {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 9999px;
    padding: .5rem .6rem;
    transition: transform .2s ease, background .2s, border .2s;
}

    .btn-ghost:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,0.08);
    }

/* overlay mobile */
.mobileMenu {
    background: radial-gradient(1200px 600px at 10% 10%, rgba(147,51,234,.20), transparent 60%), radial-gradient(1000px 600px at 90% 90%, rgba(236,72,153,.18), transparent 60%), rgba(0,0,0,.88);
    backdrop-filter: blur(14px);
}

.mobile-link {
    @apply nav-link text-lg;
}

/* linha decorativa no header */
.header-underline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    opacity: .35;
    background: linear-gradient(90deg, transparent, #9333ea, #ec4899, transparent);
}

section[id] {
    scroll-margin-top: 100px;
}

@media (min-width: 768px) {
    section[id] {
        scroll-margin-top: 170px;
    }
}


/*Animação*/
@layer utilities {
    @keyframes breathe {
        0%, 100% {
            transform: translate(-50%, -50%) rotate(45deg) scale(1);
        }

        50% {
            transform: translate(-50%, -50%) rotate(45deg) scale(1.08);
        }
    }

    .animate-breathe {
        animation: breathe 3s ease-in-out infinite;
    }

    @keyframes spin-slow {
        to {
            transform: rotate(360deg);
        }
    }

    .animate-spin-slow {
        animation: spin-slow 12s linear infinite;
    }

    @keyframes aurora {
        0%, 100% {
            transform: translateY(0);
            filter: blur(24px);
        }

        50% {
            transform: translateY(-6px);
            filter: blur(30px);
        }
    }

    .animate-aurora {
        animation: aurora 6s ease-in-out infinite;
    }

    
    @keyframes orbit {
        from {
            transform: translate(-50%, -50%) rotate(0deg) translateY(-88px);
        }

        to {
            transform: translate(-50%, -50%) rotate(360deg) translateY(-88px);
        }
    }

    .animate-orbit {
        animation: orbit 8s linear infinite;
    }

    @keyframes orbit2 {
        from {
            transform: translate(-50%, -50%) rotate(180deg) translateY(-88px);
        }

        to {
            transform: translate(-50%, -50%) rotate(540deg) translateY(-88px);
        }
    }

    .animate-orbit2 {
        animation: orbit2 10s linear infinite;
    }
}


.accordion .acc-item {
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.acc-trigger {
    width: 100%;
    text-align: left;
    padding: 12px 0;
    font-weight: 600;
    color: #e9d5ff;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

    .acc-trigger::after {
        content: "?";
        transition: transform .18s ease;
        opacity: .8;
    }

    .acc-trigger[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

.acc-panel {
    padding: 0 0 14px 0;
}

.w-240{
    width:240px;
}