/*
Theme Name: Cancao
Theme URI: https://cancaoverdadeira.com.br
Author: Você
Description: Tema mínimo - Página em breve
Version: 1.0
*/

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

/* Tela preta total */
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Centralização total */
.cancao-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Conteúdo */
.cancao-content {
    text-align: center;
}

/* Imagem */
.cancao-logo {
    width: 260px;
    margin-bottom: 25px;
}

/* Texto */
.cancao-title {
    font-size: 2.8rem;
    color: #FFD700;
    font-weight: bold;
}

.cancao-text {
    font-size: 1.4rem;
    color: #ccc;
    margin-top: 10px;
}

/* Responsivo */
@media (max-width: 600px) {
    .cancao-logo { width: 180px; }
    .cancao-title { font-size: 2rem; }
    .cancao-text { font-size: 1.2rem; }
}