/*
Arquivo: /wp-content/themes/cancao/style.css

Finalidade:
1. Layout mobile-first
2. Botões grandes (touch)
3. Player central
4. Responsividade total
5. Visual moderno tipo app
*/

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

body{
    background:#000;
    color:#fff;
    font-family:'Montserrat',sans-serif;
}

/* LAYOUT */
.cv-main{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

/* IMAGEM */
.cv-logo{
    width:90vw;
    max-height:60vh;
    object-fit:contain;
}

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

.cv-aguarde{
    font-size:2.2rem;
    color:#FFD700;
    font-weight:900;
}

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

/* PLAYER MOBILE */
.cv-player{
    width:90%;
    max-width:400px;
    margin-top:20px;
    padding:20px;
    background:rgba(255,255,255,0.05);
    border-radius:15px;
}

/* CONTROLES GRANDES */
.cv-controls{
    display:flex;
    justify-content:space-around;
    margin:15px 0;
}

.cv-controls button{
    font-size:28px;
    padding:10px;
    border:none;
    background:none;
    color:#fff;
}

/* PROGRESSO */
.cv-progress{
    height:6px;
    background:#333;
    margin:10px 0;
}

.cv-bar{
    height:100%;
    width:0;
    background:#FFD700;
}

/* TEMPO */
.cv-time{
    display:flex;
    justify-content:space-between;
    font-size:12px;
}

/* DESKTOP */
@media(min-width:768px){

    .cv-logo{
        height:80vh;
        width:auto;
    }

    .cv-player{
        position:fixed;
        bottom:20px;
        right:20px;
        width:260px;
    }

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