* {
    margin: 0;
    padding: 0;
    font: inherit;
    box-sizing: border-box;
    vertical-align: baseline;
}

body {
    background: #000 url('../../image/arquivo/fundo.jpg')/*no-repeat center center/cover*/; 
    font-family: "Frijole", system-ui;
    font-weight: 400;
    font-style: normal;
    color: #bbb;
}

#container {
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: clamp(2em, 5vw, 2.9em); /* Tamanho de fonte responsivo */
    color: #90401b;
    margin-bottom: 20px;
}

.container-div {
    background: #000 url('../../image/arquivo/ninja.png') top right no-repeat;
    border-radius: 20px;
    background-size: contain; /* Ajusta a imagem de fundo */
    width: 100%;
    min-height: 105px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

#nav-conteudo {
    width: 100%;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.nav li {
    margin: 5px;
}

.nav li a {
    text-decoration: none;
    color: #bbb;
    font-size: clamp(1em, 3vw, 1.5em); /* Tamanho de fonte responsivo */
}

.nav li a:hover {
    color: aqua;
}

.subNav {
    display: none; /* Oculta subNav em telas menores */
}

#content {
    display: flex;
    flex-direction: row;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.blocos {
    background: url('../../image/arquivo/dc16-sb-box-halftone.png') repeat-x;
    background-color: #381301;
    border-radius: 10px;
    box-shadow: #000 2px 4px 0 0;
    width: 100%;
    max-width: 300px;
    padding: 20px;
    margin-bottom: 20px;
}

.blocos h3 {
    text-align: center;
    font-size: 1.2em;
    color: #95370c;
    margin-bottom: 15px;
}

.blocos p, strong {
    text-align: justify;
    font-size: 0.8em;
    color: #ca8d00;
}

.blocos .text-img {
    padding: 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.blocos a {
    text-decoration: none;
    color: #95370c;
}

.blocos a:hover {
    color: #ff5100;
}

.icon-grupos {
    height: 40px;
    width: 40px;
    /* border-radius: 20px; */
}

.icon-grupo {
    height: 35px;
    width: 35px;
}

#div-section  {
   margin-bottom: 30px;
}

.content-section {
    padding: 20px;
    margin: 0 auto;
    max-width: 800px;
}

.content-section h2 {
    font-size: clamp(1.5em, 4vw, 2.3em);
    color: #a09f9f;
}

.titulo {
    background: url('../../image/arquivo/title-marker.png') bottom left no-repeat;
    display: inline;
    padding: 35px;
    margin: 0 0 15px -20px;
    font-size: 1.4em;
    color: #bbb;
}

.titulo a {
    text-decoration: none;
    color: #bbb;
}

.titulo a:hover {
    color: #ff5100;
}

.content-section p {
    font-size: 0.8em;
    text-align: justify;
    color: #7c7c7c;
    padding: inherit;
}

.content-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #000;
}

.content-footer p {
    font-size: 0.9em;
    color: #bbb;
}

.content-footer a {
    text-decoration: none;
    color: #95370c;
}

.content-footer a:hover {
    color: #ff5100;
}

/* Media Queries para responsividade */
@media only screen and (max-width: 768px) {
    .container-div {
        background-size: cover; /* Ajusta a imagem de fundo para telas menores */
    }

    .nav {
        flex-direction: column;
        align-items: center;
    }

    .subNav {
        display: none; /* Mantém subNav oculto em telas menores */
    }

    #content {
        flex-direction: column;
        align-items: center;
    }

    .blocos {
        max-width: 100%;
    }

    .content-section {
        padding: 10px;
    }

    .titulo {
        padding: 20px;
        margin: 0 0 10px -10px;
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: clamp(1.5em, 6vw, 2em);
    }

    .nav li a {
        font-size: clamp(0.9em, 3vw, 1.2em);
    }

    .content-footer p {
        font-size: 0.8em;
    }
}