:root {
    --bg-dark: #050505;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --gold: #FFD700;
    --border: #222;
    --container-width: 900px;
}

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

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

.legal-header {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
    background: #080808;
}

.logo-img {
    height: 40px;
    width: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4rem 2rem;
}

h1 {
    font-family: "Outfit", sans-serif;
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

h2 {
    font-family: "Outfit", sans-serif;
    color: var(--text-main);
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
}

h3 {
    font-family: "Outfit", sans-serif;
    color: var(--text-main);
    margin: 1.5rem 0 0.8rem;
    font-size: 1.2rem;
}

p, ul {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: justify;
}

ul {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: var(--gold);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Botão de Voltar */
.btn-container {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.btn-back {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none; /* Remove underline do link padrão */
}

.btn-back:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    text-decoration: none;
    transform: translateY(-2px);
}

.legal-footer {
    text-align: center; /* Centralizado */
    padding: 2rem;
    border-top: 1px solid var(--border);
    color: #555;
    font-size: 0.9rem;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
