:root {
    --accent: #3fd9c8;
    --accent-glow: rgba(63, 217, 200, 0.2);
    --bg: #0b0f14;
    --bg-card: #111820;
    --bg-elevated: #1a2230;
    --text: #f0f4f8;
    --text-dim: rgba(240, 244, 248, 0.5);
    --border: rgba(255, 255, 255, 0.06);
    --radius: 16px;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(11, 15, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.header-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.header-logo span { color: var(--accent); }
.header-nav { display: flex; align-items: center; gap: 2rem; }
.header-nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.header-nav a:hover { color: var(--accent); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.btn-primary {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 0 25px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--accent-glow);
}
.btn-ghost {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 3rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(63, 217, 200, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(63, 100, 200, 0.03) 0%, transparent 50%);
}
.hero-content {
    position: relative;
    max-width: 700px;
}
.hero-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.hero-title span {
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow);
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Sections */
section {
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}
.section-sub {
    color: var(--text-dim);
    margin-bottom: 3rem;
    font-size: 1rem;
}

/* Universos */
.universos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.universo-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s;
}
.universo-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}
.universo-galpao { background: linear-gradient(160deg, #2a1f0a 0%, #0b0f14 100%); }
.universo-pink { background: linear-gradient(160deg, #2a0a1f 0%, #0b0f14 100%); }
.universo-artrock { background: linear-gradient(160deg, #0a1a2a 0%, #0b0f14 100%); }
.universo-trap { background: linear-gradient(160deg, #1a0a2a 0%, #0b0f14 100%); }
.universo-bigbars { background: linear-gradient(160deg, #2a1a05 0%, #0b0f14 100%); }
.universo-gaby { background: linear-gradient(160deg, #2a0a20 0%, #0b0f14 100%); }
.universo-boteco { background: linear-gradient(160deg, #2a1505 0%, #0b0f14 100%); }
.universo-dj { background: linear-gradient(160deg, #0a2a20 0%, #0b0f14 100%); }
.universo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,15,20,0.95) 0%, transparent 60%);
}
.universo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
}
.universo-tag {
    font-size: 0.7rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}
.universo-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0.5rem 0;
}
.universo-content p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Artistas */
.artistas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}
.artista-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
}
.artista-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bg-elevated);
    margin: 0 auto 1rem;
}
.artista-card h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.artista-card p { color: var(--text-dim); font-size: 0.85rem; }
.artista-genres {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--accent);
}

/* Loja */
.loja-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.loja-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}
.loja-cover {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-elevated);
    border-radius: 8px;
    margin-bottom: 1rem;
}
.loja-item h4 { margin-bottom: 0.3rem; }
.loja-item p { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 0.5rem; }
.loja-price {
    display: block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Contato */
.contato { max-width: 600px; }
.contato-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; gap: 1rem; }
.form-row input { flex: 1; }
input, select, textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
}
select { cursor: pointer; }
select option { background: var(--bg-card); }
textarea { resize: vertical; }

/* Footer */
.footer {
    text-align: center;
    padding: 3rem;
    border-top: 1px solid var(--border);
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}
.footer-brand span { color: var(--accent); }
.footer-links { margin-bottom: 1rem; }
.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.85rem;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy { color: var(--text-dim); font-size: 0.75rem; }

/* Responsive */
@media (max-width: 768px) {
    .header { padding: 1rem 1.5rem; }
    .header-nav { display: none; }
    .menu-toggle { display: block; }
    .hero { padding: 0 1.5rem; }
    section { padding: 4rem 1.5rem; }
    .form-row { flex-direction: column; }
    .universos-grid { grid-template-columns: 1fr; }
    .universo-card { aspect-ratio: 16/9; }
}
