/*
Theme Name: Cancao
Version: 3.0
*/

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

html, body {
    width: 100%;
    height: 100%;
    background: #000;
    font-family: 'Montserrat', Arial, sans-serif;
    overflow: hidden;
}

/* Remove elementos do WP */
header, footer, nav, #wpadminbar { display: none !important; }

/* Layout */
.cv-main {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Logo (90% da tela) + animação */
.cv-logo {
    display: block;
    height: 85vh;
    max-width: 95vw;
    object-fit: contain;

    opacity: 0;
    transform: scale(1.08);
    animation: cvLogoIn 2s ease-out forwards;
}

@keyframes cvLogoIn {
    to { opacity: 1; transform: scale(1); }
}

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

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

    opacity: 0;
    transform: translateY(20px);
    animation: cvTextUp 1s ease-out forwards;
    animation-delay: 1.2s;

    text-shadow: 0 0 18px rgba(255,215,0,0.5);
}

.cv-frase {
    font-size: 1.8rem;
    color: #ffffff;

    opacity: 0;
    transform: translateY(20px);
    animation: cvTextUp 1s ease-out forwards;
    animation-delay: 1.8s;
}

@keyframes cvTextUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Player */
.cv-player {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 260px;
    padding: 14px;

    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    color: #fff;
    font-size: 12px;
}

.cv-track {
    text-align: center;
    color: #FFD700;
    margin-bottom: 8px;
    font-size: 13px;
}

/* Controles */
.cv-controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cv-controls button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* Volume */
#cvVolume { width: 100%; }

/* Responsivo */
@media (max-width: 768px) {
    .cv-logo { height: 70vh; }
    .cv-aguarde { font-size: 2.4rem; }
    .cv-frase { font-size: 1.2rem; }
}