/* --- global.css: Estilos Gerais e Estrutura --- */
:root {
    --primary-color: #b300ff; /* O Roxo Neon */
    --dark-purple: #240033;   /* Roxo bem escuro para fundos */
    --text-color: #e0e0e0;
    --bg-black: #050505;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-color);
    margin: 0;
    padding-top: 80px; /* Espaço para a navbar não cobrir o conteúdo */
    line-height: 1.5;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Navbar (Estilo idêntico à imagem pedida) --- */
.navbar {
    background: linear-gradient(90deg, #0a0a0a 0%, #1a0b2e 100%); /* Degradê sutil roxo/preto */
    border-bottom: 2px solid var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(179, 0, 255, 0.15);
}

.navbar-brand {
    font-family: 'Metal Mania', cursive; /* Fonte da banda */
    color: var(--primary-color) !important;
    font-size: 2rem; /* Tamanho grande como na imagem */
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(179, 0, 255, 0.6); /* Brilho neon */
}

.nav-link {
    color: #ffffff !important; /* Texto branco */
    font-size: 1.1rem;
    font-weight: 500;
    margin-left: 1.5rem; /* Espaçamento entre os links */
    transition: all 0.3s ease;
    text-transform: uppercase; /* Letras maiúsculas opcional, fica elegante */
}

/* Efeito Hover nos links */
.nav-link:hover, .nav-link.active, .nav-link:focus {
    color: var(--primary-color) !important;
    text-shadow: 0 0 8px var(--primary-color);
}

/* Dropdown Menu (Sobre) */
.dropdown-menu {
    background-color: #121212;
    border: 1px solid var(--primary-color);
}
.dropdown-item {
    color: #fff;
}
.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Ícone do Menu Mobile (Hamburguer) */
.navbar-toggler {
    border-color: var(--primary-color);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(179, 0, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --- Títulos e Seções --- */
.page-section {
    padding: 4rem 0;
}

.section-title, .page-title {
    font-family: 'Metal Mania', cursive;
    text-transform: uppercase;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}
.page-title { font-size: 3rem; }
.section-title { font-size: 2.5rem; color: #fff; }

/* --- Footer --- */
.footer {
    background-color: #000;
    border-top: 1px solid var(--primary-color);
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}
.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: 0.3s;
}
.social-icons a:hover { color: var(--primary-color); }
.svg-container { color: var(--primary-color); opacity: 0.7; margin-bottom: 1rem; }

/* Botão Voltar ao Topo */
#backToTopBtn {
    display: none; position: fixed; bottom: 20px; right: 20px; z-index: 100;
    border: none; background-color: var(--primary-color); color: white;
    width: 45px; height: 45px; border-radius: 50%; cursor: pointer;
    box-shadow: 0 0 10px var(--primary-color);
}

.btn {
    padding: 12px 35px; /* Botões mais largos */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700; /* Texto mais grosso */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block; /* Garante que o botão tenha corpo */
    position: relative;
    z-index: 10;
}

/* Botão Sólido (Roxo) */
.btn-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(179, 0, 255, 0.4); /* Brilho inicial */
}

.btn-custom:hover {
    background-color: #d670ff;
    border-color: #d670ff;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(179, 0, 255, 0.8); /* Brilho forte no hover */
    color: #fff;
}

/* Botão Contorno*/
.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color); /* Borda Roxa Neon */
    color: #fff; /* Texto Branco */
    box-shadow: inset 0 0 10px rgba(179, 0, 255, 0.2); /* Brilho interno sutil */
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-color); /* Explode o brilho no hover */
    transform: translateY(-3px);
}