body {
    background-color: black;
    font-family: var(--font-dm-sans);
}

 /* Menu lateral Posição */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 8px;
    width: 280px;
}

 /* Menu lateral Intens internos */
.sidebar__navigation {
    background-color: #121212;
    border-radius: 8px;
    padding: 5px 0 0 7px;
}

/* Menu Lateral posição da LOGO */
.sidebar__navigation .logo {
    background: #121212;
    display: flex;
    border-radius: 8px;
    padding: 16px 0 0 16px;
}

/* Menu Lateral IMG da LOGO */
.sidebar__navigation .logo img {
    width: 80px;
}

/* Menu Lateral Caixa da LISTA */
.sidebar nav ul {
    margin-top: 5px;
    padding: 0 20px 10px 15px;
}

.sidebar nav ul li {
    padding: 15px 0;
}

/* Menu Lateral ELEMENTO da LIST */
.sidebar nav ul li a{
    color: #b3b3b3;
    text-decoration: none;
    font-weight: 600; /* Deixar a letra mais encorpada */
    font-size: 15px;
}

.sidebar nav ul li a .fa {
    margin-right: 20px;
    font-size: 22px;
}


/* MENU LATERAL BIBLIOTECA */
.library {
    background-color: #121212;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 4px 8px;
    color: #b3b3b3;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}

/* MENU LATERAL BIBLIOTECA itens INTERNOS */
.library .library__content {
    display: flex;
    justify-content: space-between;
}

.library .library__button {
    display: flex;
    margin-right: 10px;
    color: #b3b3b3;
    background-color: transparent;
    border: 0px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    padding: 20px 10px;
}

.library .library__button .fa {
    font-size: 22px;
    margin: 0 8px 0 12px;
    font-weight: 300px;
    padding-right: 8px;
}

.library .library__content .fa-plus{
    margin: 24px 10px;
}

/* MENU LATERAL BIBLIOTECA bloco interno */
.section-playlist {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    background-color: #242424;
    color: #b3b3b3;
    font-weight: 600;
    font-size: 14px;
    margin: 8px 0px;
    padding: 16px 20px;
    border-radius: 10px;
}

/* ELEMENTOS INTERNOS DO BLOCO INTERNO */
.section-playlist .section-playlist__content {
    display: flex;
    flex-direction: column;
}

/* ELEMENTOS INTERNOS DO BLOCO INTERNO texto geral(titulos e subtitulo) */
.section-playlist__content .text{
    padding-bottom: 14px;
    color: #fff;
}

/* ELEMENTOS INTERNOS DO BLOCO INTERNO somente titulo*/
.section-playlist__content .title {
    font-weight: 700;
}

/* ELEMENTOS INTERNOS DO BLOCO INTERNO somente subtitulo*/
.section-playlist__content .subtitle {
    font-weight: 500;
    font-size: 13px;
}

/* ELEMENTOS INTERNOS DO BLOCO INTERNO botao */
.section-playlist__content .section-playlist__button {
    display: flex;
    justify-content: center;
    background-color: #fff;
    color: #000;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: none;
    padding: 10px;
    margin-top: 12px;
    border: 0;
    width: 113px;
}

/* BLOCO COOKIES */
.sidebar .cookies {
    margin: 25px 20px;
}

/* ELEMENTOS DO COOKIES */
.sidebar .cookies a {
    color: #b3b3b3;
    font-weight: 500;
    font-size: 10px;
    text-decoration: none;
}

.sidebar .cookies a:hover {
    text-decoration: underline;
}

/* BOTAO DE LINGUAGENS */
.languages .languages__button {
    align-items: center;
    background-color: transparent;
    border: 1px solid #878787;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    width: 170px;
    margin: 10px 0 20px 10px;
    padding: 8px;
    border-radius: 20px;
}

/* MENU PREMIUM */
.disclaimer-premium {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #ae2896, #509bf5);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
}

.disclaimer-premium .text {
    flex-shrink: 0;
}

.disclaimer-premium .disclaimer-premium__title {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 10px;
}

.disclaimer-premium .disclaimer-premium__subtitle {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.disclaimer-premium button {
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    padding: 14px 30px;
    border: 0px;
    border-radius: 40px;
    cursor: pointer;
    flex-shrink: 0;
}