@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #020205;
    color: white;
    overflow-x: hidden;
}

/* Aurora Shader Canvas */
#aurora-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Linhas de Background */
.bg-line {
    position: fixed;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

/* Ponto de Luz */
.light-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #00f2ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2ff, 0 0 20px #00f2ff;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.1s linear, opacity 0.3s ease;
}

.glow-active {
    box-shadow: 0 0 30px 10px rgba(0, 242, 255, 0.4);
    background-color: #00f2ff !important;
    color: #000 !important;
    transform: scale(1.1);
}

.video-container video {
    filter: grayscale(0.5) brightness(0.7);
    transition: all 0.5s ease;
}

.video-container:hover video {
    filter: grayscale(0) brightness(1);
}

/* Esconder secções para navegação */
.page-content {
    display: none;
}

.active-page {
    display: block;
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #020205;
}

::-webkit-scrollbar-thumb {
    background: #00f2ff;
    border-radius: 10px;
}

/* --- REMOVED global header styles to avoid conflict with Tailwind --- */
/* Use .logo-area, .logo-icon, .logo-text only on trabalho.html which doesn't use Tailwind */

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    background-color: #06b6d4;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: black;
}

.logo-text {
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    font-style: italic;
}

/* --- Media Queries Mobile --- */
@media (max-width: 768px) {
    .bg-line {
        display: none;
    }

    .bg-line:nth-child(3n) {
        display: block;
    }
}

/* --- Media Queries TV --- */
@media (min-width: 2000px) {
    body {
        font-size: 1.5rem;
    }

    .video-container {
        border-width: 2px;
    }

    .max-w-6xl {
        max-width: 80% !important;
    }
}