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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background-color: #000000;
    color: #f5f5f5;
    overflow-x: hidden;
    background-image: url("../img/bg/bg.png");
    background-repeat: no-repeat;
    background-position: left top;
    
}

/* overlay para deixar a imagem mais suave */
.overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 15%,
    rgba(0,0,0,0.20) 30%,
    rgba(0,0,0,0.0) 45%
    );
    pointer-events: none;
    z-index: 1;
}

/* CONTEÚDO À DIREITA */
.content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: auto;
    padding: 50px 40px 80px;
}

nav {
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

nav a {
    color: #eee;
    text-decoration: none;
    margin-right: 14px;
    opacity: 0.8;
}

nav a:hover {
    opacity: 1;
}

.lang {
    float: right;
    font-size: 0.8rem;
}

.lang a {
    color: #aaa;
    margin-left: 8px;
    text-decoration: none;
}

.lang a:hover {
    color: #fff;
}

/* bloco vermelho estilo manifesto */
.brand {
    display: inline-block;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.brand h1 {
    color: #fff;
    line-height: 1.1;
    font-size: 55px;
    letter-spacing: 0.07em;
}

.brand .subtitle {
    margin-top: 6px;
    color: #ffecec;
    letter-spacing: 0.14em;
}

section {
    margin-bottom: 36px;
}

h2 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    color: #ddd;
}

p {
    margin-bottom: 12px;
}

hr {
    border: none;
    border-top: 1px solid #333;
    margin: 30px 0;
}

.cta {
    background: #f2c700;
    color: #000;
    padding: 10px 18px;
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 3px;
    letter-spacing: 0.1em;
}

.cta:hover {
    background: #ddb200;
}

footer {
    text-align: center;
}

#id {
    text-align: center;
}

#shop {
    text-align: center;
}

#join {
    text-align: center;
}

#antsec {
    text-align: center;
}

@media (max-width: 900px) {
    body {
    background-size: 70% auto;
    background-position: center top;
    }
    .content {
    max-width: 100%;
    padding: 24px;
    }
}

@media (max-width: 600px) {
    body {
    background: #111; /* remove a imagem para não atrapalhar */
    }
}