/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a; /* Fundo escuro */
    color: #f0f0f0; /* Texto claro */
}

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

/* Cabeçalho */
header {
    background-color: #000000; /* Preto sólido */
    padding: 20px 0;
    border-bottom: 3px solid #ffffcc; /* Linha vermelha de destaque */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2.5em;
    color: #ffffcc; /* Título em vermelho */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo .tagline {
    font-size: 0.9em;
    color: #aaaaaa;
    margin-top: -5px;
}

/* Navegação */
nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s, border-bottom 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ffffcc;
    border-bottom: 2px solid #ffffcc;
}

/* Conteúdo Principal */
main {
    padding: 40px 0;
    min-height: 60vh;
}

main h2 {
    color: #ffffcc;
    font-size: 2em;
    margin-bottom: 20px;
    border-bottom: 2px solid #333333;
    padding-bottom: 5px;
}

section {
    background-color: #222222;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

section p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Estilos Específicos */
.manifesto-section .destaque {
    font-style: italic;
    color: #ffffcc;
    font-weight: bold;
    margin-top: 20px;
    padding: 10px;
    border-left: 5px solid #ffffcc;
    background-color: #333333;
}

.banda-info ul {
    list-style: none;
    padding-left: 0;
}

.banda-info ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.biografia-section h3 {
    color: #f0f0f0;
    margin-top: 20px;
    margin-bottom: 10px;
    border-left: 3px solid #ffffcc;
    padding-left: 10px;
}

.membros-title {
    color: #ffffcc !important;
    border-left: none !important;
    padding-left: 0 !important;
    text-align: center;
    font-size: 1.8em !important;
    margin-top: 40px !important;
    margin-bottom: 30px !important;
}

.membros-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 30px;
}

.membro-card {
    background-color: #1a1a1a;
    padding: 20px;
    border: 1px solid #333333;
    border-radius: 5px;
    max-width: 300px;
    text-align: center;
}

.membro-foto {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 2px solid #ffffcc;
}

.membro-card h4 {
    color: #ffffcc;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.membro-card p {
    font-size: 0.95em;
    text-align: left;
}

.discografia-section ol {
    margin-left: 20px;
    list-style-type: decimal;
}

.discografia-section ol li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.contato-info {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #444444;
    border-radius: 3px;
}

.contato-info h3 {
    color: #ffffcc;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.contato-info a {
    color: #f0f0f0;
    text-decoration: none;
}

.contato-info a:hover {
    text-decoration: underline;
    color: #ffffcc;
}

/* Rodapé */
footer {
    background-color: #000000;
    color: #aaaaaa;
    padding: 30px 0;
    font-size: 0.9em;
    border-top: 3px solid #ffffcc;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-right: 20px;
}

.footer-section h3 {
    color: #ffffcc;
    margin-bottom: 10px;
    font-size: 1.1em;
    text-transform: uppercase;
}

.footer-section a {
    color: #f0f0f0;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
    color: #ffffcc;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #333333;
}

.footer-bottom .manifesto {
    font-style: italic;
    margin-top: 10px;
    color: #ffffcc;
}


/* Estilos para Ícones de Mídias Sociais */
.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon-link {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.social-icon-link:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

.social-icon-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Responsividade --- */

/* Ajustes para o Logotipo */
.logo-img {
    max-width: 200px;
    height: auto;
}

/* Menu Mobile */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 20px;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .membro-card {
        max-width: 100%;
    }
}

/* Ajustes finos para telas muito pequenas */
@media (max-width: 480px) {
    .logo-img {
        max-width: 150px;
    }

    main h2 {
        font-size: 1.5em;
    }

    section {
        padding: 15px;
    }

    .social-icon-link {
        width: 80px;
        height: 80px;
    }
}
