@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Oswald:wght@400;700&display=swap');

:root {
    --primary-color: #3b82f6; /* Azul do Tailwind */
    --bg-dark: #030712; /* Quase preto */
    --text-light: #f1f5f9;
    --text-muted: #94a3b8;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    position: relative; /* Necessário para o posicionamento do spotlight */
}

/* Efeito de Spotlight */
.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px; /* Tamanho do círculo de luz */
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0) 70%);
    pointer-events: none; /* Permite clicar através do elemento */
    transform: translate(-50%, -50%); /* Centraliza o efeito no cursor */
    transition: transform 0.1s ease-out, width 0.3s ease-out, height 0.3s ease-out;
    z-index: 9999;
}


.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/inicio_apresentacao.png'); /* Sugestão: Use uma imagem de fundo mais genérica aqui */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito paralaxe mais simples e performático */
    opacity: 0.1;
    z-index: -1;
}

/* Transições de Seção (Simplificado) */
.section-container {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.section-container.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

/* Animação de entrada para elementos ao rolar */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Estilo para link de navegação ativo */
.nav-item.active {
    background-color: rgba(59, 130, 246, 0.2);
    box-shadow: inset 3px 0 0 0 var(--primary-color);
}

.nav-item.active span {
    color: var(--primary-color);
    font-weight: bold;
}

/* Efeito Máquina de Escrever */
#typewriter-title::after, #typewriter-subtitle::after {
    content: '|';
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}