:root {
    --vermelho: #b30000;
    --amarelo: #f5c400;
    --cinza: #f4f4f4;
    --red: #d2232a;
    --yellow: #ffd400;
    --dark: #2b2b2b;
    --muted: #f7f5f3;
    --radius: 12px;
    --container: 1100px;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        Arial;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    background: #fff;
    color: var(--dark);
    line-height: 1.45;
}

.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px;
}

header {
    background: linear-gradient(90deg, var(--red), var(--yellow));
    color: #fff;
    padding: 18px 0;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #e5e5e5;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 15px;
}

.bloco {
    background: white;
    border-left: 8px solid var(--amarelo);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 6px;
}

.bloco h2 {
    margin-bottom: 15px;
    color: var(--vermelho);
}

.lista {
    list-style: none;
}

.lista li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.lista a {
    background: var(--vermelho);
    color: white;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.lista a:hover {
    background: #800000;
    color: #e5e5e5;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.subtitulo {
    margin-top: 40px;
}

footer {
    margin-top: 40px;
    background: #111;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.link,
.insta {
    background: var(--vermelho);
    color: white;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.link,
.insta:hover {
    background: #800000;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .lista li {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .insta-rodape {
        display: none;
    }

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}