:root{
  --bg:#eef3f7;
  --card:#ffffff;
  --texto:#243b53;
  --muted:#66788a;
  --borda:#d8e1ea;
  --primaria:#30475e;
  --azul:#2d8fd5;
  --azul-suave:#edf5fb;
  --verde:#2f9e44;
  --verde-suave:#edf8ef;
  --laranja:#d97706;
  --laranja-suave:#fff5e8;
  --sombra:0 4px 16px rgba(36, 59, 83, 0.08);
  --raio:10px;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--texto);
}

.acoes-aprovadas{
  padding:18px;
}

.acoes-aprovadas__wrap{
  max-width:1120px;
  margin:0 auto;
}

.acoes-aprovadas__header{
  margin-bottom:16px;
}

.acoes-aprovadas__header h1{
  margin:0 0 6px;
  font-size:28px;
  color:var(--primaria);
}

.acoes-aprovadas__header p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.lista-eventos{
  background:var(--card);
  border:1px solid var(--borda);
  border-radius:var(--raio);
  box-shadow:var(--sombra);
  overflow:hidden;
}

.lista-eventos__header{
  display:grid;
  grid-template-columns:2.2fr 1.2fr 1fr;
  gap:16px;
  background:var(--primaria);
  color:#fff;
  padding:16px 18px;
  font-weight:700;
}

.evento{
  display:grid;
  grid-template-columns:2.2fr 1.2fr 1fr;
  gap:16px;
  padding:18px;
  border-top:1px solid var(--borda);
  align-items:start;
  background:#fff;
}

.evento:first-child{
  border-top:none;
}

.evento--proximo{
  border-left:4px solid var(--laranja);
}

.evento__coluna{
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.evento__titulo{
  margin:0 0 10px 0;
  font-size:17px;
  line-height:1.35;
  color:var(--primaria);
}

.evento__badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  background:#f3f6f9;
  border:1px solid #d9e1e8;
  font-size:12px;
  color:#425466;
}

.tag svg{
  width:13px;
  height:13px;
  fill:#6b7c8f;
}

.evento__linha{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:14px;
  color:#425466;
  line-height:1.5;
}

.evento__linha + .evento__linha{
  margin-top:8px;
}

.evento__linha svg{
  width:15px;
  height:15px;
  flex:0 0 15px;
  margin-top:2px;
  fill:var(--azul);
}

.destaque-proximo{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-bottom:10px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:var(--laranja-suave);
  color:var(--laranja);
}

.status-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-bottom:10px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}

.status-badge--aprovada{
  background:var(--verde);
  color:#fff;
}

.evento__periodo{
  font-weight:700;
  color:var(--texto);
  margin-bottom:10px;
}

.evento__acoes{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
}

.botao-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  padding:10px 12px;
  border-radius:8px;
  font-size:14px;
  font-weight:700;
  transition:.2s ease;
}

.botao-link svg{
  width:15px;
  height:15px;
  fill:currentColor;
}

.botao-link--site{
  background:#eef5fb;
  color:#245b86;
  border:1px solid #cfe0ef;
}

.botao-link--site:hover{
  background:#dfeefa;
}

.vazio{
  padding:24px;
  text-align:center;
  color:var(--muted);
  background:#fff;
}

.acoes-aprovadas__cta{
  margin-top:18px;
  display:flex;
  justify-content:center;
}

.botao-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:280px;
  padding:14px 22px;
  border-radius:10px;
  background:var(--primaria);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  box-shadow:var(--sombra);
  transition:.2s ease;
}

.botao-cta:hover{
  background:#24384d;
}

.mensagem-erro{
  background:#fff4f4;
  border:1px solid #f1c0c0;
  color:#8a1f1f;
  padding:14px;
  border-radius:10px;
  margin-bottom:16px;
}

.oculto{
  display:none;
}

@media (max-width: 980px){
  .lista-eventos__header{
    display:none;
  }

  .evento{
    grid-template-columns:1fr;
    gap:14px;
  }

  .evento__acoes{
    flex-direction:row;
    flex-wrap:wrap;
  }

  .botao-cta{
    width:100%;
    min-width:0;
  }
}