* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: 'Courier New', Courier, monospace;
  overflow: auto;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}


.solida {
  width: 100%;
  border-top: 3px solid black;
  margin: 50px 0px;
}

.tracejada {
  width: 100%;
  border: none;
  border-top: 3px dashed black;
  margin: 50px 0;
}

.text h1 {
  font-size: 40px;
  padding: 20px 0px;
  margin-bottom: 10px;
}

.text h2 {
  font-size: 30px;
  padding: 20px 0px;
  margin-bottom: 10px;
}

.text p {
  text-indent: 2em;
  text-align: justify;
  font-size: 28px;
  margin-bottom: 50px;
}

.text ul {
  list-style-type: none;
  padding-left: 0;
  font-size: 25px;
  padding-bottom: 50px;
  /* Ajusta o alinhamento */
}

.text li::before {
  content: "- ";
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0px 150px;
  padding: 50px 50px;
  background-color: rgb(222, 222, 222);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.imagem {
  position: relative;
  width: 100%;
  /* Garante que a div ocupa todo o espaço disponível */
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

.imagem img {
  width: 100%;
  display: block;
  position: absolute;
  /* Garante que ambas as imagens fiquem sobrepostas corretamente */
  top: 0;
  left: 0;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.imagem .normal {
  position: relative;
  /* Mantém a imagem original visível */
}

.imagem .hover {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.imagem:hover .hover {
  opacity: 1;
}