        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
            overflow-x: hidden; /* Evita rolagem horizontal */
        }

        .header {
            background-color: #007bff; /* Cor azul para o cabeçalho */
            padding: 15px;
            display: flex;
            align-items: center;
            text-align: center; /* Centraliza o texto */
            color: white;
            position: relative;
        }

        .header img {
            max-width: 200px;
            display: inline-block;
            vertical-align: middle;
        }

        .header .menu {
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            left: 15px; /* Posiciona o ícone de menu à esquerda */
        }

        .header h2 {
            flex-grow: 1; /* Faz o h2 ocupar o espaço necessário */
            margin: 0;
        }



        a.tab:link {
            color: #888888;
            text-decoration: none;
            font-weight: normal;
        }

        a.tab:visited {
            color: #888888;
            text-decoration: none;
            font-weight: normal;
        }

        a.tab:hover {
            color: #00a4ff;
            text-decoration: none;
            font-weight: normal;
        }


        .tabs {
            display: flex;
            justify-content: space-around;
            background-color: #202022;
            padding: 5px;
            /*border-bottom: 1px solid #ddd;*/
            text-decoration: none;
        }

        .tabs .tab {
            font-size: 16px;
            color: #888;
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 10px 15px;
            border-radius: 5px;
            transition: background-color 0.3s, color 0.3s;
            text-decoration: none;
        }

        .tabs .tab i {
            margin-right: 5px; /* EspaÃ§o entre o Ã­cone e o texto */
        }

        .tabs .tab.active {
            color: blue;
            background-color: #e0e0e0; /* Cor de fundo da aba ativa */
        }

        .tabs .tab:hover {
            background-color: #ddd; /* Cor de fundo ao passar o mouse sobre a aba */
            text-decoration: none;
        }



        .program-list {
            margin: 10px;
            background-color: white;
            border-radius: 8px;
            padding: 10px;
        }

        .program {
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ddd;
            padding: 10px 0;
            margin-bottom: 10px;
            box-sizing: border-box;
            flex-wrap: nowrap; /* Mantém os elementos na horizontal */
        }

        .program:last-child {
            border-bottom: none;
            margin-bottom: 0; /* Remove margem do último programa */
        }

        .channel-logo-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-right: 10px;
        }

        .channel-logo {
            width: 60px;
            margin-bottom: 5px;
        }

        .channel-number {
            font-size: 16px;
            font-weight: bold;
            color: #000;
        }

        .program-image {
            width: 100px;
            height: auto;
            margin-right: 10px;
        }

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

        .channel {
            font-size: 12px;
            color: #888;
        }

        .title {
            font-size: 16px;
            font-weight: bold;
            margin: 5px 0;
        }

        .details {
            font-size: 14px;
            color: #888;
        }


        .header,
        .tabs,
        .program-list {
            max-width: 100%;
            box-sizing: border-box;
        }


        .progress-bar {
            height: 5px;
            background-color: #007bff;
            border-radius: 3px;
            margin-top: 10px;
        }


        @media (max-width: 600px) {
            .tabs .tab {
                font-size: 14px;
                padding: 8px 10px;
            }

            .program-image {
                width: 70px;
                height: auto;
                margin-right: 5px;
            }

            .channel-logo {
                width: 40px;
                margin-right: 5px;
            }

            .program-info .title {
                font-size: 14px; /* Ajusta o tamanho do título em dispositivos móveis */                
            }

            .program-info .details {
                font-size: 12px; /* Ajusta o tamanho dos detalhes em dispositivos móveis */                
            }
        }


        /* Canais populares */

        .popular-channels-container {
            position: relative;
            margin-top: -40px;
            display: flex;
            align-items: center;
        }

        .popular-channels {
            margin: 0 0;
            overflow-x: hidden;
            /* Oculta a barra de rolagem */
            white-space: nowrap;
            padding: 25px;
            scroll-behavior: smooth;
            /* Suaviza a rolagem */
            width: calc(100% - 80px);
            /* Ajusta para garantir espaço para as setas */
        }


        .channel-item {
            display: inline-block;
            text-align: center;
            margin-right: 10px;
            width: 100px;
            cursor: pointer;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .channel-item img {
            width: 100px;
            height: auto;
            border-radius: 4px;
        }

        .channel-item:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
        }

        .arrow-left,
        .arrow-right {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            cursor: pointer;
            background-color: rgba(255, 255, 255, 0.8);
            padding: 5px;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }

        .arrow-left {
            left: 10px;
        }

        .arrow-right {
            right: 10px;
        }

        .arrow-left:hover,
        .arrow-right:hover {
            background-color: white;
        }

        .header-popular-channels {
            margin: 10px;
            padding: 10px;

        }


        /* Footer */
    .footer {
        width: 100%;  
        background-color: #007bff;
        display: flex;
        justify-content: space-around;
        padding: 10px;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3); 
        box-sizing: border-box; 
    }

    .footer div {
        color: white;
        font-size: 12px;
        text-align: center;
        box-sizing: border-box; 
    }

    .footer i {
        display: block;
        font-size: 24px;
    }

    .like-counter {
        /*margin-left: 5px;
        font-size: 18px;*/
        font-weight: 700;
    }

    .footer a {
        color: white;
        text-decoration: none;
    }

    .footer a:hover {
        color: #d4d4d4;
    }



  


        /* Sinopse */

        .header-sinopse {
            background-color: #007bff;
            padding: 10px;
            color: white;
            text-align: center;
            font-size: 20px;
            position: relative;
        }

        .header-sinopse img {
            max-width: 200px;
            display: inline-block;
            vertical-align: middle;
        }

        .header-sinopse .fa-chevron-left {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            color: #ffffff;
        }

        .header-sinopse .fa-bars {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
        }

        .main-image-sinopse {
            position: relative;
        }

        .main-image-sinopse img {
            width: 100%;
            height: auto;
        }

        .main-info-sinopse {
            position: absolute;
            bottom: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px;
            width: 100%;
            box-sizing: border-box;
        }

        .main-info-sinopse h1 {
            margin: 0;
            font-size: 18px;
        }

        .main-info-sinopse p {
            margin: 5px 0 0;
            font-size: 14px;
        }

        .sub-info-sinopse {
            display: flex;
            justify-content: space-around;
            background-color: white;
            padding: 10px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .sub-info-sinopse div {
            text-align: center;
            font-size: 14px;
        }

        .channels-list-sinopse {
            padding: 10px;
            background-color: white;
            margin: 10px 0;
        }

        .channel-item-sinopse {
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ddd;
            padding: 10px 0;
        }

        .channel-item-sinopse img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .channel-info-sinopse {
            flex-grow: 1;
        }

        .channel-info-sinopse h2 {
            margin: 0;
            font-size: 16px;
        }

        .channel-info-sinopse p {
            margin: 5px 0 0;
            font-size: 14px;
            color: gray;
        }

        .tip, .live {
            background-color: #e30613;
            color: white;
            font-size: 12px;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 5px;
        }

        .live {
            background-color: red;
        }        