:root {
  --cor-primaria: #d7822a;
  --cor-secundaria: #e5e5e5;
}

* {
  font-family: 'Nunito', sans-serif;
  font-feature-settings: "liga" 0;
  font-size: 14px;
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #e8e8e8;
  background-color: #919191;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #FFAC3B #DFE9EB;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  width: 5px;
  width: 5px;
}
*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #DFE9EB;
}

*::-webkit-scrollbar-track:hover {
  background-color: #B8C0C2;
}

*::-webkit-scrollbar-track:active {
  background-color: #B8C0C2;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #FFAC3B;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #FFAC3B;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #ffac3b;
}

.simulaMobile 
{ 
	position: relative;
	background-color:#fff; 
	width: 100%;
	margin: auto;
	/*height: calc(100vh - 40px);*/
	height: 100vh;
	overflow: auto;
}

.centro { text-align: center; }

.escondido { display: none !important; }

main {
  background-color: #fff;
	position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%);
  border-radius: 7px;
  width: 100%; 
  max-width: 360px;
  height: calc(100dvh - 40px);
  overflow: auto;
  box-shadow: 0 0 7px rgba(0,0,0,0.5);
}

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

.loading-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.loading {
  border: 5px solid var(--cor-primaria);
  border-top: 5px solid transparent;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
}


@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Area de Menu -------------------------------------- */

.fundo-escuro {
  background-color: #e8e8e8;
  overflow: unset;
}

nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0; 
  padding: 20px;
  background-color: var(--cor-primaria);
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

nav > a {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 72px;
}

nav > a > p {
  margin: 0;
  font-size: 0.8rem;
}

.iconeBotoesMenu {
  font-size: 2rem;
}



















/* ---------------------------------------------- */
/* #telaBloqueio {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
}

#telaCarregando {
    background-color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 7px;
    text-align: center;
    box-shadow: 0 0 7px rgba(0,0,0,0.5);
} */