/* Reset box-sizing para facilitar layouts */
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #111;
    color: white;
}

/* Header */
header {
    text-align: center;
    padding: 20px;
    background: #000;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

header p {
    font-size: 16px;
    color: #ccc;
}

/* Navegação */
nav {
    margin-top: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover, nav a.ativo {
    color: yellow;
}

/* Seção principal */
main {
    padding: 20px;
    text-align: center;
}

.chamada h2 {
    color: #ff6600;
}

.chamada p {
    margin-bottom: 15px;
    color: #ccc;
}

/* Botões de vendas */
.botoes-vendas {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.botao {
    display: inline-block;
    text-decoration: none;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.telegram {
    background: #0088cc;
}

.telegram:hover {
    background: #0077b5;
}

.discord {
    background: #5865F2;
}

.discord:hover {
    background: #4752c4;
}

/* Prévias */
.previas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.previa img {
    width: 100%;
    border-radius: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #000;
    font-size: 14px;
    color: #aaa;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    nav a {
        display: block;
        margin: 10px 0;
    }

    .botoes-vendas {
        flex-direction: column;
        gap: 10px;
    }

    .previas-grid {
        grid-template-columns: 1fr;
    }
}
