.secao-programacao {
  background: #3c0e34;
}

.programacao-alternador-arenas {
    padding-top: 3em;
    padding-bottom: 3em;
    justify-self: center;
}

.arena-alternador-dias {
  justify-self: center;
}
/* ========================================
   BOTÕES ARENAS E DIAS
======================================== */

.btn-arena,
.btn-dia {
  padding: 10px 18px;
  border-radius: 10px;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* ========================================
   CONTROLE DE VISIBILIDADE (JS)
======================================== */

.arena-item {
  display: none;
}

.arena-item.active {
  display: block;
}

.dia-conteudo {
  display: none;
}

.dia-conteudo.active {
  display: block;
}

.btn-arena:hover,
.btn-dia:hover {
  background: #ffffff15;
}

.btn-arena.active,
.btn-dia.active {
  background-color: #EB5C2E;
  border-color: #EB5C2E;
  color: #ffffff;
}

/* ========================================
   TÍTULOS PRINCIPAIS
======================================== */

.arena-header h2 {
  font-family: "Bebas-Nativo", sans-serif;
  color: #ffffff;
}

.titulo-palestra {
  font-family: "Bebas-Nativo", sans-serif;
  font-size: 1.8rem;
  color: #ffffff;
  letter-spacing: 1px;
}

.bloco-titulo {
  font-family: "Bebas-Nativo", sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 1em;
}

/* Horário */
.horario-palestra {
  font-family: "Bebas-Nativo", sans-serif;
  font-size: 1.6rem;
  color: #ffffff;
}

/* ========================================
   NOMES E CARGOS
======================================== */

.nome-pessoa {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 2px;
}

.pessoa-cargo {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #ffffff;
  opacity: 0.85;
}

/* ========================================
   IMAGENS REDONDAS
======================================== */

.pessoa-imagem-wrap,
.palestrante-imagem-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #ffffff;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.pessoa-imagem-wrap:hover,
.palestrante-imagem-wrap:hover {
  transform: scale(1.05);
}

/* ========================================
   EVENTO BOX
======================================== */

.evento-box {
  border-top: 1px solid #ffffff40;
  padding: 2rem 0;
}

.divisor-vertical {
  width: 2px;
  height: 140px;
  background: #ffffff30;
  margin-top: 2rem;
}

/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 768px) {

  .titulo-palestra {
    font-size: 1.4rem;
    text-align: center;
  }

  .horario-palestra {
    font-size: 1.3rem;
    text-align: center;
    display: block;
    margin-bottom: .5rem;
  }

  .bloco-titulo {
    text-align: center;
  }

  .pessoa-imagem-wrap,
  .palestrante-imagem-wrap {
    width: 90px;
    height: 90px;
  }

}