/* 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 para o formulário de solicitação */
form {
    background-color: #1e1e1e;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

form h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #d32f2f;
}

form label {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
}

form input[type="text"],
form input[type="email"],
form input[type="url"],
form textarea,
form input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    outline: none;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="url"]:focus,
form textarea:focus,
form input[type="file"]:focus {
    border-color: #d32f2f;
    box-shadow: 0 0 5px rgba(211, 47, 47, 0.7);
}

form textarea {
    resize: vertical;
}

form button {
    background-color: #d32f2f;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #b71c1c;
}

/* Estilo para as observações importantes */
ul {
    margin: 20px 0;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ddd;
}


/* 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;
}