/* --- 1. FONTES --- */
@font-face {
    font-family: 'PivotGrotesk'; 
    src: url('fonts/NNPivotGroteskTRIAL-Regular.otf'); 
}

@font-face {
    font-family: 'NikkeiJournal'; 
    src: url('fonts/PPNikkeiJournal-Regular.otf'); 
}

/* --- 2. GERAL --- */
body {
    margin: 0;
    padding: 0;
    background-color: #050505;
    overflow-x: hidden;
    color: white;
    
    /* Mantendo a suavização para nitidez máxima */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* --- (REMOVIDO SEÇÃO 3: NOISE) --- */

/* --- 4. TEXTOS --- */
#nuviz-text {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 100; 
    pointer-events: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    opacity: 0; 
    transition: opacity 0.1s ease; 
}

#nuviz-text h1 {
    font-family: 'PivotGrotesk', sans-serif;
    
    /* REDUZIDO: De 8vw para 5vw para mais elegância */
    font-size: 5vw; 
    
    margin: 0;
    line-height: 1.0; /* Aumentei levemente para respirar */
    font-weight: normal;
    letter-spacing: -0.03em; /* Menos apertado */
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.15); /* Sombra mais sutil */
}

.subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    
    /* Ajuste fino da distância entre título e subtítulo */
    margin-top: 5px; 
    
    position: relative; 
    z-index: 101;
}

#nuviz-text p {
    font-family: 'NikkeiJournal', serif;
    font-size: 1.0rem; /* Levemente menor para contraste com o título */
    color: #8cc0c7; 
    margin: 0;
    white-space: nowrap; 
    letter-spacing: 0.05em; /* Mais espaçado para ar "premium" */
}


/* --- 5. AVISO SCROLL --- */
#scroll-hint {
    position: fixed; bottom: 40px; width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    z-index: 100; 
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s infinite ease-in-out;
}

.arrow { font-size: 14px; margin-top: 5px; }

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(5px); }
}

/* --- 6. MOBILE & RESPONSIVIDADE --- */

/* Celular em pé (Portrait) */
@media (max-width: 768px) {
    #nuviz-text h1 { 
        /* REDUZIDO: De 16vw para 11vw */
        font-size: 11vw; 
    }
    .subtitle-container { 
        margin-top: 8px; 
        gap: 10px; 
    }
    #nuviz-text p { font-size: 0.85rem; }
    .line { width: 15px; }
}

/* Celular deitado (Landscape) */
@media (max-height: 500px) and (orientation: landscape) {
    #nuviz-text h1 { 
        /* REDUZIDO: De 12vh para 9vh */
        font-size: 9vh; 
    }
    .subtitle-container {
        margin-top: 5px;
    }
    #nuviz-text p { font-size: 0.8rem; }
    #scroll-hint { bottom: 15px; } 
}