   /* Arquivo: style.css */

/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.5;
    background-color: #ffffff;
    color: #1e293b;
}

/* Layout */
.layout {
    min-height: 100vh;
    display: flex;
    width: 100%;
}

.sidebar {
    width: 256px;
    background-color: #fafafa;
    border-right: 1px solid #e2e8f0;
    padding: 1rem;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.main-content {
    flex: 1;
    margin-left: 256px;
}

.header {
    height: 64px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    background-color: #ffffff;
}

/* Sidebar styles */
.sidebar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 2rem;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    color: #64748b;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background-color: #f1f5f9;
    color: #1e293b;
}

.sidebar-nav .icon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
}

/* Hero section */
.hero {
    padding: 3rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.hero-container {
    max-width: 1152px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero-title .brand {
    color: #3b82f6;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 512px;
    margin: 0 auto;
}

.search-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 768px;
    margin: 0 auto;
}

.search-container {
    position: relative;
    flex: 1;
}

.search-input {
    width: 100%;
    height: 48px;
    padding: 0 1rem 0 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    background-color: #ffffff;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #64748b;
}

.button-group {
    display: flex;
    gap: 1rem;
}

.btn {
    height: 48px;
    padding: 0 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

.btn-outline:hover {
    background-color: #f8fafc;
}

.btn-primary {
    background-color: #3b82f6;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2563eb;
}

/* Trending section */
.trending {
    padding: 2rem 1.5rem;
}

.trending-container {
    max-width: 1152px;
    margin: 0 auto;
}

.trending-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.trending-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.trending-icon {
    width: 24px;
    height: 24px;
    color: #3b82f6;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.artist-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.artist-card:hover {
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.artist-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.artist-content {
    padding: 1rem;
}

.artist-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.artist-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e2e8f0;
    object-fit: cover;
}

.artist-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.artist-info p {
    color: #64748b;
    font-size: 0.875rem;
}

.artist-bio {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.artist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background-color: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
}

.artist-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.875rem;
}

.stats-group {
    display: flex;
    gap: 1rem;
}

.follow-btn {
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.follow-btn:hover {
    background-color: #2563eb;
}

.follow-btn.following {
    background-color: #f1f5f9;
    color: #475569;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .main-content {
        margin-left: 0;
    }
    .search-section {
        flex-direction: column;
    }
    .button-group {
        flex-direction: column;
    }
}