html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  color: #fff;
}

main {
  flex: 1;
  padding-top: 80px;
}

.custom-topbar {
  background: linear-gradient(90deg, #4b1e3d, #2d0f2a);
  padding: 10px 0;
}

.custom-topbar .navbar-brand img {
  max-height: 50px;
}

.custom-topbar .nav-link {
  color: #fff !important;
  margin: 0 10px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.custom-topbar .nav-link:hover {
  color: #f5a6d6 !important;
}

.player-container,
.card {
  background-color: rgba(0,0,0,0.75);
  color: #fff;
  border-radius: 10px;
}

.card-header {
  background: rgba(0,0,0,0.6);
  border: none;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.4);
}

.embed-container iframe,
.embed-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.anuncio-section h3 {
  color: #000;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.anuncio-section h3 i {
  color: #e63946;
  font-size: 1.5em;
}

.anuncio-box {
  width: 300px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.anuncio-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.25s ease;
  display: block;
}

.anuncio-box img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .anuncio-box { 
    width: 260px; 
    height: 104px; 
  }
}

@media (max-width: 767px) {
  .anuncio-box {
    width: 90%;
    height: auto;
    max-width: 420px;
    margin: 6px auto;
  }
  .anuncio-box img { 
    height: auto; 
    object-fit: contain; 
  }
}

.anuncio-swiper {
  width: 100%;
  padding: 10px 0;
}

.anuncio-swiper .swiper-wrapper {
  display: flex;
}

.anuncio-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: auto !important;
}

.anuncio-section {
  background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
  padding: 30px 0;
  margin-top: 40px;
  border-radius: 8px;
}

.banner {
  width: 100%;
  text-align: center;
  margin: 10px auto;
  padding: 5px;
}

.banner img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .banner img {
    max-height: 180px;   
  }
}

.modal-content {
  background: rgba(0, 0, 0, 0.85);
  border-radius: 12px;
  border: none;
}

.modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-title {
  font-weight: bold;
  color: #fff;
}

.modal-header .close {
  color: #fff;
  opacity: 1;
  font-size: 1.4rem;
}

.table-programacao {
  background: transparent;
  color: #fff;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.table-programacao th {
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: none;
  text-align: center;
}

.table-programacao td {
  background: rgba(255,255,255,0.05);
  border: none;
  text-align: center;
  border-radius: 6px;
  padding: 12px;
}

.programacao-table {
  background: #1c1c1c;
  border-radius: 8px;
  overflow: hidden;
  color: #f1f1f1;
}

.programacao-table thead {
  background: #6c63ff;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.programacao-table th,
.programacao-table td {
  padding: 12px 16px;
  border: none !important;
}

.programacao-table tbody tr {
  transition: background 0.2s ease;
}

.programacao-table tbody tr:nth-child(even) {
  background: #2a2a2a;
}

.programacao-table tbody tr:hover {
  background: #3a3a3a;
}

.programacao-table td:first-child {
  font-weight: bold;
  color: #00d4ff;
  text-align: center;
  width: 100px;
}

@media (max-width: 768px) {
  .programacao-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
  }

  .programacao-table thead {
    display: block;
    background: #6c63ff;
    position: sticky;
    top: 0;
    z-index: 5; 
  }

  .programacao-table thead tr {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
  }

  .programacao-table thead th {
    flex: 1;
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
  }

  .programacao-table tbody {
    display: block;
    width: 100%;
  }

  .programacao-table tr {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin-bottom: 10px;
    background: #1f1f1f;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  }

  .programacao-table td {
    flex: 1;
    text-align: center;
    font-size: 14px;
  }

  .programacao-table td:first-child {
    font-weight: bold;
    font-size: 15px;
    color: #00d4ff;
  }
}

.col-md-4 .bg-dark {
  background-color: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.col-md-4 .bg-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.8);
}

.col-md-4 h5,
.col-md-4 h6 {
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 8px;
}

.custom-footer h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.custom-footer hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 5px 0 15px;
}

.custom-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.custom-footer ul li {
  margin-bottom: 6px;
}

.custom-footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-footer ul li a:hover {
  color: #fff;
}

.whatsapp-icon {
  font-size: 22px;
  color: #25D366;
  margin-right: 6px;
}

.social-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-box.facebook {
  color: #1877F2;
}

.social-box.instagram {
  color: #E1306C;
}

.social-box.twitter {
  color: #1DA1F2;
}

.social-box.youtube {
  color: #FF0000;
}

.social-box.tiktok {
  color: #000;
}

.social-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.btn-app {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #ff5722;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-app:hover {
  background-color: #e64a19;
}

.btn-danger.btn-sm {
  border-radius: 30px;
  padding: 8px 16px;
  font-weight: bold;
}

.app-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  max-width: 220px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.app-card:hover {
  transform: scale(1.05);
  background: #f8f9fa;
}

.app-card i {
  font-size: 2.4rem;
  color: #dc3545;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
}

.whatsapp-float i {
  margin-top: 15px;
}

body.has-radio-top .radio-player-top {
  display: block;
  margin: 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
}

body.has-radio-bottom .radio-player-bottom {
  position: fixed !important;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #111;
  z-index: 9999;
}

body.has-radio-bottom {
  padding-bottom: 95px !important;
}

.playerPosition {
  position: relative !important;
  height: auto;
  overflow: visible !important;
  background: #111;
  padding: 10px 0;
}

.playerPosition .container,
.playerPosition .containerPlayer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.playerPosition .imgPlayerCapa,
.playerPosition .statusStream,
.playerPosition .animation {
  height: 80px !important;
}

@media (max-width: 768px) {
  .playerPosition .linksPlayrs,
  .playerPosition .animation {
    display: none !important;
  }
}

.nh-player-wrapper * {
  all: revert !important;
  box-sizing: border-box !important;
}

.nh-player-wrapper {
  width: 100%;
  position: relative;
  z-index: 9999;
  display: block;
  all: revert !important;
}

body.has-radio-top {
  padding-top: 120px !important;
}

.radio-player-top {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.slider-topo .swiper {
  width: 100%;
  height: 280px;
}

.site-description {
  font-size: 1.1rem;
  color: #f1f1f1;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
  margin-bottom: 15px;
  max-width: 850px;
}

.radio-player-container {
  width: 100vw;
  margin: 0;
  padding: 0;
  border: none;
  overflow: visible;
  line-height: 0;
  background: transparent !important;
  position: relative;
  z-index: 10;
}

.radio-player-container::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(to bottom, rgba(59,10,69,0.95), transparent);
  z-index: 9;
}

.radio-player-container iframe {
  width: 100%;
  height: 100px;
  display: block;
  border: none;
  background: transparent !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 768px) {
  .radio-player-container iframe {
    height: 80px;
  }
}

.custom-navbar {
  background-color: #3b0a45 !important;
  margin: 0 !important;
  border: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
  position: relative;
  z-index: 1040;
}

.navbar-toggler {
  border: none;
  outline: none;
  position: relative;
  z-index: 1050;
}

.navbar-collapse {
  z-index: 1045;
  background-color: #3b0a45;
}

.radio-player-container + .custom-navbar {
  margin-top: 0 !important;
}

body > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.card {
  background-color: #f8f9fa;
  border: none;
}

.ratio iframe {
  border: none !important;
  border-radius: 0 !important;
  display: block;
}

.noticias-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.noticia-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  transition: all .2s ease;
}

.noticia-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.noticia-list-img {
  width: 140px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.noticia-resumo {
  font-size: .95rem;
  color: #333;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .noticia-list-item { flex-direction: column; }
  .noticia-list-img { width: 100%; height: auto; }
}

body.dark-mode .card {
  background-color: #1e1e2f;
  color: #e2e2e2;
}

body.dark-mode .noticia-list-item {
  background-color: #26263b;
}

body.dark-mode .noticia-resumo {
  color: #ccc;
}

body.dark-mode .btn-danger {
  background-color: #3a3a50;
  border: none;
  color: #fff;
}

.noticias-section {
  padding: 10px 0;
}

.noticias-swiper .noticia-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.noticias-swiper .noticia-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #eee;
}

.noticias-swiper .noticia-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.noticias-swiper .noticia-meta {
  font-size: .8rem;
  background: #a23ac0;
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  display: inline-block;
}

.noticias-swiper .noticia-titulo {
  font-weight: 700;
  color: #333;
  font-size: 1rem;
}

.noticias-section .noticias-pagination .swiper-pagination-bullet {
  background: #a23ac0;
  opacity: .85;
}

.slider-topo {
  width: 100%;
  max-width: 1280px;
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  margin: 0 auto;
  padding: 0;
  position: relative;
  top: -25px;
  z-index: 1;
}

.slider-topo .slider-swiper {
  width: 100%;
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .slider-topo .slider-swiper { height: 280px; }
}

@media (max-width: 768px) {
  .slider-topo .slider-swiper { height: 200px; top: 0; }
}

.slider-topo .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.slider-topo .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .4s ease;
}

.slider-topo .swiper-slide img:hover {
  transform: scale(1.02);
}

.slider-topo .swiper-pagination {
  bottom: 10px !important;
}

.slider-topo .swiper-pagination-bullet {
  background: #007bff;
  opacity: 0.8;
}

.slider-topo .swiper-pagination-bullet-active {
  opacity: 1;
}

.btn.btn-danger.btn-sm {
  border-radius: 30px;
  padding: 8px 16px;
  font-weight: bold;
}

.anuncio-section.card,
.noticias-section.card,
.chat-section.card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.anuncio-section .section-title,
.noticias-section .section-title,
.chat-section .card-header {
  background: none !important;
  border: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 10px !important;
  color: white !important;
  font-weight: 700 !important;
  font-size: 1.6rem !important;
}

.anuncio-section .section-title i,
.noticias-section .section-title i,
.chat-section .card-header i {
  font-size: 1.4rem !important;
  margin-right: 8px;
}

.vjs-tech,
    .video-js {
  border-radius: 14px;
  overflow: hidden;
}

.vjs-control-bar {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,0.1);
  height: 40px;
  padding: 0 8px;
  border-radius: 0 0 14px 14px;
}

.vjs-big-play-button {
  background: rgba(255,255,255,0.85);
  border: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 2.5rem;
  color: #111;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.live-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 9;
  background: #e50914;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.live-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.offline-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 15px;
  z-index: 10;
}

.d-none {
  display: none;
}

.tv-channel-thumb {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 6px;
}

.tv-main-title h2,
    .tv-channels-title h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: #111;
}

.tv-main-icon,
    .tv-channels-icon {
  font-size: 1.4rem;
  color: #e53935;
}

.section-title,
.chat-section .card-header,
.tv-main-title h2,
.tv-channels-title h3 {
  text-align: left !important;
  color: #000 !important;
  font-weight: 700 !important;
  font-size: 1.6rem !important;
  margin-bottom: 15px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  text-shadow: none !important;
}

.section-title i,
.chat-section .card-header i,
.tv-main-icon,
.tv-channels-icon {
  font-size: 1.5rem !important;
  color: #d40000 !important;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .noticias-swiper .swiper-slide {
    width: 85% !important;
  }
}

.noticias-swiper .noticia-descricao {
  font-size: .92rem;
  color: #555;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(1.3em * 5 + 4px);
}

.anuncio-section > h3,
.noticias-section > h3 {
  color: #000 !important;
}

.section-title i {
  font-size: 1.5rem !important;
  color: #d40000 !important;
  margin-right: 8px;
}

.anuncio-section h3,
.noticias-section h3 {
  justify-content: flex-start !important;
}

.noticias-swiper {
  width: 100%;
  padding-bottom: 30px;
  overflow: hidden;
}

.noticias-swiper .swiper-wrapper {
  display: flex;
  max-width: 100% !important;
}

.noticias-swiper .swiper-slide {
  display: flex;
  height: auto;
  width: 320px !important;
  flex-shrink: 0 !important;
}

@media (max-width: 768px) {
  .noticias-swiper .swiper-slide {
    width: 90% !important;
  }
}

.noticias-swiper .noticia-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.section-title {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #000 !important;
  text-shadow: none !important;
  margin-bottom: 15px !important;
  text-align: left !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}

.noticias-section .section-title,
.anuncio-section .section-title {
  color: #000 !important;
}

.site-boxed > section,
.site-boxed > .player-section,
.site-boxed > .chat-section,
.site-boxed > .noticias-section,
.site-boxed > .anuncio-section {
  margin-bottom: 24px;
}

.site-boxed > section:last-child,
.site-boxed > .chat-section:last-child,
.site-boxed > .noticias-section:last-child,
.site-boxed > .anuncio-section:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
    .site-boxed {
        margin: 40px 16px 60px 16px !important;
        padding: 30px 22px 35px !important;
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    .site-boxed {
        margin: 30px 10px 45px 10px !important;
        padding: 24px 16px 30px !important;
        border-radius: 16px;
        box-shadow: 0 14px 40px rgba(0,0,0,0.4);
    }
}

@media (max-width: 480px) {
    .site-boxed {
        margin: 22px 8px 35px 8px !important;
        padding: 18px 12px 26px !important;
        border-radius: 14px;
    }
}

.site-boxed main {
  padding-top: 10px;
}

.site-boxed .chat-section.card,
.site-boxed .noticias-section.card,
.site-boxed .anuncio-section.card {
  background: #f7f7fb !important;
  border-radius: 16px !important;
  border: 1px solid rgba(0,0,0,0.04) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10) !important;
  padding: 20px 20px 18px !important;
  margin-bottom: 24px !important;
}

.site-boxed .player-section {
  background: #fdfdfd;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  padding: 20px 20px 18px;
  margin-bottom: 24px;
}

.site-boxed .slider-topo {
  margin-bottom: 20px;
}

.site-boxed .section-title,
.site-boxed .tv-main-title h2,
.site-boxed .tv-channels-title h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin-bottom: 12px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.site-boxed .section-title i,
.site-boxed .tv-main-icon,
.site-boxed .tv-channels-icon {
  font-size: 1.4rem !important;
  color: #c2185b !important;
}

@media (max-width: 768px) {
    .site-boxed .chat-section.card,
    .site-boxed .noticias-section.card,
    .site-boxed .anuncio-section.card,
    .site-boxed .player-section {
        box-shadow: 0 6px 16px rgba(0,0,0,0.18) !important;
        padding: 16px 14px 14px !important;
        border-radius: 14px !important;
        margin-bottom: 18px !important;
    }

    .site-boxed .section-title,
    .site-boxed .tv-main-title h2,
    .site-boxed .tv-channels-title h3 {
        font-size: 1.15rem !important;
        margin-bottom: 10px !important;
    }
}

.site-boxed::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #9b2bbf, #ff0066, #ffb300);
  display: none !important;
}

.player-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  position: relative;
}

.player-wrapper video,
.player-wrapper .video-js {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .player-wrapper video,
  .player-wrapper .video-js {
    height: 340px;
  }
}

@media (max-width: 768px) {
  .player-wrapper video,
  .player-wrapper .video-js {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .player-wrapper video,
  .player-wrapper .video-js {
    height: 220px;
  }
}

#liveBadge {
  background: #e50914;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 9;
  font-size: 13px;
}

#liveBadge .live-badge-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

#offlineOverlay {
  background: rgba(0,0,0,0.75);
  font-size: 20px;
  z-index: 10;
}

#playlistContainer {
  margin-top: 15px;
}

#playlistContainer .col-6,
#playlistContainer .col-md-3 {
  padding: 6px;
}

.tv-channel-card {
  background: #fafafa;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all .2s ease;
  height: 100%;
  border: 2px solid transparent;
}

.tv-channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}

.tv-channel-card.active {
  border: 2px solid #7a2cff;
  box-shadow: 0 0 14px rgba(122,44,255,0.4);
}

.tv-channel-thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
}

.tv-channel-title {
  font-weight: 700;
  font-size: 14px;
  color: #222;
  margin-bottom: 2px;
  margin-top: 6px;
}

.tv-channel-desc {
  font-size: 11px;
  color: #666;
  margin-bottom: 4px;
  height: 28px;
  overflow: hidden;
}

.tv-channel-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 20px;
  font-size: 10px;
  background: #7a2cff;
  color: #fff;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .tv-channel-thumb img {
    height: 80px;
  }
}

@media (max-width: 575.98px) {
  .visits-item {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .visits-separator {
    display: none;
  }
}

.apps-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  border: 1px solid #f1f1f1;
  margin-bottom: 20px;
}

.apps-card-title {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #333;
}

.apps-card-bar {
  width: 6px;
  height: 22px;
  background: #c800ff;
  border-radius: 10px;
  display: inline-block;
}

.apps-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  background: #fafafa;
  text-decoration: none;
  color: #222;
  margin-bottom: 12px;
  border: 1px solid #eee;
  transition: 0.2s;
}

.apps-item:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.apps-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #444;
}

.apps-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.apps-label {
  font-size: 12px;
  color: #777;
}

.apps-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.visits-item {
  background: #fafafa;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #eee;
}

.visits-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  color: #555;
  margin: 0 10px;
}

.visits-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  align-items: center;
  min-width: 60px;
}

.visits-separator {
  width: 1px;
  height: 40px;
  background: #ddd;
  flex-shrink: 0;
  margin: 0 10px;
  border-radius: 20px;
}

.player-full-boxed-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.player-section.player-full-boxed .container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.player-section.player-full-boxed .player-wrapper {
  border-radius: 0 !important;
}

.site-fullwidth {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.site-fullwidth main.container {
  max-width: 100% !important;
  padding-left: 15px;
  padding-right: 15px;
}

body.layout-full {
  background: url('../bg.jpg') no-repeat center top fixed;
}

.site-container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}

body.layout-full .site-container {
  padding: 0 !important;
}

body.layout-full .player-section {
  max-width: 1350px;
  margin: 15px auto;
}

body.layout-full .card,
body.layout-full section {
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
}

.player-section {
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 25px;
  max-width: 1350px;
  margin: 0 auto;
  width: 100%;
}

.player-wrapper video {
  width: 100% !important;
  height: auto !important;
  border-radius: 14px;
}

.layout-full .player-section {
  padding-left: 10px;
  padding-right: 10px;
}

.visits-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}

.visits-box {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.visits-icon i {
  font-size: 20px;
  color: #555;
}

.visits-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.visits-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  white-space: nowrap;
}

.visits-label {
  font-size: 0.8rem;
  color: #777;
}

.visits-divider {
  width: 1px;
  height: 32px;
  background: #e5e5e5;
}

.footer-social-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-icons {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-social-line {
    justify-content: center;
    text-align: center;
  }

  .footer-social-icons {
    justify-content: center;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1350px;   
  }
}

.site-boxed {
  position: relative;
  max-width: 1350px;
  width: 100%;
  margin: 60px auto 80px auto !important;
  padding: 40px 30px 45px !important;
  background: rgba(255,255,255,0.98);
  border-radius: 0 !important;
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  box-sizing: border-box;
  z-index: 5;
  margin-bottom: 0 !important;
  padding-bottom: 35px !important;
}

body {
  background: url('../bg.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden !important;
}

.custom-footer {
  background-color: transparent;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
  margin-top: 0 !important;
  border-radius: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.custom-footer .footer-inner {
  max-width: 1350px;
  margin: 0 auto;
  padding: 30px 0 !important;
  background-color: #2c2c2c;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
}
/* REMOVER ESPAÇO ENTRE BOXED E FOOTER */
.site-boxed {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* FOOTER ENCOSTADO E SEM ESPAÇO EXTRA */
.custom-footer {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
}

/* CONTROLAR SOMENTE O ESPAÇO INTERNO DO CONTEÚDO */
.custom-footer .footer-inner {
    margin: 0 auto !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 1350px !important;
}
