* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #faf9f8;
    color: #1e1e2a;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header / Navegação */
header {
    background: #1a1a24;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo h1 {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    font-weight: 600;
}
.logo p {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #c7a66b;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #2c2c3a 0%, #1a1a24 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 24px;
    opacity: 0.9;
}

.highlight {
    color: #e6c394;
}

.btn {
    display: inline-block;
    background-color: #c7a66b;
    color: #1e1e2a;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #b58d4b;
    transform: translateY(-2px);
}

/* Seções */
section {
    padding: 80px 0;
    border-bottom: 1px solid #eaeaea;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #c7a66b;
    margin: 12px auto 0;
}

/* Bio */
.bio-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    justify-content: center;
}
.bio-text {
    flex: 2;
    min-width: 260px;
}
.bio-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #2d2d35;
}
.bio-img {
    flex: 1;
    min-width: 240px;
    text-align: center;
}
.bio-img img {
    width: 100%;
    max-width: 280px;
    border-radius: 24px;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.2);
    object-fit: cover;
    aspect-ratio: 1 / 1;
    background: #ddd;
}

/* Discografia */
.discografia-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.album-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    width: 260px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid #efefef;
}
.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
}
.album-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #ccc;
}
.album-card h3 {
    margin: 16px 0 8px;
    font-size: 1.3rem;
}
.album-card p {
    color: #666;
    padding: 0 12px;
    font-size: 0.9rem;
}

/* Obras / Músicas */
.obras-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.musica-item {
    background: white;
    padding: 18px 20px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid #ececec;
    transition: 0.2s;
}
.musica-item i {
    font-size: 1.8rem;
    color: #c7a66b;
}
.musica-item span {
    font-weight: 500;
    font-size: 1rem;
}
.musica-item:hover {
    background: #fff7ef;
    border-color: #e6c394;
}

/* Contato / Redes */
.redes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0 20px;
}
.rede-link {
    background: #1e1e2a;
    color: white;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    transition: 0.2s;
    text-decoration: none;
}
.rede-link:hover {
    background: #c7a66b;
    color: #1e1e2a;
    transform: scale(1.05);
}
.contato-email {
    text-align: center;
    margin-top: 24px;
    font-size: 1.1rem;
}
.contato-email a {
    color: #c7a66b;
    text-decoration: none;
    font-weight: 600;
}

footer {
    background: #111114;
    color: #aaa;
    text-align: center;
    padding: 32px 0;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero-content h2 { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    nav { flex-direction: column; text-align: center; }
    .bio-content { flex-direction: column-reverse; text-align: center; }
}