/* Configuração geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background-color: #d32f2f;
    padding: 15px;
    text-align: center;
}

header h1 {
    font-size: 24px;
}

/* Navegação */
nav {
    background: #222;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

/* Seções principais */
main {
    padding: 20px;
}

/* Estilo das seções de política e termos */
.privacy-section, 
.policy-section, 
.copyright-section {
    background: #1e1e1e;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

h2 {
    border-bottom: 2px solid #d32f2f;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* Listas */
ul, ol {
    margin: 15px 0;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Estilo das caixas de seleção */
p label {
    display: block;
    margin: 10px 0;
    font-size: 14px;
    cursor: pointer;
}

input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.2);
}

/* Estilos específicos para a área VIP */
.vip-content {
    background: #d32f2f;
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
}

.vip-content p {
    margin-bottom: 15px;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    header h1 {
        font-size: 20px;
    }

    nav {
        display: flex;
        flex-direction: column;
    }

    nav a {
        margin: 5px 0;
    }
}

/* Estilo do rodapé */
footer {
    background-color: #121212;
    color: #aaa;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid #333;
}

footer p {
    font-size: 14px;
    margin: 0;
}

footer p a {
    color: #d32f2f;
    text-decoration: none;
}

footer p a:hover {
    text-decoration: underline;
}