/* LZ-COMPONENT: EMPRESA / LZ-EP02-ACTION-BUTTONS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap');

.lz-epacoes {
  font-family: 'Poppins', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.lz-epacoes__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #eef1f0;
  border-radius: 12px;
  padding: 14px 8px;
  text-decoration: none;
  color: #33413e;
  font-size: 12.5px;
  font-weight: 500;
}
.lz-epacoes__item:hover { border-color: #22c55e; color: #16a34a; }
.lz-epacoes__item--whatsapp { color: #16a34a; }

@media (max-width: 640px) {
  .lz-epacoes { grid-template-columns: repeat(3, 1fr); }
}
