html {
    scroll-behavior: smooth;
}

/* --- NAVBAR STYLES --- */
/* Efeito de linha dourada crescendo embaixo do link */
.nav-link {
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #D4AF37;
    /* Brand Gold */
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* HERO SECTION */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-wrapper {
    background: radial-gradient(circle at center, #0a1f35 0%, #000000 80%);
    position: relative;
    overflow: hidden;
}

/* Efeito 3D */
.tilt-box {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-element {
    transform: translateZ(20px);
}

/* Botão Retro */
.btn-retro {
    background: transparent;
    border: 1px solid rgba(77, 238, 234, 0.5);
    color: #4deeea;
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(77, 238, 234, 0.2);
    display: inline-block;
    text-align: center;
}

.btn-retro:hover {
    background: rgba(77, 238, 234, 0.1);
    box-shadow: 0 0 20px rgba(77, 238, 234, 0.6);
    text-shadow: 0 0 8px rgba(77, 238, 234, 0.8);
    transform: scale(1.05);
}

/* Scrollbar escondida */
.hide-scroll::-webkit-scrollbar {
    display: none;
}

.hide-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Imagens Vocação */
.vocacao-img {
    aspect-ratio: 9/12;
    object-fit: cover;
}