@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Compensa a altura do menu fixo */
}

body { font-family: 'Inter', sans-serif; }

/* Efeito de bolhas de fundo */
.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    animation: move 10s infinite alternate;
}
@keyframes move {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(20px, -20px) scale(1.1); }
}

/* Cursor piscando */
.cursor-blink {
    border-right: 3px solid #6366f1;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { border-color: transparent; } }

/* Borda brilhante na foto */
.profile-glow {
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.4);
    transition: all 0.5s ease;
}
.profile-glow:hover {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.7);
    transform: scale(1.02);
}