/*
Theme Name: Cancao
Version: 1.0
*/

/* RESET TOTAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GARANTE FUNDO PRETO GLOBAL */
html, body {
    width: 100%;
    height: 100%;
    background: #000 !important;
    font-family: 'Montserrat', Arial, sans-serif;
    overflow: hidden; /* evita scroll */
}

/* REMOVE QUALQUER ELEMENTO ESTRANHO DO WP */
header, footer, #wpadminbar, .ast-header, .ast-footer {
    display: none !important;
}

/* PÁGINA */
.cv-page {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTAINER CENTRAL */
.cv-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* IMAGEM — 90% DA TELA */
.cv-logo {
    height: 90vh;
    max-width: 95vw;
    object-fit: contain;
}

/* TEXTO */
.cv-text {
    text-align: center;
    margin-top: 20px;
}

/* AGUARDE (DESTAQUE) */
.cv-aguarde {
    font-size: 4rem;
    font-weight: 800;
    color: #FFD700;
    letter-spacing: 2px;
}

/* FRASE */
.cv-frase {
    font-size: 1.8rem;
    color: #ffffff;
    margin-top: 5px;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .cv-logo {
        height: 75vh;
    }

    .cv-aguarde {
        font-size: 2.5rem;
    }

    .cv-frase {
        font-size: 1.2rem;
    }
}