:root {
    --cor-destaque: #f00;
    --cor-fundo-escuro: #0a0a0a;
    --cor-fundo-hero: #660000;
    --cor-texto-claro: #fff;
    --cor-secundaria: #ff3333;
    --cor-fundo-secao: #1a1a1a;
}

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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: var(--cor-fundo-escuro);
    color: var(--cor-texto-claro);
    line-height: 1.6;
    overflow-x: hidden;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto; 
    padding: 0 20px;
}

.header-legal {
    background-color: var(--cor-fundo-hero);
    padding: 40px 0;
    text-align: center;
}

.logo-header-legal {
    padding: 10px 0;
}

.logo-header-legal img {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.header-legal h1 {
    color: var(--cor-texto-claro);
    font-size: 2.5em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.header-legal p {
    color: #ddd;
    font-size: 1.1em;
}

.terms-section {
    padding: 80px 0;
    background-color: var(--cor-fundo-escuro);
}

.terms-section h1 {
    color: var(--cor-destaque);
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--cor-destaque);
    text-align: center;
}

.terms-section h2 {
    color: var(--cor-secundaria);
    font-size: 1.8em;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
    border-left: 5px solid var(--cor-secundaria);
    padding-left: 15px;
}

.terms-section h3 {
    color: #ccc;
    font-size: 1.3em;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

.terms-section p {
    margin-bottom: 20px;
    color: #ddd;
    font-size: 1em;
}

.terms-section strong {
    color: var(--cor-texto-claro);
    font-weight: 700;
}

.terms-section ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #ddd;
}

.terms-section ul li {
    margin-bottom: 10px;
}

.terms-section .date-notice {
    display: block;
    font-size: 0.9em;
    color: var(--cor-destaque);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.terms-section hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 0, 0, 0), rgba(255, 0, 0, 0.75), rgba(255, 0, 0, 0));
    margin: 50px 0;
}

.footer {
    background-color: var(--cor-fundo-hero);
    text-align: center;
    padding: 20px 0;
}

.logo-footer {
    margin-bottom: 5px;
}

.logo-footer img {
    max-width: 120px;
    height: auto;
}

.footer p {
    font-size: 0.8em;
    color: #aaa;
}

@media (max-width: 600px) {
    .logo-header-legal img {
        max-width: 200px;
    }
    .header-legal h1 {
        font-size: 1.8em;
    }
    .terms-section h2 {
        font-size: 1.5em;
    }
}