/* ===== Abertura de Evento - Mais Protege ===== */
.mp-evento {
  --mp-azul: #0b63e5;
  --mp-azul-claro: #e8f1ff;
  --mp-texto: #48586a;
}

.mp-title {
  font-weight: 800;
  color: #0b63e5;
  margin-bottom: 8px;
}

.mp-desc {
  max-width: 560px;
  color: var(--mp-texto);
}

.mp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.mp-tab {
  border: 1px solid #d1d9e6;
  background: #fff;
  border-radius: 999px;
  padding: 6px 18px;
  font-weight: 600;
  color: #546270;
  cursor: pointer;
  transition: .2s;
}
.mp-tab.is-active {
  background: var(--mp-azul);
  border-color: var(--mp-azul);
  color: #fff;
  box-shadow: 0 6px 12px rgba(11, 99, 229, .15);
}

.mp-card {
  background: #fff;
  border: 1px solid #e1e7f0;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,.03);
  padding: 22px 26px;
}

.mp-pane {
  display: none;
  gap: 26px;
  align-items: flex-start;
}
.mp-pane.is-active {
  display: flex;
}

.mp-pane-left {
  max-width: 220px;
}
.mp-icon {
  width: 48px;
  height: 48px;
  background: #f0f5ff;
  border-radius: 14px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.mp-pane-left h3 {
  font-weight: 700;
  margin-bottom: 6px;
  color: #113a63;
}
.mp-pane-left p {
  color: var(--mp-texto);
  font-size: .92rem;
}

.mp-pane-right h4 {
  font-weight: 700;
  margin-bottom: 6px;
  color: #113a63;
}
.mp-pane-right ul {
  margin: 0;
  padding-left: 16px;
  color: var(--mp-texto);
}
.mp-pane-right li {
  margin-bottom: 4px;
}
.mp-note {
  font-size: .8rem;
  color: #7a8695;
  margin-top: 8px;
}

/* col direita */
.mp-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mp-btn {
  display: block;
  text-align: center;
  padding: 12px 10px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
}
.mp-btn-primary {
  background: #0b63e5;
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 99, 229, .3);
}
.mp-btn-primary:hover { filter: brightness(1.08); }

.mp-btn-outline {
  border: 1px solid #d1d9e6;
  background: #fff;
  color: #12334f;
}
.mp-btn-outline:hover {
  border-color: #0b63e5;
  color: #0b63e5;
}

.mp-info {
  background: #f5f7fb;
  border-radius: 14px;
  padding: 20px 22px;
  border: 1px solid #e2e7f0;
}
.mp-info h4 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #12334f;
}
.mp-info ul {
  margin: 0;
  padding-left: 18px;
}
.mp-info li {
  margin-bottom: 4px;
  color: #435266;
}

/* responsivo */
@media (max-width: 991px){
  .mp-pane {flex-direction: column;}
  .mp-actions {flex-direction: row; flex-wrap: wrap;}
}
@media (max-width: 575px){
  .mp-actions {flex-direction: column;}
}
