main {
  background: linear-gradient(120deg, #1e40af, #06b6d4);
  min-height: calc(100vh - 100px);
  display: flex;
  justify-content: center;
  align-items:flex-start;
  padding: 40px 20px;
}

.transparencia {
  background: white;
  padding: 10px;
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.transparencia h1 {
  font-size: 30px;
  color: #1e40af;
}

.transparencia p {
  font-size: 30px;
  margin: 10px 0 30px;
  color: #475569;
}

.lista-transparencia {
  display: inline-block;
  flex-direction: column;
  gap: 15px;
}

.item {
  align-items: center;
  gap: 12px;
  background: #f1f5f9;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
  transition: 0.3s;
}

.item img {
  width: 24px;
}

.item:hover {
  transform: scale(1.05);
  background: #e2e8f0;
}

.botao-transparencia {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 42px 24px;
  background-color: #feffff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-family: sans-serif;
  transition: background-color 0.3s ease;
}

.botao-transparencia:hover {
  background-color: #ffffff;
}