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

body {
    background-color: #000;
    font-family: var(--font-dm-sans);
    overflow: hidden;
}

ul, ol {
    list-style: none;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 12px;
    width: 300px;
}

.sidebar__navigation {
    background-color: var(--cor-1);
    border-radius: 8px;
    padding: 16px 0 0 16px;
}

.sidebar__navigation .logo {
    background: var(--cor-1);
    display: flex;
    border-radius: 8px;
    padding: 0 0 0 5px;
}

.sidebar__navigation .logo img {
    width: 80px;
}

.sidebar nav ul {
    margin-top: 15px;
    padding: 0 20px 10px 20px;
}

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

.sidebar nav ul li a {
    color: var(--cor-0);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.sidebar nav ul li a:hover {
color: #fff;
}

.sidebar nav ul li a span {
    margin-right: 12px;
    font-size: 18px;
}

.library {
    background-color: var(--cor-1);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 4px 8px;
    color: var(--cor-0);
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
}

.library .library__content {
    display: flex;
    justify-content: space-between;
}

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

.library .library__button .fa-book {
    margin-left: 20px;
}

.library .library__button .fa {
    font-size: 20px;
    margin-right: 10px;
    font-weight: 300;
    padding-right: 8px;
}

.library .library__content .fa-plus {
    margin: 20px 18px;
    cursor: pointer;
    transition: all 0.4s;
}

.library .library__content .fa-plus:hover {
    background-color: #fff;
    color: #000;
    padding: 8px;
    border-radius: 50%;
    margin-top: 13px;
}

.section-playlist-e-podcasts {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    background-color: var(--cor-2);
    color: var(--cor-0);
    font-weight: 600;
    font-size: 14px;
    margin: 8px 0;
    padding: 16px 20px;
    border-radius: 6px;
}

.section-playlist-e-podcasts .section__content {
    display: flex;
    flex-direction: column;
}

.section__content .text {
    padding-bottom: 14px;
    color: #fff;
}

.section__content .title {
   font-weight: 700;
   font-size: 16px;
}

.section__content .subtitle {
    font-weight: 500;
    font-size: 14px;
}

.section__content .section__button {
    display: flex;
    justify-content: center;
    background-color: #fff;
    color: #000;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px;
    margin-top: 12px;
    border: 0;
    cursor: pointer;
    transition: all 0.4s;
}

.section__content .section-playlist__button {
    width: 113px;
}

.section__content .section-podcast__button {
    width: 150px;
}

.section__content .section-playlist__button:hover, .section-podcast__button:hover {
    scale: 1.08;
}

.sidebar .cookies {
    margin: 25px 20px;
}

.sidebar .cookies a {
    color: var(--cor-0);
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
}

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

.lenguages {
    display: flex;
    justify-content: center;
}

.lenguages .lenguages__button {
    background-color: transparent;
    border: 1px solid var(--cor-0);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    width: 170px;
    margin: 8px;
    padding: 8px;
    border-radius: 20px;
}

.lenguages .lenguages__button span {
    cursor: pointer;
}

.secoes-com-scroll {
    max-height: 250px;
    overflow-y: hidden;
    transition: all 0.2s;
}

.secoes-com-scroll:hover {
    max-height: 250px;
    overflow-y: auto;
}

.secoes-com-scroll::-webkit-scrollbar {
    width: 0px;
}

.contatos {
    width: 100vw;
    height: 70px;
    bottom: 0;
    position: fixed;
    background-color: #0093E9;
    background-image: linear-gradient(225deg, #0093E9 0%, #f158f0 100%);
}

.footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 23px;
    height: 100%;
}

.footer__textos .footer__title {
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.footer__textos .footer__text {
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

.footer__buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 350px;
}

.footer__buttons a {
    font-size: 40px;
    text-decoration: none;
    font-style: normal;
    color: #fff;
    margin-top: 10px;
}

.footer__buttons .portfolio {
    padding: 12px 50px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 5px;
    background-color: #fff;
    color: #000;
    border-radius: 40px;
}
