
        html {
            scroll-behavior: smooth;
        }
        
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            display: flex;
            flex-direction: column;
            height: 100vh;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            height: 10%;
            background: #333;
            color: white;
            padding: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .title_header {
            font-size: 100%;
            cursor: pointer;
            position: fixed;
        }

        .menu {
            position: fixed;
            left: -250px;
            top: 0;
            width: 250px;
            height: 100%;
            background: #444;
            transition: 0.3s;
            padding-top: 60px;
        }

        .menu ul {
            list-style: none;
        }

        .menu ul li {
            padding: 10px;
        }

        .menu ul li a {
            color: white;
            text-decoration: none;
        }

        .menu.open {
            left: 0;
        }

        main {
            margin-top: 50px;
            padding: 20px;
            flex-grow: 1;
        }

        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 70px; /* Altura fixa */
            background: #000;
            color: white;
            display: flex; /* Ativa o flex */
            justify-content: flex-start; /* <-- Alinha o conteúdo para o lado esquerdo */
            align-items: center; /* Centraliza na vertical */
            padding: 10px 20px;
            z-index: 1000; /* Garante que fique acima de outros elementos */
            font-size: 16px;
        }
        
        

        .playRadio1{
            font-size: 24px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }

        .logo {
            font-size: 100%;
            position: fixed;
            left: 10px;
            bottom: 100px;
            font-weight: bold;
            color: white;
            text-align: center; /* Centraliza o texto e a imagem */
        }
        
        .logo-img {
            width: 100px; /* Ajuste conforme necessário */
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px; /* Espaço entre a logo e o botão */
        }

        
        .nome-musica {
            font-size: 100%;
            color: white;
            margin-top: 20px; 
        }

        .texto-ajuda {
            height: 100%;
            width: 100%;
            color: #000; /* preto mais suave ainda */
            font-size: 1.5rem; /* aumenta mais o tamanho da letra */
            font-weight: 700; /* letra bem grossa */
            line-height: 1.6; /* espaçamento melhor entre linhas */
            text-align: center;
            padding: 20px;
            font-family: 'Poppins', 'Arial', sans-serif; /* fonte mais redonda e moderna */
            border-radius: 12px; /* deixa a caixa do texto com cantos arredondados */
            background-color: #f9f9f9; /* fundo clarinho pra destacar o texto */
        }
        

        .texto-conta {
            height: 100%;
            width: 100%;
            color: #000; /* tom de preto mais suave */
            font-size: 100%; /* tamanho de fonte um pouco maior */
            font-weight: 700; /* deixa o texto mais "fortinho" */
            line-height: 1,6; /* espaço entre as linhas */
            text-align: center; /* centraliza o texto */
            padding: 20px; /* espaço interno */
            font-family: 'Poppins', 'Arial', sans-serif; /* fonte mais redonda e moderna */
            border-radius: 12px; /* deixa a caixa do texto com cantos arredondados */
            background-color: #f9f9f9; /* fundo clarinho pra destacar o texto */
            
        }

        .destaque-verde {
            color: #28a745; /* verde bonito */
            font-weight: bold; /* deixa "Nome:", "CPF:" e "Conta:" mais fortes */
        }   
        
        /* .text-programação {
            white-space: nowrap; 
            overflow: hidden; 
        } */

        .tabela-programacao {
            width: 100%;
            border-collapse: collapse; /* Para não deixar linhas duplas entre as bordas das células */
            margin: 20px 0; /* Margem superior e inferior para dar espaçamento */
            font-family: Arial, sans-serif;
        }
        
        .tabela-programacao th,
        .tabela-programacao td {
            padding: 10px;
            text-align: left; /* Alinha o texto à esquerda */
            border: 1px solid #ddd; /* Bordas leves para as células */
        }
        
        .tabela-programacao th {
            background-color: #f2f2f2; /* Cor de fundo para os cabeçalhos */
            font-weight: bold;
        }
        
        .tabela-programacao tr:nth-child(even) {
            background-color: #f9f9f9; /* Cor de fundo alternada para as linhas */
        }
        
        .tabela-programacao tr:hover {
            background-color: #f1f1f1; /* Cor de fundo quando o mouse passar sobre a linha */
        }
        
        .obs-programçao {
            height: 100%;
            width: 100%;
            color: #000; /* preto mais suave ainda */
            font-size: 1.0rem; /* aumenta mais o tamanho da letra */
            font-weight: 700; /* letra bem grossa */
            line-height: 1.6; /* espaçamento melhor entre linhas */
            text-align: center;
            padding: 20px;
            font-family: 'Poppins', 'Arial', sans-serif; /* fonte mais redonda e moderna */
            border-radius: 12px; /* deixa a caixa do texto com cantos arredondados */
            background-color: #f9f9f9; /* fundo clarinho pra destacar o texto */
        }

        .social_heading-missão {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: 0.040em;
            color: #63C85D;
            text-align: center;
            margin: 40px 0 0 0;
        }

        .desc-text-missão{
            font-size: 100%;
            line-height: 22px;
            text-align: justify;
            margin: 0 0 10% 0;
        }