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

:root {
    --roxo-imperial: #4B0082;
    --roxo-real: #6A0DAD;
    --ouro-luxo: #FFD700;
    --ouro-escuro: #B8860B;
    --preto-profundo: #0A0A0A;
    --branco-puro: #FFFFFF;
    --cinza-elegante: #2C2C2C;
    --roxo-claro: #9370DB;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, var(--preto-profundo) 0%, var(--roxo-imperial) 50%, var(--preto-profundo) 100%);
    color: var(--branco-puro);
    line-height: 1.8;
    min-height: 100vh;
}

.topo-site {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--ouro-luxo);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.menu-navegacao {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
}

.logotipo-marca img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 15px var(--ouro-luxo));
    transition: transform 0.4s ease;
}

.logotipo-marca img:hover {
    transform: scale(1.1) rotate(2deg);
}

.links-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.links-menu a {
    color: var(--branco-puro);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.links-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ouro-luxo), var(--ouro-escuro));
    transition: width 0.4s ease;
}

.links-menu a:hover {
    color: var(--ouro-luxo);
}

.links-menu a:hover::after {
    width: 100%;
}

.botao-acao-principal {
    background: linear-gradient(135deg, var(--ouro-luxo), var(--ouro-escuro));
    color: var(--preto-profundo);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid var(--ouro-luxo);
}

.botao-acao-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.7);
    background: linear-gradient(135deg, var(--ouro-escuro), var(--ouro-luxo));
}

.navegacao-migalhas {
    background: rgba(44, 44, 44, 0.6);
    padding: 1rem 3rem;
    border-bottom: 1px solid var(--roxo-claro);
}

.navegacao-migalhas ol {
    list-style: none;
    display: flex;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.navegacao-migalhas a {
    color: var(--ouro-luxo);
    text-decoration: none;
    transition: color 0.3s ease;
}

.navegacao-migalhas a:hover {
    color: var(--branco-puro);
    text-decoration: underline;
}

.container-principal {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 3rem;
}

.secao-conteudo {
    background: rgba(44, 44, 44, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 4rem;
    box-shadow: 0 15px 50px rgba(106, 13, 173, 0.4);
    border: 2px solid var(--roxo-real);
}

h1 {
    font-size: 3rem;
    color: var(--ouro-luxo);
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.3;
}

h2 {
    font-size: 2.2rem;
    color: var(--ouro-luxo);
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--roxo-real);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    font-weight: 800;
}

h3 {
    font-size: 1.7rem;
    color: var(--roxo-claro);
    margin: 2rem 0 1rem;
    font-weight: 700;
}

p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 2;
    color: #E8E8E8;
}

strong {
    color: var(--ouro-luxo);
    font-weight: 700;
}

.rodape-site {
    background: rgba(10, 10, 10, 0.98);
    border-top: 3px solid var(--ouro-luxo);
    margin-top: 6rem;
    padding: 3rem 0;
}

.conteudo-rodape {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.secao-rodape h3 {
    color: var(--ouro-luxo);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.secao-rodape p {
    font-size: 1rem;
    line-height: 1.8;
}

.secao-rodape ul {
    list-style: none;
}

.secao-rodape ul li {
    margin-bottom: 0.8rem;
}

.secao-rodape a {
    color: var(--branco-puro);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.secao-rodape a:hover {
    color: var(--ouro-luxo);
}

.fundo-rodape {
    text-align: center;
    padding: 2rem 3rem;
    background: rgba(0, 0, 0, 0.5);
    margin-top: 2rem;
    border-top: 1px solid var(--roxo-real);
}

.fundo-rodape p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.aviso-idade {
    color: var(--ouro-luxo);
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .menu-navegacao {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 1.5rem;
    }
    
    .links-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .container-principal {
        padding: 0 1.5rem;
    }
    
    .secao-conteudo {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
}
