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

/* =========================
   TEMA
========================= */
:root {
    --bg: #0a0a0a;
    --text: #f5f5f5;
    --muted: #9a9a9a;
    --line: #2a2a2a;
}

@media (prefers-color-scheme: light) {
    :root {
        --bg: #ffffff;
        --text: #111111;
        --muted: #666;
        --line: #ddd;
    }
}

/* =========================
   BASE
========================= */
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* =========================
   HERO
========================= */
.hero {
    text-align: center;
    padding: 140px 20px 80px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    letter-spacing: 1px;
}

/* =========================
   META (linhas + data)
========================= */
.meta {
    max-width: 700px;
    margin: 0 auto 100px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    gap: 20px;
}

.meta p {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 1px;
}

/* linha */
.line {
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* =========================
   CONTEÚDO
========================= */
.content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

/* TEXTO PRINCIPAL */
.lead {
    margin-bottom: 100px;
}

.lead p {
    font-size: 1.4rem;
    max-width: 60ch;
    line-height: 1.9;
    letter-spacing: 0.2px;
}

/* =========================
   GRID EDITORIAL
========================= */

.card {
    display: block;
}

.card article {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.card:hover article {
    transform: translateY(-4px);
    opacity: 0.9;
}

.card,
.card:visited {
    color: inherit;
}

.card h2 {
    text-decoration: none;
    transition: 0.3s ease;
}

.card:hover h2 {
    text-decoration: underline;
}

.card {
    text-decoration: none;
    color: inherit;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: start;
}

/* títulos */
.grid h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* texto */
.grid p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

/* =========================
   ABOUT PAGE
========================= */

/* =========================
   ABOUT (EDITORIAL FLOW)
========================= */

.about-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 100px;

    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* CAIXA DO PERFIL (BANNER) */
.about-box {
    width: 240px;
    flex-shrink: 0;

    border: 1px solid var(--line);
    padding: 20px;
    border-radius: 6px;

    background: rgba(255,255,255,0.02);
}
/* imagem */
.about-box img {
    width: 100%;
    max-height: 260px;   /* controla altura */
    object-fit: cover;   /* mantém proporção bonita */
    border-radius: 4px;
    margin-bottom: 15px;
}

/* lista */
.about-box ul {
    list-style: none;
}

.about-box li {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 12px;
}

/* título dos itens */
.about-box strong {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
}

/* TEXTO */

.about-text {
    flex: 1;
    min-width: 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* limpar float no final */
.about-wrapper::after {
    content: "";
    display: block;
    clear: both;
}

body {
    background: black;
}

/* =========================
   MÚSICA
========================= */

.music-cover:hover img {
    transform: scale(1.02);
    opacity: 0.9;
}

.music-cover {
    position: relative; /* ESSENCIAL */
    max-width: 500px;
    margin: 60px auto;
}

.music-player {
    text-align: center;
    margin-top: 120px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.track-name {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 30px;
}

.music-cover img {
    width: 100%;
    border-radius: 6px;
    display: block;
    filter: contrast(1.05);
    transition: 0.4s ease;
}


/* botão central */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    text-decoration: none;
    font-size: 2rem;
    color: white;

    background: rgba(0,0,0,0.5);
    padding: 12px 18px;
    border-radius: 50%;

    transition: 0.3s ease;
}

.play-overlay:hover {
    background: rgba(0,0,0,0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* =========================
   INTERAÇÃO
========================= */
.grid article {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.grid article:hover {
    transform: translateY(-4px);
    opacity: 0.85;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 800px) {

    .hero {
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lead p {
        font-size: 1.2rem;
    }
}