/*
Theme Name: Cancao Verdadeira
Theme URI: https://cancaoverdadeira.com.br
Description: Tema filho Astra - Página em breve
Author: Você
Template: astra
Version: 1.0
*/

body {
    background-color: #000 !important;
    color: #fff;
}

/* Container central */
.cv-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Conteúdo */
.cv-content {
    max-width: 800px;
    padding: 20px;
}

/* Imagem */
.cv-logo {
    width: 240px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

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

.cv-subtitle {
    font-size: 2rem;
    margin-top: 10px;
}

.cv-text {
    font-size: 1.4rem;
    color: #ccc;
}

/* Animação */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsivo */
@media (max-width: 768px) {
    .cv-title { font-size: 2.2rem; }
    .cv-subtitle { font-size: 1.5rem; }
    .cv-text { font-size: 1.2rem; }
    .cv-logo { width: 180px; }
}