/** @format */

.programacao {
  position: fixed;
  top: 50%;
  left: -400px;
  transform: translateY(-50%);
  text-align: center;
  padding: 15px;
  z-index: 202020;
  width: 300px;
  height: auto;
  backdrop-filter: blur(15px);
  border-radius: 12px;
  background-color: #2e2e2e80;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #4e4e4e;
  transition: left 0.5s ease;
  display: none;
  overflow: hidden;
}


/* Centraliza a foto do radialista */
#fotoRadialista {
  display: block;
  margin: 0 auto;
}

.locutor-label {
  color: #cec000;
}

.programacao.show {
  display: block;
  left: 50%;
  transform: translate(-50%, -50%);
}

.programacao img {
  width: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.foto {
  width: 100px;
  height: auto;
  border-radius: 50%;
}

.nome,
.programa,
.horario {
  display: block;
  font-size: 14px;
  color: white;
  margin-bottom: 5px;
}

.seguir {
  position: fixed;
  right: 0;
  top: 59%;
  transform: translateY(-50%);
  width: 100px;
  height: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 5px 0px 0px 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101010;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.5s ease;
  transition: width 0.1s ease;
}

.seguir:hover {
  background-color: #13b44e;
  width: 120px;
}

.seguir a {
  font-size: 15px;
}

@media (max-width: 480px) {
  .programacao {
    width: 70%;
    top: 45%;
    left: -400px;
    transform: translateY(-50%);
  }
}
