* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

:root {
    --verde-topo: #0A9F3F;
    --verde-botao: #0B8A36;
    --verde-botao-hover: #0E9E3E;

    --amarelo-titulo: #F7D117;
    --amarelo-vivo: #FFD84A;

    --preto-fundo: #050505;
    --preto-secundario: #0B0B0B;
    --preto-gradiente: #111111;

    --texto-principal: #F2F2F2;
    --texto-secundario: #CFCFCF;
    --texto-suave: #AFAFAF;

    --dourado: #C8A63A;
    --dourado-claro: #E1C15A;
}

body {
    background: linear-gradient(90deg, #050505 0%, #0B0B0B 50%, #050505 100%);
    color: var(--texto-secundario);
}


html {
    scroll-behavior: smooth;
}

p {
    font-family: var(--font-texto);
    font-size: 16px;
    line-height: 1.5;
}


/*TOP BAR*/
.top-bar {
    padding: 12px;
    font-size: 9px;
    color: var(--texto-principal);
    background-color: var(--verde-topo);
    display: flex;
    justify-content: center;
    font-family: var(--font-texto);
}

/*TOP BAR*/


/*CONTEINER*/
.conteiner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}


/*"Botão"*/
.bx {
    font-size: 12px;
    color: var(--dourado);
}

.text {
    font-size: 10px;
    color: var(--dourado-claro);
    border: 1px solid rgba(200, 166, 58, 0.8);
    border-radius: 6px;
    display: block;
    text-align: center;
    margin: 20px auto;
    margin-top: 5.5rem;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.01);
}

.text-2 {
    text-align: center;
    font-family: var(--font-texto);
}

/*"Botão"*/


/*img-escudo*/
.img-brasil {
    display: flex;
    justify-content: center;
    margin-top: -20px;
}

.img-brasil img {
    height: 115px;
    width: auto;
}

/*img-escudo*/


/*text*/
.title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -5px;
}

.title h1 {
    font-family: var(--font-titulo);
    color: var(--amarelo-titulo);
    font-size: 4rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 1px;
    text-shadow:
        0 0 3px rgba(247, 209, 23, 0.25),
        0 0 8px rgba(247, 209, 23, 0.12);
}

.sub-title {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    font-weight: 600;
    font-size: 15px;
    color: var(--texto-secundario);
    font-family: var(--font-texto);
}

/*text*/
/*CONTEINER*/


/*div*/
.img-banner {
    margin-top: 20px;
}

.banner {
    width: 100%;
    height: 600px;
}

/*div*/


.conteiner-2 {
    margin-top: -5px;
    background-color: var(--preto-fundo);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.botao-2 {
    display: flex;
    justify-content: center;
}

.button-2 {
    font-size: 18px;
    padding: 14px 40px;
    background: linear-gradient(180deg, var(--verde-botao-hover), var(--verde-botao));
    color: var(--texto-principal);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-texto);
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s ease;
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.35),
        0 0 8px rgba(10, 159, 63, 0.16);
}

.button-2:hover {
    transform: scale(1.05);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 0 12px rgba(10, 159, 63, 0.22);
}

.sub-titulo-1 {
    color: var(--dourado-claro);
    font-size: 13px;
    margin-top: 5px;
    font-family: var(--font-texto);
}

.sub-titulo {
    margin-top: 10px;
    color: var(--texto-suave);
    font-size: 13px;
    font-family: var(--font-texto);
}

/* Tablet */
@media (max-width: 900px) {
    .text {
        margin-top: 3rem;
        max-width: 90%;
    }

    .title h1 {
        font-size: 3.2rem;
    }

    .sub-title {
        font-size: 14px;
        padding: 0 20px;
    }

    .banner {
        height: auto;
    }
}

/* Celular */
@media (max-width: 600px) {
    .top-bar {
        padding: 10px;
        font-size: 7px;
        text-align: center;
    }

    .text {
        margin-top: 2rem;
        padding: 7px 10px;
        font-size: 8px;
        width: 90%;
    }

    .img-brasil img {
        height: 90px;
    }

    .title h1 {
        font-size: 2.8rem;
        line-height: 0.9;
    }

    .sub-title {
        font-size: 13px;
        line-height: 1.5;
        padding: 0 18px;
        display: block;
    }

    .img-banner {
        margin-top: 18px;
    }

    .banner {
        width: 100%;
        height: auto;
        display: block;
    }

    .conteiner-2 {
        padding: 20px 15px 25px;
    }

    .button-2 {
        width: 100%;
        max-width: 320px;
        font-size: 15px;
        padding: 14px 22px;
    }

    .sub-titulo-1 {
        font-size: 12px;
        line-height: 1.5;
        margin-top: 10px;
        padding: 0 10px;
    }

    .sub-titulo {
        font-size: 12px;
    }
}

/* Celular bem pequeno */
@media (max-width: 380px) {
    .title h1 {
        font-size: 2.3rem;
    }

    .img-brasil img {
        height: 75px;
    }

    .button-2 {
        font-size: 14px;
    }
}