/*
Arquivo: wp-content/themes/cancao-verdadeira/assets/css/main.css

Resumo:
CSS completo consolidado.
Inclui layout, sidebar, cards, player, home e ajustes de logo.
Nenhuma parte fragmentada.
*/

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

body {
    background: #0d0d0d;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* LAYOUT */
.layout {
    display: flex;
}

/* SIDEBAR */
.sidebar {
    width: 220px;
    background: #000;
    position: fixed;
    height: 100%;
    padding: 20px;
}

.sidebar-logo {
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-logo img {
    max-width: 140px;
}

/* MAIN */
.main-content {
    margin-left: 220px;
    padding: 20px;
}

/* HERO */
.hero {
    position: relative;
    height: 280px;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    filter: blur(20px) brightness(0.4);
}

.hero-content {
    position: relative;
    padding: 30px;
}

/* GRID */
.grid-musicas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

/* CARD */
.card-musica {
    background: #181818;
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.card-musica:hover {
    background: #282828;
}

/* PLAYER */
.player-fixed {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #181818;
    padding: 10px;
}

/* CATEGORIAS */
.categorias {
    display: flex;
    gap: 15px;
}

.cat {
    padding: 12px 20px;
    border-radius: 8px;
}

.sertanejo { background: goldenrod; }
.gospel { background: green; }
.romantico { background: crimson; }