@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat-Regular.ttf);
}

* {
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
}


body {
    padding: 0;
    margin: 0;
    background: #3d1f00;
    /* min-height: 100vh;
    background-attachment: fixed; */
}

.sombra {
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
}

.escondido {
    display: none;
}

header {
    background-color: #ed9b0b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
    position: sticky;
    top: 0;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

header .icone {
    font-size: 30px;
    position: relative;
}

.logo {
    height: 55px;
}

.id-site {
    display: flex;
    align-items: center;
    gap: 10px;
}

.id-site h1 {
    font-size: 20px;
    font-weight: normal;
}

#area-central {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    width: 50%;
}

#dadosQuantidades {
    text-align: center;
}

.area-busca {
    display: flex;
    width: 100%;
    height: 40px;
    border: 1px solid #ced4da;
    border-radius: 3px;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
    outline: 0;
    box-sizing: border-box;
}

.area-busca select {
    border: none;
    box-sizing: border-box;
    padding: 10px;
    border-right: thin solid #d1d1d1;
}

.area-busca input {
    width: 100%;
    border: none;
    box-sizing: border-box;
    padding: 10px;
}

.area-busca button {
    border: none;
    box-sizing: border-box;
    padding: 10px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ed9b0b;
}

.area-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.id-usuario {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    box-sizing: border-box;
    padding: 0px 10px;
}

.id-usuario.ativo {
    background-color: #fff;
    color: #000;
}

/* PRINCIPAL ----------------------------------- */

main {
    padding: 20px;
    width: 85%;
    margin: auto;
}

main > div {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tituloSecao {
    color: #fff;
    width: 100%;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-top: 0;
}

#area-polegar {
    /* width: 85%;
    padding: 20px 20px 0 0;
    margin: auto;
    display: flex;
    justify-content: flex-end; */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.botao {
    border: none;
    background-color: #ed9b0b;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    width: fit-content;
    padding: 6px;
    border-radius: 4px;
}

.botao-flutuante {
    background-color: #ed9b0b;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
}

/* LOADING -------------------------------------- */

.mensagem {
    margin:auto;
}

.areaLoading {
    text-align: center;
    padding: 20px;
    margin: 0;
}

.icone {
    width: 32px;
}

.loading {
    animation: girar 1s linear infinite;
}

@keyframes girar {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* TELA POPUP */

#bloqueio {
    z-index: 2000;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

#telaPopUp {
    z-index: 2001;
    position: fixed;
    top: 50%;
    left: 50%;
    transform:translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    min-width: 420px;
    max-width: 650px;   
}

.titulo_divisoria {
    padding-bottom: 10px;;
    border-bottom: 2px solid #ed9b0b;
}

.erroNormal {
    color: #fff;
}

.erro {
    color: #b90f0f;
    font-weight: 600;
    text-align: center;
    width: 100%;
    display: block;
    margin: 10px 0 0 0;
}


.sucesso {
    color: green;
    font-weight: 600;
    text-align: center;
    width: 100%;
    display: block;
    margin: 10px 0 0 0;
}