/* Fonte padrão do site */
html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

/* TODOS os títulos (H1 até H6) usam Montserrat */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Títulos secundários (opcional: cor mais suave) */
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

/* Parágrafos e textos comuns */
p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}



@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-gradient-animate {
    background-size: 200% 200%;
    /* necessário para movimento suave */
    animation: gradient-move 6s ease infinite;
}

@layer utilities {
    .badge-pulse {
        background-color: #22d3ee;
        /* cyan-400 */
        border: 2px solid rgba(34, 211, 238, 0.5);
        /* outline suave */
        box-shadow: 0 0 10px rgba(34, 211, 238, 0.75);

        animation: pulseGlow 2s infinite ease-in-out;
    }

    @keyframes pulseGlow {
        0% {
            transform: scale(1);
            box-shadow: 0 0 6px rgba(34, 211, 238, 0.6);
        }

        50% {
            transform: scale(1.35);
            box-shadow: 0 0 14px rgba(34, 211, 238, 0.9);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 0 6px rgba(34, 211, 238, 0.6);
        }
    }
}


.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.35) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

.btn-outline-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-outline-shimmer::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    animation: outlineShimmer 2.2s infinite;
}

@keyframes outlineShimmer {
    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(150%);
    }
}

.btn-border-glow-blue-hover {
    position: relative;
    border-radius: 12px;
    overflow: visible;
    z-index: 0;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

/* pseudo-elemento da borda brilhante contínua */
.btn-border-glow-blue-hover::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: 12px;
    background: linear-gradient(270deg,
            #3b82f6, #60a5fa, #38bdf8, #818cf8, #6366f1, #3b82f6);
    background-size: 800% 100%;
    filter: blur(6px);
    z-index: -1;
    pointer-events: none;
    animation: glowBorderBlue 10s linear infinite;
}

/* animação contínua da luz ao longo da borda */
@keyframes glowBorderBlue {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hover: destaque do botão */
.btn-border-glow-blue-hover:hover {
    transform: scale(1.05);
    /* leve zoom */
    box-shadow: 0 0 30px 8px rgba(59, 130, 246, 0.6);
    /* glow mais intenso */
}

.parallax-3d,
.parallax-3d-slow {
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}


.card-animada {
    position: relative;
    padding: 2px;
    border-radius: 1.5rem;
    overflow: hidden;
}

.card-animada::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 0;

    /* 🌟 GRADIENTE MUITO MAIS BRILHANTE */
    background: conic-gradient(from 0deg,
            rgba(56, 189, 248, 0) 0%,
            rgba(56, 189, 248, 1) 12%,
            rgba(125, 211, 252, 1) 25%,
            rgba(56, 189, 248, 1) 45%,
            rgba(56, 189, 248, 0) 70%);

    /* 🌟 AUMENTO DE BRILHO E NEON */
    filter: blur(16px);
    mix-blend-mode: screen;

    animation: brilho 3s linear infinite;
}

.card-animada::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: #0d121c;
    z-index: 1;
}

.card-animada>div {
    position: relative;
    z-index: 2;
}

@keyframes brilho {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}