/* Logo */
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
}

body {
  font-family: "Poppins", sans-serif;
  background:white;
  color: #1f2937;
  line-height: 1.6; 
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e3a8a;
  padding: 1rem 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 0.3rem;
}

.nav-links a:hover {
  background-color: #3b82f6;
}

/* Lista de Módulos */
.modulo-lista {
  list-style-type: none;
  padding: 0;
  margin-top: 2rem;
  width: 90%;
  margin:auto;
  margin-top:10px;
}

.modulo-lista li {
  background:rgb(236, 236, 236);
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.8s, box-shadow 0.8s;
}

.modulo-lista li:hover{
  transform: scale(1.05, 1.05);
  box-shadow: 3px 3px 1px #B0C4DE;
 
}

.modulo-lista li a {
  text-decoration: none;
  color: #1e3a8a;
  font-weight: bold;
}

.modulo-lista li a:hover {
  text-decoration: underline;
  color: #3b82f6;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 0.5rem;
  background-color: #1e3a8a;
  color: white;
  margin-top: 40%;
}

/* área dos módulos*/
.content {
 text-align: center;
 height: 100px;
 padding-top: 1rem;
 flex: 1;
}

.contentlinks{
  width: 800px;
  margin:auto;
  margin-bottom: 1rem;
  list-style: none;
  padding-left: 0.5rem;
  padding-bottom: 0.5rem;
  text-decoration:none;
  padding-left: 1.5rem;
  padding-bottom: 0.5rem;
  background:rgb(236, 236, 236);
  border-radius: 0.8rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 0.5rem;
  transition: transform 0.8s, box-shadow 0.8s;

}

.contentlinks:hover{
  transform: scale(1.05, 1.05);
  box-shadow: 3px 3px 1px #B0C4DE;
}


.contentlinks a{
  text-align: left;
  text-decoration:none;
  padding-left: 1.5rem;
  padding-bottom: 0.5rem;
  text-shadow: 0.5px 1px 1px #1e3a8a;;
}

.contentlinks a:hover {
  text-decoration: underline;
  color: #3b82f6;
}

/*conteúdo da página*/

.artigo{
  margin:auto;
  width: 80%;
  color:black;
  text-align: justify;
  text-indent:30px;
  margin-top: 10px;
  text-align:justify;
  background: #F0F8Ff;
  border-radius:20px;
  padding-top: 5px;
  padding-bottom:5px;
  box-shadow:5px 5px 1px #B0C4DE;
  
}
.text{
  color:black;
  text-align: justify;
  margin-top: 15px;
  margin-bottom:15px;
  padding-left:60px;
  text-decoration: solid;
  padding: 0px 20px 0px 20px;
}

.titles{
  margin-bottom: 15px;
  text-indent:0px;
  margin-top:20px;
  padding: 0px 20px 0px 20px;
}

.subtitles{
  font-size:19px;
  margin-top:10px;
  text-indent:0px;
  margin-bottom:10px;
  padding: 0px 20px 0px 20px;
}



/* Ajuste do símbolo de tópico nas listas */
ul {
  padding-left: 40px; 
}

ul li {
  list-style-position: inside; 
}
