/* ============================================================
   LZ-COMPONENT: HOME / LZ-C09-EVENTS-CITY
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.lz-eventos {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  padding: 48px 24px 56px;
  border-top: 1px solid #eef1f0;
}
.lz-eventos__inner { max-width: 1200px; margin: 0 auto; }

.lz-eventos__cabecalho {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.lz-eventos__titulo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #10231f;
  margin: 0;
}
.lz-eventos__ver-todos {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #16a34a;
  text-decoration: none;
}
.lz-eventos__ver-todos:hover { text-decoration: underline; }
.lz-eventos__subtitulo { color: #7c8b89; font-size: 13.5px; margin: 6px 0 26px; }

.lz-eventos__grade {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lz-eventos__card {
  border: 1px solid #eef1f0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.15s, transform 0.15s;
}
.lz-eventos__card:hover { box-shadow: 0 10px 24px rgba(16,35,31,0.1); transform: translateY(-2px); }

.lz-eventos__imagem {
  height: 110px;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 10px;
}
.lz-eventos__data {
  background: #ffffff;
  border-radius: 8px;
  padding: 4px 10px;
  text-align: center;
  line-height: 1.1;
}
.lz-eventos__data strong { display: block; font-size: 16px; color: #10231f; }
.lz-eventos__data small { font-size: 10px; color: #7c8b89; text-transform: uppercase; letter-spacing: 0.04em; }

.lz-eventos__conteudo { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.lz-eventos__nome { font-size: 14.5px; color: #10231f; line-height: 1.35; }
.lz-eventos__local {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: #7c8b89;
}

.lz-eventos__cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  border-radius: 14px;
  padding: 20px;
  text-decoration: none;
  background-color: #4c1d95;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.lz-eventos__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30,10,60,0.3), rgba(30,10,60,0.1));
}
.lz-eventos__cta > * { position: relative; z-index: 1; }
.lz-eventos__cta:hover { filter: brightness(1.08); }
.lz-eventos__cta-icone {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.lz-eventos__cta strong { color: #ffffff; font-size: 14px; }
.lz-eventos__cta-texto { color: rgba(255,255,255,0.85); font-size: 12px; margin-bottom: 8px; }
.lz-eventos__cta-botao {
  background: #ffffff;
  color: #4c1d95;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .lz-eventos__grade { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .lz-eventos__grade { grid-template-columns: 1fr; }
  .lz-eventos__cabecalho { flex-direction: column; align-items: flex-start; }
}
