.revista-destaque {
  padding: 60px 20px;
  background: #f2f2f2;
  text-align: center;
}

.revista-destaque-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.revista-capa {
  width: 250px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.revista-capa:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.revista-texto h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.revista-texto p {
  max-width: 500px;
  color: #555;
}
