@import url("https://fonts.googleapis.com/css2?family=Chivo+Mono:wght@300&family=Oswald&display=swap");
* {

  margin: 0;
  padding: 0;
  box-sizing: border-box;
} /* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #60fb9b #eee7e7;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

body,html{
  font-family: "Chivo Mono", monospace;
  font-family: "Oswald", sans-serif;
}
*::-webkit-scrollbar-track {
  background: #eee7e7;
}

*::-webkit-scrollbar-thumb {
  background-color: #60fb9b;
  border-radius: 3px;
  border: 3px none #fdf2f2;
}

:root {
  --white:#ffffff;
  --black:rgb(54, 54, 54);
  --background:#14ff6e ;
  --glow:#14ff6e40;
  --hover:#1c1717;
  --text-shadow:#ffffff;
}

a, li {
  text-decoration: none;
  list-style-type: none;
}

h1 {
  font-size: 16pt;
}

header {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0px;
  z-index: 99;
}

.test {
  width: 700px;
}

.navbar {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-around;
  height: 70px;
  margin: 20px 30px;
  max-width: 3330px;
  background: var(--glow);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16.3px);
  -webkit-backdrop-filter: blur(16.3px);
  border: 1px solid var(--glow);
  background: var(--glow);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16.3px);
  -webkit-backdrop-filter: blur(16.3px);
  border: 1px solid rgba(20, 255, 110, 0.3);
}
.navbar-logo {
  display: flex;
  align-items: center;
  align-content: center;
}
.navbar-logo li {
  display: inline-block;
}
.navbar-logo .ancora {
  text-shadow: 0px 0px 6px #000000;
}
.navbar-logo .ancora h1 {
  font-size: 13pt;
}
.navbar-logo .ancora a {
  color: var(--white);
  --black:black;
}
.navbar-logo .barco {
  padding: 0px 10px;
  position: absolute;
  top: 5px;
}
.navbar-lista {
  display: flex;
  align-items: center;
  align-content: center;
}
.navbar-lista li {
  transform: scale(1);
  transition: all ease 1s;
}
.navbar-lista li a {
  font-size: 15pt;
  font-weight: 600;
  padding: 0px 15px;
  color: var(--white);
  text-shadow: 0px 0px 6px var(--black);
}
.navbar-lista li a:hover {
  text-shadow: 3px 5px 13px var(--hover);
  color: var(--hover);
  transition: all ease 0.4s;
}
.navbar-lista li:hover {
  text-shadow: 3px 5px 13px var(--hover);
  color: var(--hover);
  transform: scale(1.1);
}

.seletor {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 30px;
  margin-top: 130px;
}

/* CSS */
button {
  z-index: 2;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #FAFBFC;
  border: 1px solid rgba(27, 31, 35, 0.15);
  border-radius: 6px;
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0, rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  box-sizing: border-box;
  color: #24292E;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  list-style: none;
  padding: 6px 16px;
  position: relative;
  transition: background-color 0.2s cubic-bezier(0.3, 0, 0.5, 1);
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  white-space: nowrap;
  word-wrap: break-word;
}

button:hover {
  background-color: #F3F4F6;
  text-decoration: none;
  transition-duration: 0.1s;
}

button:disabled {
  background-color: #FAFBFC;
  border-color: rgba(27, 31, 35, 0.15);
  color: #959DA5;
  cursor: default;
}

button:active {
  background-color: #EDEFF2;
  box-shadow: rgba(225, 228, 232, 0.2) 0 1px 0 inset;
  transition: none 0s;
}

button:focus {
  outline: 1px transparent;
}

button:before {
  display: none;
}

button:-webkit-details-marker {
  display: none;
}

/* Estilo para o overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F3F4F6; /* Cor preta com 50% de opacidade */
  z-index: 1; /* Definir um valor alto para garantir que o overlay fique acima de outros elementos */
}

.mostrar {
  /* Defina os estilos desejados para a classe "mostrar" aqui */
  /* Por exemplo: */
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

#restedaes {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

:-webkit-any(article, aside, nav, section) h1 {
  font-size: 1.5em;
  -webkit-margin-before: 0.83em;
          margin-block-start: 0.83em;
  -webkit-margin-after: 0.83em;
          margin-block-end: 0.83em;
} 
.main{
  margin: 0 auto;
  max-width:640px;
}
.main-title{
  margin-top: 105pt;
  text-align: center;
  font-size: 17pt;
}

.main dl{
  margin: 15px;
  text-indent: 0.4em;
}
.main dt{
  font-size: 1.2em;
  font-weight:600;
}.main dt li{
  list-style-type:disc ;
}
.main dd{
  text-indent: 1em;
  padding: 15px 0px;
  font-size: 1.2em;
}