.locutor-box {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.3); /* Fundo semi-transparente para melhor visibilidade */
  border-radius: 15px;
  padding: 12px 18px;
  width: fit-content;
  font-family: sans-serif;
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 50;
  backdrop-filter: blur(5px); /* Efeito de desfoque no fundo */
  border: 2px solid rgba(255,255,255,0.2);
}

.foto-borda {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid #ffffff; /* Borda branca */
  animation: pulsar 2s infinite;
  overflow: hidden;
  margin-right: 10px;
}

.foto-borda img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes pulsar {
  0% { 
    box-shadow: 0 0 0 0 rgba(255,255,255,0.6); 
    border-color: #ffffff;
  }
  70% { 
    box-shadow: 0 0 0 10px rgba(255,255,255,0); 
    border-color: #ffffff;
  }
  100% { 
    box-shadow: 0 0 0 0 rgba(255,255,255,0); 
    border-color: #ffffff;
  }
}

.info-locutor {
  display: flex;
  flex-direction: column;
}

.online-agora {
  font-size: 12px;
  color: #ffffff; /* Texto branco */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Sombra para melhor legibilidade */
}

.nome-locutor {
  font-weight: bold;
  font-size: 16px;
  color: #ffffff; /* Texto branco */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Sombra para melhor legibilidade */
}

.programa {
  font-size: 13px;
  color: #ffffff; /* Texto branco */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Sombra para melhor legibilidade */
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .locutor-box {
    top: 70px;
    right: 10px;
    padding: 8px 12px;
    z-index: 50;
  }
  
  .foto-borda {
    width: 50px;
    height: 50px;
    margin-right: 8px;
  }
  
  .online-agora {
    font-size: 11px;
  }
  
  .nome-locutor {
    font-size: 14px;
  }
  
  .programa {
    font-size: 12px;
  }
}

