/* Estilos Gerais */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    background: #f8f9fa;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cabeçalho */
.header {
    background: #5865F2;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .logo {
    font-size: 1.8rem;
    margin: 0;
}

.nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
}

.nav a:hover {
    text-decoration: underline;
}

/* Introdução */
.intro {
    background-image: url(imagens/castelo.png);
    background-position: center;
    color: #000000;
    padding: 50px 0;
    text-align: center;
}

.intro h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Seções Legais */
.legal-section {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #5865F2;
}

.legal-section ul {
    list-style: none;
    padding: 0;
}

.legal-section li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.legal-section li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #5865F2;
}

/* Rodapé */
.footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer a {
    color: #5865F2;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    color: #f0db4f;
}

/* Botão Voltar ao Topo */
.back-to-top {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav a {
        display: block;
        margin: 10px 0;
    }
}
