/*
Theme Name: Cancao
Version: 1.0
*/

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

/* BASE */
html, body {
    width: 100%;
    height: 100%;
    background: #000 !important;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

/* REMOVE QUALQUER LIXO VISUAL */
header, footer, nav,
#wpadminbar,
[class*="whatsapp"],
[id*="whatsapp"],
a[href*="whatsapp"],
[class*="cookie"],
[id*="cookie"],
[class*="consent"] {
    display: none !important;
}

/* CENTRALIZAÇÃO ABSOLUTA */
.cv-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTEÚDO */
.cv-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* IMAGEM CENTRAL GRANDE */
.cv-logo {
    display: block;
    height: 90vh;
    max-width: 95vw;
    object-fit: contain;
}

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

/* AGUARDE (COR 1) */
.cv-aguarde {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    color: #FFD700; /* dourado */
    letter-spacing: 3px;
}

/* RESTO (COR 2) */
.cv-frase {
    display: block;
    font-size: 2rem;
    color: #ffffff;
    margin-top: 5px;
}

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

    .cv-logo {
        height: 75vh;
    }

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

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