:root {
    --primary: #1a1a1a;
    --accent: #b59a5d; /* Brass/Gold tone */
    --light: #f9f9f9;
    --white: #ffffff;
    --text-muted: #666;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    line-height: 1.6; 
    color: var(--primary);
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: auto; padding: 0 20px; }

/* --- Header & Navigation --- */
header { 
    background: var(--white); 
    border-bottom: 1px solid #eee; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    height: 80px;
    margin-bottom: 0 !important;
}

.nav-wrapper { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 100%; 
}
.logo-area { display: flex; align-items: center; text-decoration: none; }
.nav-logo { height: 45px; margin-right: 12px; }
.brand-name { 
    font-weight: 700; 
    font-size: 1.1rem; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    color: var(--primary);
}

.nav-list { display: flex; list-style: none; }
.nav-list li { margin-left: 30px; }
.nav-list a { 
    text-decoration: none; 
    color: var(--primary); 
    font-size: 0.9rem;
    font-weight: 600; 
    transition: 0.3s; 
}
.nav-list a:hover { color: var(--accent); }

/* --- Mobile Menu Toggle --- */
.menu-toggle { 
    display: none; 
    flex-direction: column; 
    gap: 5px;
    cursor: pointer; 
    border: none; 
    background: none; 
}
.bar { height: 2px; width: 25px; background: var(--primary); transition: 0.3s; }

/* Animações do Ícone Hambúrguer */
.rotate-down {
    transform: translateY(7px) rotate(45deg);
}
.fade-out {
    opacity: 0;
}
.rotate-up {
    transform: translateY(-7px) rotate(-45deg);
}

/* Garanta que as barras tenham transição */
.bar {
    transition: all 0.3s ease;
}

/* 1. Reset essencial para remover espaços indesejados */
html, body {
    margin: 0;
    padding: 0;
}

/* 2. Ajuste do Hero para ocupar o espaço correto sem faixas */
.hero {
    height: 70vh; /* Altura do banner */
    position: relative;
    background: #000; /* Fundo preto caso a imagem demore a carregar */
    overflow: hidden;
    display: block;
    width: 100%;
}

/* 3. Container das imagens - Garante que ele preencha o Hero */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 4. Estilo das imagens do Slide */
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem cobrir a área sem distorcer */
    object-position: center; /* Centraliza a imagem */
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Transição suave */
}

/* 5. Classe que o JavaScript ativa */
.hero-img.active {
    opacity: 0.6; /* Opacidade reduzida para destacar o texto */
}

/* 6. Conteúdo em cima das imagens */
.hero-content {
    position: relative; /* Mantém o texto acima do slider-container */
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
    pointer-events: none; /* Garante que o texto não atrapalhe cliques se houver */
}

/* Ajuste específico para evitar a faixa preta superior */
header + .hero {
    margin-top: 0;
}

/* --- Hero Slider --- */
.hero { 
    height: 70vh; 
    position: relative; 
    background: #000; 
    overflow: hidden; 
}
.slider-container {
    position: absolute;
    width: 100%;
    height: 100%;
}
.hero-img { 
    position: absolute;
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-img.active { opacity: 0.7; }

.hero-content { 
    position: absolute; 
    z-index: 10;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    text-align: center; 
    color: var(--white); 
    width: 90%; 
}
.hero-content h1 { font-size: 3.5rem; margin-bottom: 15px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.2rem; font-weight: 300; }

/* --- Sections --- */
section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2rem; }

.flex-row { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; }
.about-image { flex: 1; }
.about-image img { width: 100%; border-radius: 4px; box-shadow: 20px 20px 0 var(--accent); }

/* --- Services --- */
.services { background: var(--light); }
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}
.service-card { 
    background: var(--white); 
    padding: 40px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-10px); }
.service-card h3 { margin-bottom: 15px; color: var(--accent); }

/* --- Contact Form --- */
.contact-container { max-width: 600px; margin: auto; }
form { display: flex; flex-direction: column; gap: 20px; }
input, textarea { 
    padding: 15px; 
    border: 1px solid #ddd; 
    font-size: 1rem; 
    outline: none; 
}
input:focus, textarea:focus { border-color: var(--accent); }
.btn-submit { 
    background: var(--primary); 
    color: white; 
    padding: 18px; 
    border: none; 
    font-weight: bold; 
    cursor: pointer; 
    text-transform: uppercase;
    transition: 0.3s;
}
.btn-submit:hover { background: var(--accent); }

/* --- Footer --- */
footer { background: var(--primary); color: #ccc; padding: 60px 0 20px; text-align: center; }
.footer-links { margin: 20px 0; }
.footer-links a { color: var(--white); text-decoration: none; margin: 0 15px; font-size: 0.85rem; }
.footer-links a:hover { color: var(--accent); }
hr { border: 0; border-top: 1px solid #333; margin: 30px 0; }

/* --- Responsiveness --- */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-list { 
        display: none; 
        position: absolute; 
        top: 80px; 
        left: 0; 
        width: 100%; 
        background: var(--white); 
        flex-direction: column; 
        text-align: center;
        padding: 40px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .nav-list.active { display: flex; }
    .nav-list li { margin: 15px 0; }
    .flex-row { flex-direction: column; }
    .hero-content h1 { font-size: 2.2rem; }
}

/* --- Associations Page Specific Styles --- */
.list-header {
    text-align: center;
    padding: 40px 0;
}

.search-input {
    width: 100%;
    max-width: 500px;
    padding: 12px 20px;
    margin-top: 20px;
    border: 2px solid #eee;
    border-radius: 25px;
    outline: none;
    transition: 0.3s;
}

.search-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(181, 154, 93, 0.2);
}

.entities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.entity-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s;
}

.entity-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.entity-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #f9f9f9;
    border-radius: 4px;
}

.entity-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--primary);
}

.entity-info p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

.visit-btn {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
}

.visit-btn:hover {
    border-color: var(--accent);
}

@media (max-width: 600px) {
    .entity-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* --- Music Choice Grid --- */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.music-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.artist-photo-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.artist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.music-card:hover .artist-photo {
    transform: scale(1.05);
}

.music-info {
    padding: 20px;
}

.stage-name {
    color: var(--accent);
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.album-title {
    font-size: 1.4rem;
    margin: 5px 0;
}

.real-name {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

/* Track List Styles */
.track-list {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px dashed #f0f0f0;
}

.track-actions a {
    text-decoration: none;
    margin-left: 10px;
    filter: grayscale(1);
    transition: 0.3s;
}

.track-actions a:hover {
    filter: grayscale(0);
    transform: scale(1.2);
}

/* Customizações para a página Publisher */
.book-details {
    display: flex;
    flex-direction: column;
}

.book-title {
    font-weight: 600;
    color: var(--primary);
}

.isbn {
    font-size: 0.75rem;
    color: #888;
    font-family: monospace;
}

.track-actions a[title="Read Online"] {
    font-size: 1.2rem;
    filter: none; /* Deixa o emoji de livro visível */
}

/* --- Privacy Policy Styles --- */
.policy-content {
    max-width: 800px;
    margin: 60px auto;
    line-height: 1.8;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.last-updated {
    color: var(--accent);
    font-style: italic;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.policy-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--light);
    padding-bottom: 5px;
}

.policy-content p, .policy-content li {
    margin-bottom: 20px;
    color: #444;
}

.policy-content ul {
    margin-left: 20px;
    list-style-type: square;
}

@media (max-width: 768px) {
    .policy-content h1 {
        font-size: 2rem;
    }
}

/* --- Estilo específico para o ícone do Facebook dourado --- */
.facebook-gold svg {
    color: var(--accent); /* Aplica a cor dourada/latão */
    transition: transform 0.3s ease, color 0.3s ease; /* Transições suaves */
}

.facebook-gold:hover svg {
    color: var(--white); /* Muda para branco no hover para destacar no fundo escuro */
    transform: scale(1.1); /* Dá um pequeno zoom no hover */
}