body {
  font-family: "sans-serif";
  background-color: #84b6f4;
  color: #333;
  line-height: 1.6;
  padding: 40px;
}
h1, p, h2, li, a {
  font-family: sans-serif;
}
p {
  font-size: medium;
}
.card {
  background: #c4dafa; 
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.texto {
  display: inline-block;
  transition: all 1s ease;
  padding: 4px 6px;
  border-radius: 6px;
  font-weight: 500;
  margin-bottom: 10px;
}
.texto:hover {
  transform: scale(1.07);
  background-color: #4d82bc;
  color:#fff;
  font-weight: 600;
}
.lista {
list-style-type: disc;
padding-left: 25px;
margin-top: 8px;
}
.lista li {
  margin-bottom: 8px;
  color: #333;
  font-family: 'sans-serif';
}
.lista li::marker {
  color: #4d82bc;
}
.lista strong {
  font-weight: 600;
  color: #000;
}
.lista li.resaltado {
  display: list-item;
  transition: transform 1.03s ease, color 1.03s ease;
  cursor: pointer;
}
.lista li.resaltado:hover{
  transform: scale(1.1);
  color: #4d82bc;
}
a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}