* {
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background: #282828;
  color: #333;
}

.container {
  display: grid;
  gap: 5px;
  max-width: 900px;
  margin: 0 auto;
}

.linha1, .linha5 {
  background-color: #533d8b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  height: 70px;
}
.linha1 {
  border-radius: 7px 7px 0 0;
  font-size: 3rem;
}
.linha5 {
  border-radius: 0 0 7px 7px;
}

.celula {
  background-color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9px;
}

.imagem img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.titulo {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.info {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.4;
}

.descricao {
  font-size: 1rem;
  line-height: 1.5;
  text-align: justify;
}

.button, .privacidade {
  display: flex;
  justify-content: center;
}

.privacidade {
  font-size: 1rem;
}

.privacidade > a:nth-child(1) {
  text-decoration: none;
  color: #FFF;
}
