/* Conteúdo principal */
.main-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

.page-title {
  font-size: 32px;
  margin: 20px 0;
  color: #005baa;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Player de TV */
.tv-section {
  background: linear-gradient(to bottom,  var(--dark-color), #3a0ca3);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

.tv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: white;
}

.live-badge {
  background-color: #e60000;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.live-badge i {
  margin-right: 5px;
}

.player-container {
  position: relative;
  width: 100%;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
}

#tv-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.player-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  color: white;
}

.volume-control {
  display: flex;
  align-items: center;
}

.volume-control i {
  margin-right: 10px;
  cursor: pointer;
}

input[type="range"] {
  width: 100px;
}

/* Programação */
.schedule {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.schedule h2 {
  color: #005baa;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f2f5;
  display: flex;
  align-items: center;
}

.schedule h2 i {
  margin-right: 10px;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f2f5;
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-time {
  font-weight: bold;
  color: #005baa;
  min-width: 80px;
}

.schedule-program {
  flex-grow: 1;
}

.current-program {
  background-color: #f0f7ff;
  border-radius: 6px;
  padding: 12px;
  margin: 0 -12px;
}
