* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container { width: 90%; }

h1 {
    font-size: 15vw;
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.em-breve {
    font-size: 3vw;
    font-weight: 700;
    letter-spacing: 5px;
    margin-top: 10px;
    color: #000000;
    cursor: pointer;
    text-decoration: none; 
    display: block; 
}

.em-breve::selection {
    color: #000000;
    background-color: #ffffff;
}

/* --- CORREÇÃO DEFINITIVA DO PONTO --- */
.corner-link, .corner-link:link, .corner-link:visited, .corner-link:hover, .corner-link:active {
    position: fixed;
    bottom: 5px;
    right: 15px;
    font-size: 50px;
    font-weight: bold;
    color: #000000 !important; /* Cor preta (invisível) */
    text-decoration: none !important; /* Remove o sublinhado de todos os estados */
    padding: 10px;
    cursor: pointer;
    z-index: 999;
}

.corner-link::selection {
    color: #000000;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    h1 { font-size: 20vw; }
    
    /* Adicione este bloco no final do seu arquivo css/index.css */

/* Estilo para a tela de clique inicial */
#click-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1000; /* Garante que fique por cima de tudo */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out; /* Efeito de fade ao sumir */
}

/* Texto de instrução na tela de clique */
.prompt-text {
    color: #555; /* Um cinza escuro, sutil */
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
    .em-breve { font-size: 5vw; }
}