* {
    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: 165px;
    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;
}

.div-h2 {
    text-align: center;
    margin-top: 20px;
}

h2 {
    font-size: clamp(1.2em, 4vw, 2.5em); /* Tamanho de fonte responsivo */
    color: #bbb;
}

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

.blocos {
    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: #9a6f01;
}

.blocos a {
    text-decoration: none;
    color: #8e3308;
}

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

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

.content-section {
    display: flex;
    flex-direction: column; 
}

.icon-grupos {
    height: 40px;
    width: 40px;
}

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

.content-section {
    padding: 20px;
    margin: 0 20px;
}

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

h3 {
    margin-top: 30px;
    color: #bbb;
    font-size: 1.2em;
}

#div-section p a {
    text-decoration: none;
    color: #95370c;
}

#div-section a:hover {
    color: #ff5100;
}

.content-section p {
    font-size: 0.8em;
    text-align: justify;
    color: #898989;
    margin: 10px 0;
}

.content-section .txt-p {
    color: #ffffff;
}

.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;
}


/* ****** Formulário ****** */

.container-form {
    max-width: 800px;
    margin: 20px auto;
    background: rgb(82, 22, 1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h4, h5 {
    text-align: center;
    color: #ff5100;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.container-form p {
    text-align: center;
    margin-bottom: 10px;
}

.form-section {
    margin-bottom: 20px;
}

label {
    color: #fd6202;
    font-weight: bold;
}

input, textarea {
    background-color: #a7a7a7;
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #969696;
    border-radius: 5px;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #772e02;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #d14906;
}

/* 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;
    }

    .div-h2 {
        margin-top: 10px;
    }

    h2 {
        font-size: clamp(1em, 4vw, 1.5em);
    }

    #content {
        padding: 10px;
    }

    .blocos {
        max-width: 100%;
    }

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

    .container-form {
        padding: 10px;
    }
}

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

    #content {
        flex-wrap: wrap;
    }

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

    .content-footer p {
        font-size: 0.8em;
        text-align: center;

    }

    .container-form {
        padding: 10px;
    }

    h4, h5 {
        font-size: 1.2em;
    }
}