body {
  background: white none repeat scroll 0% 0%;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: Arial, sans-serif;
  color: #333333;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0px;
  line-height: 1.5;
  width: 90vw;
  max-width: 90vw;
  height: 90vw;
  text-align: justify;

}

@keyframes fadeInAnimation {
  0% {
    opacity: 0.8;
    transform: translateY(-0px); /* Move o elemento para cima */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Mantém o elemento na posição original */
  }
}

#video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  filter: invert(15%) hue-rotate(10deg) brightness(380%) contrast(90%) saturate(20%) blur(0.5px);
  animation: blurAnimation 3s linear infinite;
  transition: opacity 2s ease-in-out;
  transform: scaleX(-1);
  overflow: hidden;
}

.typed-out {
  overflow: hidden;
  border-right: .15em solid orange;
  font-size: 1.6rem;
  width: 0;
}

html,
body {
  scroll-behavior: smooth;
}

  
p {
  text-indent: 1em;   /* Define a tabulação no início de cada parágrafo */
  opacity: 0.5;
  transition: opacity 0.1s;
}


h2,
h3 {
  line-height: 3;
  /* Define o espaçamento entre linhas entre parágrafos */
}

body::-webkit-scrollbar {
  width: 20px;
  /* width of the entire scrollbar */
  height: 20px;
}

body::-webkit-scrollbar-track {
  background: rgba(100, 100, 100, 0.5);
  /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: rgb(5, 5, 70, 0.5);
  /* color of the scroll thumb */
  border-radius: 10px;
  /* roundness of the scroll thumb */
  border: 3px solid rgb(10, 10, 30, 0.8);
  /* creates padding around scroll thumb */
}

table {
  border-collapse: collapse;
  margin: auto;
  table-layout: fixed;
  width: auto;
  height: auto;
}

th,
td {
  padding: 5px;
  padding-left: 5px;
  padding-right: 5px;
  text-align: left;
  width: auto;
}

th {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  margin: auto;
  table-layout: fixed;
  width: auto;
  height: auto;
}

table th:first-child {
  font-weight: bold;
}

table tr:first-child {
  background-color: #085e637a;
  color: #000000;
}

tr:nth-child(even) {
  background-color: #b1b1b180;
}

tr:hover:nth-child(1n + 1) {
  background-color: #085F63;
  color: #fff;
}


#sidebar {
  position: fixed;
  top: 0;
  left: -80vh;
  /* Inicialmente, o menu fica parcialmente visível */
  height: 100%;
  width: 80vh;
  background-color: rgba(220 220, 220, 0.9);
  /* Adiciona transparência ao fundo */
  color: #4c32be;
  overflow-y: auto;
  transition: left 0.5s;
  /* Adiciona uma transição suave para o movimento do menu */
  z-index: 999;
  /* Garante que o menu fique sobreposto */
  padding-right: 20px;
  /* Adiciona uma margem à direita do menu */
  /* Estilização da barra de rolagem */
  scrollbar-width: thin;
  /* Largura fina para a barra de rolagem */
  scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.2);
  /* Cor da barra de rolagem e cor do fundo do scroll thumb */
  scroll-behavior: smooth;
}

#sidebar::-webkit-scrollbar {
  width: 12px;
  /* Largura da barra de rolagem */
}

#sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  /* Cor do scroll thumb */
  border-radius: 6px;
  /* Borda arredondada para o scroll thumb */
}

#menu a {
  color: darkblue;
  /* Cor do texto do link */
  text-decoration: none;
  /* Remove o sublinhado padrão do link */
}

#menu a:hover {
  color: orange;
  /* Cor do texto do link quando passa o mouse por cima */
}

#main {
  margin-left: 0;
  /* Remove a margem para evitar empurrar o conteúdo */
  padding-left: 10px;
  /* Adiciona um espaço à esquerda para o conteúdo não ficar atrás do menu */
}

#floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#floating-button button {
  background-color: #24374a;
  color: white;
  border: medium none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  outline: medium none;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

img {
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.5));
  align-content: center;
  display: block;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
  /* Define a largura máxima da imagem como 100% da largura do contêiner pai */
  height: auto;
  /* Mantém a proporção da imagem, ajustando automaticamente a altura conforme a largura é redimensionada */
  max-height: 100%;
  cursor: pointer;
}


.expanded-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  /* Fundo escuro */
  z-index: 9999;
  display: flex;
  justify-content: center;
  /* Centraliza horizontalmente */
  align-items: center;
  /* Centraliza verticalmente */
}

.expanded-image {
  max-width: 90vw;
  max-height: 90vh;
}

.align-center {
  float: center;
  margin-left: 10px;
  transform: translateX(-110%);
}

.slide-in {
  opacity: 0;
  transition: 1s;
}

.active {
  opacity: 1;
  transition: transform .5s;
  -webkit-transition: transform .5s;
  transform: translateX(0%);
}

h1 {
  font-size: 2.5rem;
  margin: 2rem auto;
  text-align: center;
  font-weight: bold;
  color: #333333;
  background-color: rgba(190, 190, 200, 0.5);
  padding: 10px
}

h2,
h3,
h4,
p {
  margin: 10px auto;
  display: block;
}

h4 {
  color: #333333;
}

div.blur {
  position: fixed;
  width: 100%;
  height: auto;
  left: 0px;
  top: 0px;
}

div.blur.bottom {
  top: auto;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 1000;
}

div.blur.top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

div.blur div {
  width: 100%;
  height: 1px;
}

div.blur div.itm_1 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_2 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_3 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_4 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_5 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_6 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_7 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_8 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_9 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_10 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_11 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_12 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_13 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_14 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_15 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_16 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_17 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_18 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_19 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_20 {
  background: #f8fafc none repeat scroll 0% 0%;
}

div.blur div.itm_21 {
  background: rgba(248, 250, 252, 0.99) none repeat scroll 0% 0%;
}

div.blur div.itm_22 {
  background: rgba(248, 250, 252, 0.976) none repeat scroll 0% 0%;
}

div.blur div.itm_23 {
  background: rgba(248, 250, 252, 0.96) none repeat scroll 0% 0%;
}

div.blur div.itm_24 {
  background: rgba(248, 250, 252, 0.95) none repeat scroll 0% 0%;
}

div.blur div.itm_25 {
  background: rgba(248, 250, 252, 0.937) none repeat scroll 0% 0%;
}

div.blur div.itm_26 {
  background: rgba(248, 250, 252, 0.925) none repeat scroll 0% 0%;
}

div.blur div.itm_27 {
  background: rgba(248, 250, 252, 0.914) none repeat scroll 0% 0%;
}

div.blur div.itm_28 {
  background: rgba(248, 250, 252, 0.9) none repeat scroll 0% 0%;
}

div.blur div.itm_29 {
  background: rgba(248, 250, 252, 0.886) none repeat scroll 0% 0%;
}

div.blur div.itm_30 {
  background: rgba(248, 250, 252, 0.875) none repeat scroll 0% 0%;
}

div.blur div.itm_31 {
  background: rgba(248, 250, 252, 0.863) none repeat scroll 0% 0%;
}

div.blur div.itm_32 {
  background: rgba(248, 250, 252, 0.85) none repeat scroll 0% 0%;
}

div.blur div.itm_33 {
  background: rgba(248, 250, 252, 0.84) none repeat scroll 0% 0%;
}

div.blur div.itm_34 {
  background: rgba(248, 250, 252, 0.824) none repeat scroll 0% 0%;
}

div.blur div.itm_35 {
  background: rgba(248, 250, 252, 0.81) none repeat scroll 0% 0%;
}

div.blur div.itm_36 {
  background: rgba(248, 250, 252, 0.8) none repeat scroll 0% 0%;
}

div.blur div.itm_37 {
  background: rgba(248, 250, 252, 0.79) none repeat scroll 0% 0%;
}

div.blur div.itm_38 {
  background: rgba(248, 250, 252, 0.776) none repeat scroll 0% 0%;
}

div.blur div.itm_39 {
  background: rgba(248, 250, 252, 0.76) none repeat scroll 0% 0%;
}

div.blur div.itm_40 {
  background: rgba(248, 250, 252, 0.75) none repeat scroll 0% 0%;
}

div.blur div.itm_41 {
  background: rgba(248, 250, 252, 0.737) none repeat scroll 0% 0%;
}

div.blur div.itm_42 {
  background: rgba(248, 250, 252, 0.725) none repeat scroll 0% 0%;
}

div.blur div.itm_43 {
  background: rgba(248, 250, 252, 0.714) none repeat scroll 0% 0%;
}

div.blur div.itm_44 {
  background: rgba(248, 250, 252, 0.7) none repeat scroll 0% 0%;
}

div.blur div.itm_45 {
  background: rgba(248, 250, 252, 0.686) none repeat scroll 0% 0%;
}

div.blur div.itm_46 {
  background: rgba(248, 250, 252, 0.675) none repeat scroll 0% 0%;
}

div.blur div.itm_47 {
  background: rgba(248, 250, 252, 0.663) none repeat scroll 0% 0%;
}

div.blur div.itm_48 {
  background: rgba(248, 250, 252, 0.65) none repeat scroll 0% 0%;
}

div.blur div.itm_49 {
  background: rgba(248, 250, 252, 0.64) none repeat scroll 0% 0%;
}

div.blur div.itm_50 {
  background: rgba(248, 250, 252, 0.624) none repeat scroll 0% 0%;
}

div.blur div.itm_51 {
  background: rgba(248, 250, 252, 0.61) none repeat scroll 0% 0%;
}

div.blur div.itm_52 {
  background: rgba(248, 250, 252, 0.6) none repeat scroll 0% 0%;
}

div.blur div.itm_53 {
  background: rgba(248, 250, 252, 0.59) none repeat scroll 0% 0%;
}

div.blur div.itm_54 {
  background: rgba(248, 250, 252, 0.576) none repeat scroll 0% 0%;
}

div.blur div.itm_55 {
  background: rgba(248, 250, 252, 0.56) none repeat scroll 0% 0%;
}

div.blur div.itm_56 {
  background: rgba(248, 250, 252, 0.55) none repeat scroll 0% 0%;
}

div.blur div.itm_57 {
  background: rgba(248, 250, 252, 0.537) none repeat scroll 0% 0%;
}

div.blur div.itm_58 {
  background: rgba(248, 250, 252, 0.525) none repeat scroll 0% 0%;
}

div.blur div.itm_59 {
  background: rgba(248, 250, 252, 0.514) none repeat scroll 0% 0%;
}

div.blur div.itm_60 {
  background: rgba(248, 250, 252, 0.5) none repeat scroll 0% 0%;
}

div.blur div.itm_61 {
  background: rgba(248, 250, 252, 0.486) none repeat scroll 0% 0%;
}

div.blur div.itm_62 {
  background: rgba(248, 250, 252, 0.475) none repeat scroll 0% 0%;
}

div.blur div.itm_63 {
  background: rgba(248, 250, 252, 0.463) none repeat scroll 0% 0%;
}

div.blur div.itm_64 {
  background: rgba(248, 250, 252, 0.45) none repeat scroll 0% 0%;
}

div.blur div.itm_65 {
  background: rgba(248, 250, 252, 0.44) none repeat scroll 0% 0%;
}

div.blur div.itm_66 {
  background: rgba(248, 250, 252, 0.424) none repeat scroll 0% 0%;
}

div.blur div.itm_67 {
  background: rgba(248, 250, 252, 0.41) none repeat scroll 0% 0%;
}

div.blur div.itm_68 {
  background: rgba(248, 250, 252, 0.4) none repeat scroll 0% 0%;
}

div.blur div.itm_69 {
  background: rgba(248, 250, 252, 0.39) none repeat scroll 0% 0%;
}

div.blur div.itm_70 {
  background: rgba(248, 250, 252, 0.376) none repeat scroll 0% 0%;
}

div.blur div.itm_71 {
  background: rgba(248, 250, 252, 0.36) none repeat scroll 0% 0%;
}

div.blur div.itm_72 {
  background: rgba(248, 250, 252, 0.35) none repeat scroll 0% 0%;
}

div.blur div.itm_73 {
  background: rgba(248, 250, 252, 0.337) none repeat scroll 0% 0%;
}

div.blur div.itm_74 {
  background: rgba(248, 250, 252, 0.325) none repeat scroll 0% 0%;
}

div.blur div.itm_75 {
  background: rgba(248, 250, 252, 0.314) none repeat scroll 0% 0%;
}

div.blur div.itm_76 {
  background: rgba(248, 250, 252, 0.3) none repeat scroll 0% 0%;
}

div.blur div.itm_77 {
  background: rgba(248, 250, 252, 0.286) none repeat scroll 0% 0%;
}

div.blur div.itm_78 {
  background: rgba(248, 250, 252, 0.275) none repeat scroll 0% 0%;
}

div.blur div.itm_79 {
  background: rgba(248, 250, 252, 0.263) none repeat scroll 0% 0%;
}

div.blur div.itm_80 {
  background: rgba(248, 250, 252, 0.25) none repeat scroll 0% 0%;
}

div.blur div.itm_81 {
  background: rgba(248, 250, 252, 0.24) none repeat scroll 0% 0%;
}

div.blur div.itm_82 {
  background: rgba(248, 250, 252, 0.224) none repeat scroll 0% 0%;
}

div.blur div.itm_83 {
  background: rgba(248, 250, 252, 0.21) none repeat scroll 0% 0%;
}

div.blur div.itm_84 {
  background: rgba(248, 250, 252, 0.2) none repeat scroll 0% 0%;
}

div.blur div.itm_85 {
  background: rgba(248, 250, 252, 0.19) none repeat scroll 0% 0%;
}

div.blur div.itm_86 {
  background: rgba(248, 250, 252, 0.176) none repeat scroll 0% 0%;
}

div.blur div.itm_87 {
  background: rgba(248, 250, 252, 0.16) none repeat scroll 0% 0%;
}

div.blur div.itm_88 {
  background: rgba(248, 250, 252, 0.15) none repeat scroll 0% 0%;
}

div.blur div.itm_89 {
  background: rgba(248, 250, 252, 0.137) none repeat scroll 0% 0%;
}

div.blur div.itm_90 {
  background: rgba(248, 250, 252, 0.125) none repeat scroll 0% 0%;
}

div.blur div.itm_91 {
  background: rgba(248, 250, 252, 0.114) none repeat scroll 0% 0%;
}

div.blur div.itm_92 {
  background: rgba(248, 250, 252, 0.1) none repeat scroll 0% 0%;
}

div.blur div.itm_93 {
  background: rgba(248, 250, 252, 0.086) none repeat scroll 0% 0%;
}

div.blur div.itm_94 {
  background: rgba(248, 250, 252, 0.075) none repeat scroll 0% 0%;
}

div.blur div.itm_95 {
  background: rgba(248, 250, 252, 0.063) none repeat scroll 0% 0%;
}

div.blur div.itm_96 {
  background: rgba(248, 250, 252, 0.05) none repeat scroll 0% 0%;
}

div.blur div.itm_97 {
  background: rgba(248, 250, 252, 0.04) none repeat scroll 0% 0%;
}

div.blur div.itm_98 {
  background: rgba(248, 250, 252, 0.024) none repeat scroll 0% 0%;
}

div.blur div.itm_99 {
  background: rgba(248, 250, 252, 0.01) none repeat scroll 0% 0%;
}

div.blur div.itm_100 {
  background: rgba(248, 250, 252, 0) none repeat scroll 0% 0%;
}

#Tabela1 {
  caption-side: top;
  border-spacing: 2px;
}