@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
    
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #000;
            color: #fff;

        }* 

{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
        
.container {
    display: flex;
    height: 100vh;
    
    
        
}

.sidebar {
    width: 300px;
    background-color: #121212;
    padding: 24px;
    padding-bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.nav-logo i {
    font-size: 24px;
}

.nav-library {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-library i, .nav-library p {
    color: #b7b3b6;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-playlist, .nav-podcast {
    background-color: #242424;
    padding: 16px;
    border-radius: 8px;
}

.nav-playlist button, .nav-podcast button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 6px 10px;
    margin-top: 16px;
    cursor: pointer;
    font-size: 12px;
    border-radius: 20px;
}

.nav-playlist p, .nav-podcast p {
    font-size: 12px;
}
.nav-footer {
    margin-top: auto;
}

.nav-footer a {
    color: #a7a7a7;
    text-decoration: none;
    font-size: 12px;
    margin-right: 12px;
    margin-bottom: 8px;

}

.nav-lang-button {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 12px;
    margin-top: 16px;
    cursor: pointer;
    border-radius: 20px;

}

main {
    padding: 24px;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column; /* Adicionado */
}


.search-bar {
    display: flex;
    align-items: center;
    background-color: #242424;
    padding: 8px 16px;
    border-radius: 20px;
    width: 300px;
}

.search-bar input {
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 100%;
    margin-left: 10px;
    outline: none;
}

.artists-grid, .albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.artist-card, .album-card{
    background-color: #181818;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.artist-card:hover, .album-card:hover {
    background-color: #282828;
}
.artist-card img, .album-card img {
    width: 100%;
    max-height: 70%;
    border-radius: 50%;
    margin-bottom: 16px;
}
.artist-card h3, .album-card h3 {
    font-size: 12px;
    margin-bottom: 8px;
}
.artist-card p, .album-card p {
    font-size: 10px;
    color: #b7b7b7;
}
.content {
    margin-top: 40px;
}

.content h2 {
    margin-bottom: 10px;
}
.banner {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(90deg, #af2896, #509BF5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
}
.banner h2 {
    font-size: 14px;
    color: #fff;
    margin-right: 10px;
}
.banner p {
    font-size: 12px;
    color: #fff;
    margin-right: 10px;
}
.banner button {
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}
.banner button:hover {
    background-color: #fff;
}
.profile-topo {
    position: fixed;
    top:   0;
    right: 0;
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    
}
.profile-topo h1 {
    font-size: 14px;
    color: #fff;
    margin-right: 10px;
}
.profile-topo p {
    font-size: 12px;
    color: #fff;
    margin-right: 10px;
}
.profile-topo button {
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    left: 0;
}
.profile-topo button:hover {
    background-color: #fff;

}

.menu-icon {
    width: 24px;
    height: auto;
    max-width: 100%;
    display: none;
}
