:root {
    /* Cores de Texto e Fundo Geral */
    --cor-texto-geral: #ffffff;
    --cor-fundo-geral: rgb(37, 37, 37);
    /* Configurações do Metal (Chassi do Reprodutor) */
    --metal-gradiente-inicio: #444444;
    --metal-gradiente-meio: #2a2a2a;
    --metal-gradiente-fim: #1a1a1a;
    --metal-brilho: rgba(255, 255, 255, 0.05);
    /* Configurações dos Botões (Profundidade 3D) */
    --btn-metal-topo: #6e6e6e;
    --btn-metal-meio: #444444;
    --btn-metal-fim: #222222;
    --btn-texto: #000000;
    --btn-sombra-externa: rgba(0, 0, 0, 0.7);
    /* Elementos de Interface */
    --cor-container-marquee: #141414;
    --cor-texto-rodape: #00b7ff;
    --cor-fundo-popup: rgba(100, 100, 100, 0.9);
    --cor-borda-popup: #878787;
    /* Variáveis Originais Mantidas */
    --cor-texto-tempo-musica: #fff200;
    --cor-texto-titulo: #ffc400;
    --cor-botao-hover: rgba(0, 183, 255, 0.5);
    --cor-botao-active: rgba(255, 255, 0, 0.5);
    /* Amarelo brilhante para o tema escuro */
    --cor-ano-rodape: rgb(255, 250, 0);
}

/* --- SOBRECARGA PARA O TEMA CLARO --- */
body.tema-claro {
    --cor-texto-geral: #1e1e1e;
    --cor-fundo-geral: #e6e6e6;
    /* Metal versão Alumínio/Prata */
    --metal-gradiente-inicio: #fcfcfc;
    --metal-gradiente-meio: #d9d9d9;
    --metal-gradiente-fim: #b5b5b5;
    --metal-brilho: rgba(255, 255, 255, 0.8);
    /* Botões Claros com profundidade */
    --btn-metal-topo: #ffffff;
    --btn-metal-meio: #e0e0e0;
    --btn-metal-fim: #c0c0c0;
    --btn-texto: #333333;
    --btn-sombra-externa: rgba(0, 0, 0, 0.2);
    --cor-container-marquee: #f0f0f0;
    --cor-texto-rodape: #0064b4;
    --cor-botao-hover: rgba(0, 183, 255, 0.5);
    --cor-fundo-popup: rgba(245, 245, 245, 0.95);
    --cor-borda-popup: #cccccc;
    --cor-texto-tempo-musica: rgb(255, 196, 0);
    /* Amarelo "fechado"/escuro para o tema claro */
    --cor-ano-rodape: rgb(180, 140, 0);
}

/*Fonte Customizada*/
@font-face {
    font-family: 'digital-sans';
    font-display: auto;
    src: url('../src/fonts/DigitalSans.ttf') format('truetype');
}

@font-face {
    font-family: 'ds-digital';
    font-display: auto;
    src: url('../src/fonts/DS-DIGI.ttf') format('truetype');
}

@font-face {
    font-family: 'ds-digital-bold';
    font-display: auto;
    src: url('../src/fonts/DS-DIGIB.ttf') format('truetype');
}

@font-face {
    font-family: 'ds-digital-italic';
    font-display: auto;
    src: url('../src/fonts/DS-DIGII.ttf') format('truetype');
}

@font-face {
    font-family: 'ds-digital-tached';
    font-display: auto;
    src: url('../src/fonts/DS-DIGIT.ttf') format('truetype');
}

@font-face {
    font-family: 'fanfare-ticker';
    font-display: auto;
    src: url('../src/fonts/fanfareticker.ttf') format('truetype');
}

@font-face {
    font-family: 'fanfare-ticker-3D';
    font-display: auto;
    src: url('../src/fonts/fanfareticker3d.ttf') format('truetype');
}

@font-face {
    font-family: 'fanfare-ticker-italic';
    font-display: auto;
    src: url('../src/fonts/fanfareticker3dital.ttf') format('truetype');
}

@font-face {
    font-family: 'fanfare-ticker-bolder';
    font-display: auto;
    src: url('../src/fonts/fanfaretickerbackground.ttf') format('truetype');
}

@font-face {
    font-family: 'fanfare-ticker-bolder-italic';
    font-display: auto;
    src: url('../src/fonts/fanfaretickerbackgroundital.ttf') format('truetype');
}

@font-face {
    font-family: 'fanfare-ticker-italic';
    font-display: auto;
    src: url('../src/fonts/fanfaretickerital.ttf') format('truetype');
}

@font-face {
    font-family: 'fanfare-ticker-left';
    font-display: auto;
    src: url('../src/fonts/fanfaretickerleft.ttf') format('truetype');
}

@font-face {
    font-family: 'fanfare-ticker-semi-italic';
    font-display: auto;
    src: url('../src/fonts/fanfaretickersemital.ttf') format('truetype');
}

/* CSS */
body {
    color: var(--cor-texto-geral);
    background-color: var(--cor-fundo-geral);
    overflow: hidden;
    font-size: 35px;
}

/* No estilo.css */
.volume-popup {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: var(--cor-texto-rodape);
    /* Usa o azul Pioneer que você já definiu */
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--cor-texto-rodape);
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    /* Não interfere nos cliques */
    box-shadow: 0 0 15px rgba(0, 183, 255, 0.5);
}

.volume-popup.show {
    opacity: 1;
}

.corpo {
    width: 100vw;
    height: 100vh;
    border: 1px solid;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.corpo table {
    width: 100%;
    height: 100%;
    margin: auto;
    table-layout: fixed;
    border: 1px solid;
    border-collapse: collapse;
    border-color: rgba(0, 0, 0, 0);
}

.corpo td,
.corpo th {
    text-align: center;
    vertical-align: middle;
}

#tela-config {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 60%;
    height: 60%;
    background-color: rgba(30, 30, 30, 0.95);
    border: 2px solid var(--cor-borda-popup);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: none;
    z-index: 1000;
    font-family: 'ds-digital';
}

.contraste {
    border: 1px solid rgba(0, 0, 0, 0);
    /* Mantenha transparente */
    width: 50px;
    height: 50px;
    position: absolute;
    top: 10px;
    /* Dei um pequeno recuo para não colar na quina */
    right: 10px;
    background-image: url('../src/img/contraste_icon.png');
    background-size: contain;
    /* Reduzi um pouco para não colar nas bordas do botão */
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    z-index: 1000;
    /* ESSENCIAL: Garante que ele fique acima dos outros elementos */
    transition: background-color 0.3s ease;
}

.contraste:hover {
    background-color: var(--cor-botao-hover);
    border-radius: 5px;
    cursor: pointer;
}

.reprodutor {
    border: 1px solid #000;
    width: 100%;
    height: 58%;
    position: absolute;
    top: 20%;

    /* Gradiente dinâmico: Brilho + Textura + Cor Base */
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0) 40%, var(--metal-brilho) 50%, rgba(255, 255, 255, 0) 60%),
        repeating-linear-gradient(0deg, transparent 0px, transparent 1px, rgba(0, 0, 0, 0.05) 2px, rgba(0, 0, 0, 0.05) 3px),
        linear-gradient(to bottom, var(--metal-gradiente-inicio) 0%, var(--metal-gradiente-meio) 50%, var(--metal-gradiente-fim) 100%);

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 10px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: background 0.4s ease;
    /* Transição suave entre temas */
}

.reprodutor::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 30%;
    /* Aumentei um pouco a largura da faixa */
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    /* skew é melhor que rotate para faixas verticais */
    pointer-events: none;
    z-index: 1;
    /* Fica acima do fundo, mas abaixo dos botões (se os botões tiverem z-index maior ou posição relativa) */
}

/* Garante que o conteúdo (botões, etc) fique acima do brilho */
.reprodutor>* {
    position: relative;
    z-index: 5;
}

.animar-brilho::after {
    animation: passarBrilho 0.8s ease-in-out forwards;
}

@keyframes passarBrilho {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

.dial {
    width: 25vh;
    height: 25vh;
    border-radius: 50%;
    position: relative;
    top: 27%;
    left: 16%;
    border: 0.09vh solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    touch-action: none;
    /* Efeito Radial de Metal Escovado */
    background: conic-gradient(from 0deg at 50% 50%,
            var(--btn-metal-meio) 0%, var(--btn-metal-topo) 15%,
            var(--btn-metal-meio) 30%, var(--btn-metal-topo) 45%,
            var(--btn-metal-meio) 60%, var(--btn-metal-topo) 75%,
            var(--btn-metal-meio) 90%, var(--btn-metal-topo) 100%);
    box-shadow:
        0 0.46vh 1.39vh var(--btn-sombra-externa),
        inset 0 0.19vh 0.46vh rgba(255, 255, 255, 0.3);
    --rotation: 0deg;
    transform-origin: center center;
    transform: rotate(var(--rotation));
    transition: transform 0.1s;
}

.dial:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0.104vw;
    height: 100%;
    background: linear-gradient(to bottom, var(--cor-traco-botao-volume) 50%, transparent 50%);
}

.tema-claro #btn-src:hover,
.tema-claro #btn-muted:hover,
.tema-claro #btn-celular:hover,
.tema-claro #btn-pesquisar:hover,
.tema-claro #btn-retornar:hover,
.tema-claro #btn-retroceder:hover,
.tema-claro #btn-avancar:hover,
.tema-claro #btn-01:hover,
.tema-claro #btn-02:hover,
.tema-claro #btn-03:hover,
.tema-claro #btn-04:hover,
.tema-claro #btn-05:hover,
.tema-claro #btn-06:hover {
    background-color: var(--cor-botao-hover) !important;
    filter: brightness(1.1) drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.35));
}

.btn-player {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border: none;
    /* Removemos a borda simples */
    z-index: 10;
    /* Camada mais alta para evitar conflitos */
    touch-action: none;
    font-weight: bold;
    transition: all 0.15s ease;
    cursor: pointer;
    /* Gradiente de extrusão */
    background: linear-gradient(to bottom, var(--btn-metal-topo) 0%, var(--btn-metal-meio) 50%, var(--btn-metal-fim) 100%);
    color: var(--btn-texto);
    /* Brilho interno para simular chanfro (bevel) */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    /* Sombra externa projetada (essencial para profundidade em clip-path) */
    filter: drop-shadow(0px 3px 2px var(--btn-sombra-externa));
}

.btn-player svg {
    width: 60%;
    /* Tamanho relativo ao botão */
    height: 60%;
    fill: currentColor;
    /* Herda a cor do texto definida no tema (--btn-texto) */
    pointer-events: none;
    /* Garante que o clique vá para o botão, não pro ícone */

    /* Efeito de profundidade/entalhe no metal */
    filter: drop-shadow(0px 1px 0px rgba(255, 255, 255, 0.4)) drop-shadow(0px -1px 0px rgba(0, 0, 0, 0.2));
}

/* Ajuste específico para o Tema Claro (se necessário reforçar o contraste) */
body.tema-claro .btn-player svg {
    filter: drop-shadow(0px 1px 0px rgba(255, 255, 255, 0.8));
}

/* Efeito Hover: O ícone brilha junto com o botão */
.btn-player:hover svg {
    fill: var(--cor-texto-titulo);
    /* Ou use uma cor de brilho específica */
    filter: drop-shadow(0px 0px 5px var(--cor-botao-hover));
}

#btn-src:hover,
#btn-muted:hover,
#btn-celular:hover,
#btn-pesquisar:hover,
#btn-retornar:hover,
#btn-retroceder:hover,
#btn-avancar:hover,
#btn-01:hover,
#btn-02:hover,
#btn-03:hover,
#btn-04:hover,
#btn-05:hover,
.btn-player:hover {
    background-color: var(--cor-botao-hover) !important;
    filter: brightness(1.1) drop-shadow(0px 3px 2px var(--btn-sombra-externa));
}

.btn-player:active {
    /* Efeito de botão sendo pressionado para dentro */
    transform: translateY(2px);
    background: linear-gradient(to bottom, var(--btn-metal-fim) 0%, var(--btn-metal-meio) 100%);
    filter: drop-shadow(0px 1px 1px var(--btn-sombra-externa));
}

.tooltip-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Permite que eventos de mouse passem através da div */
}

.tooltip-text {
    position: absolute;
    background-color: var(--cor-fundo-botao-tooltip);
    color: var(--cor-texto-botao-tooltip);
    padding: 5px;
    border-radius: 5px;
    white-space: nowrap;
    display: none;
    /* Inicialmente escondido */
    z-index: 1000;
}

#btn-src {
    top: 12%;
    left: 5.5%;
    width: 10.42vw;
    height: 7.41vh;
    clip-path: polygon(5% 0%, 80% 0%, 100% 100%, 0% 100%);
    border-top-left-radius: 2.31vh;
    font-size: 2.78vh;
    font-family: 'Courier New', Courier, monospace;
}

#popup-esquerdo {
    display: none;
    position: absolute;
    width: 0;
    height: 0;
    padding: 10px;
    background-color: var(--cor-fundo-popup);
    border: 1px solid;
    border-color: var(--cor-borda-popup);
    border-radius: 10px;
    bottom: 50%;
    left: 18%;
    z-index: 50;
    transition: width 0.5s, height 0.5s;
}

#popup-esquerdo:after {
    content: '';
    position: absolute;
    top: 5%;
    right: 100%;
    border-width: 20px;
    border-style: solid;
    border-color: transparent var(--cor-fundo-popup)transparent transparent;
    display: block;
    width: 0;
}

.source-container {
    border: 1px solid;
    height: 50%;
    width: 100%;
    overflow-y: auto;
}

.source-container a {
    text-decoration: none;
    transition: 0.3s;
    color: var(--cor-texto-rodape);
}

.source-container a:hover,
.source-container a:focus {
    color: var(--cor-texto-tempo-musica);
}

#btn-pesquisar {
    top: 15.5%;
    left: 29.9%;
    width: 10.94vw;
    height: 5.37vh;
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 15% 100%);
    /* Múltiplos Backgrounds: Lupa primeiro (topo), depois o Metal (fundo) */
    background-image:
        url('../src/img/lupa_icon.png'),
        linear-gradient(to bottom, var(--btn-metal-topo) 0%, var(--btn-metal-meio) 50%, var(--btn-metal-fim) 100%);
    /* Configurações específicas para a Lupa não se repetir e ficar centralizada */
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-size: contain, cover;
    /* Ajuste o '30px' para o tamanho ideal da sua lupa */
    overflow: hidden;
    border: none;
    cursor: pointer;
    filter: drop-shadow(0 0.28vh 0.19vh var(--btn-sombra-externa));
    transition: all 0.2s ease;
}

/* Garante que o efeito de clique (afundar) funcione mantendo a lupa */
#btn-pesquisar:active {
    transform: translateY(2px);
    filter: brightness(0.8) !important;
    background-image:
        url('../src/img/lupa_icon.png'),
        linear-gradient(to bottom, var(--btn-metal-fim) 0%, var(--btn-metal-meio) 100%);
    filter: drop-shadow(0px 1px 1px var(--btn-sombra-externa));
}

/* --- Estilos Compartilhados para Botões com Ícone --- */
#btn-muted,
#btn-celular,
#btn-retornar,
#btn-retroceder,
#btn-avancar {
    border: none;
    cursor: pointer;
    overflow: hidden;
    filter: drop-shadow(0px 3px 2px var(--btn-sombra-externa));
    transition: all 0.2s ease;
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    /* O primeiro tamanho controla o ícone, o segundo (cover) preenche o metal */
    background-size: contain, cover;
}

#btn-muted:active,
#btn-celular:active,
#btn-retornar:active,
#btn-retroceder:active,
#btn-avancar:active {
    transform: translateY(2px);
    filter: drop-shadow(0px 1px 1px var(--btn-sombra-externa));
}

/* --- Configurações Individuais (Posição, Formato e Ícones) --- */

#btn-muted {
    top: 46%;
    left: 35.4%;
    width: clamp(32px, 4.17vh, 60px);
    height: clamp(32px, 4.17vh, 60px);
    border-radius: 50%;
    /* Simplificado para círculo perfeito */
    background-image:
        url('../src/img/Som_on01.png'),
        linear-gradient(to bottom, var(--btn-metal-topo), var(--btn-metal-meio), var(--btn-metal-fim));
    background-size: contain, cover;
}

#btn-celular {
    top: 40%;
    left: 7.5%;
    width: 8.07vw;
    height: 11.11vh;
    border-top-left-radius: 13.89vh;
    border-bottom-left-radius: 13.89vh;
    clip-path: polygon(0% 0%, 100% 0%, 95% 50%, 100% 100%, 0% 100%, 0% 50%);
    background-image:
        url('../src/img/celular.png'),
        linear-gradient(to bottom, var(--btn-metal-topo), var(--btn-metal-meio), var(--btn-metal-fim));
}

#btn-retornar {
    bottom: 12%;
    left: 5.5%;
    width: 10.42vw;
    height: 7.41vh;
    border-bottom-left-radius: 2.31vh;
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 5% 100%);
    background-image:
        url('../src/img/return.png'),
        linear-gradient(to bottom, var(--btn-metal-topo), var(--btn-metal-meio), var(--btn-metal-fim));
}

#btn-retroceder {
    bottom: 16%;
    left: 30%;
    width: 6.25vw;
    height: 4.63vh;
    clip-path: polygon(26% 0%, 100% 0%, 80% 100%, 0% 95%);
    background-image:
        url('../src/img/retroceder.png'),
        linear-gradient(to bottom, var(--btn-metal-topo), var(--btn-metal-meio), var(--btn-metal-fim));
}

#btn-avancar {
    bottom: 16%;
    left: 35%;
    width: 6.77vw;
    height: 4.63vh;
    clip-path: polygon(25% 0%, 100% 0%, 80% 100%, 5% 100%);
    background-image:
        url('../src/img/avancar.png'),
        linear-gradient(to bottom, var(--btn-metal-topo), var(--btn-metal-meio), var(--btn-metal-fim));
}

#btn-01 {
    bottom: 16%;
    left: 44%;
    width: 6.15vw;
    height: 4.63vh;
    clip-path: polygon(30% 0%, 100% 0%, 80% 100%, 0% 100%);
    font-size: 2.78vh;
    font-family: 'Courier New', Courier, monospace;
}

#popup-superior {
    display: none;
    position: absolute;
    width: 0;
    height: 0;
    padding: 10px;
    background-color: var(--cor-fundo-popup);
    border: 1px solid;
    border-color: var(--cor-borda-popup);
    border-radius: 10px;
    bottom: 30%;
    left: 3.5%;
    z-index: 50;
    transition: width 0.5s, height 0.5s;
}

#popup-superior:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 45%;
    border-width: 20px;
    border-style: solid;
    border-color: var(--cor-fundo-popup) transparent transparent transparent;
    display: block;
    width: 0;
}

#btn-02 {
    bottom: 16%;
    left: 49%;
    width: 5.99vw;
    height: 4.63vh;
    clip-path: polygon(25% 0%, 100% 0%, 80% 100%, 5% 100%);
    font-size: 2.78vh;
    font-family: 'Courier New', Courier, monospace;
}

#popup-inferior {
    display: none;
    position: absolute;
    width: 0;
    height: 0;
    padding: 10px;
    background-color: var(--cor-fundo-popup);
    border: 1px solid;
    border-color: var(--cor-borda-popup);
    border-radius: 10px;
    bottom: 30%;
    left: 3.5%;
    z-index: 50;
    transition: width 0.5s, height 0.5s;
}

#popup-inferior:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    border-width: 20px;
    border-style: solid;
    border-color: var(--cor-fundo-popup) transparent transparent transparent;
    display: block;
    width: 0;
}

#estatisticas-container,
#dev-container {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 28px
}

#estatisticas-container th,
#dev-container h2 {
    color: var(--cor-texto-titulo);
    font-weight: bolder;
    text-align: center;
}

#estatisticas-container td:nth-child(2) {
    color: var(--cor-texto-estatisticas);
    font-style: italic;
}

#dev-container p {
    text-align: justify;
    /* Adiciona um recuo de 2em no início de cada parágrafo */
    text-indent: 2em;
}

#dev-container a {
    color: var(--cor-link-dev);
}

#dev-container a:hover {
    color: var(--cor-link-dev-hover);
}

#dev-container span {
    display: flex;
    justify-content: right;
    padding: 2px;
    color: var(--cor-texto-rodape);
}

#btn-03 {
    bottom: 16%;
    left: 57.5%;
    width: 6.25vw;
    height: 4.63vh;
    clip-path: polygon(30% 0%, 100% 0%, 80% 100%, 0% 100%);
    font-size: 2.78vh;
    font-family: 'Courier New', Courier, monospace;
}

#btn-04 {
    bottom: 16%;
    left: 62.8%;
    width: 6.77vw;
    height: 4.63vh;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    font-size: 2.78vh;
    font-family: 'Courier New', Courier, monospace;
}

#btn-05 {
    bottom: 16%;
    left: 72%;
    width: 5.99vw;
    height: 4.63vh;
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 30% 100%);
    font-size: 2.78vh;
    font-family: 'Courier New', Courier, monospace;
}

#btn-06 {
    bottom: 16%;
    left: 77.2%;
    width: 5.99vw;
    height: 4.63vh;
    clip-path: polygon(0% 0%, 70% 0%, 100% 100%, 20% 100%);
    font-size: 2.78vh;
    font-family: 'Courier New', Courier, monospace;
}

#btn-usb {
    top: 32%;
    right: 7%;
    width: 5.73vw;
    height: 17.6vh;
    font-size: 4.6vh;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column !important;
    padding-left: 0.52vw;
    justify-content: center;
}

#popup-direito {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 0;
    height: 0;
    padding: 10px;
    background-color: var(--cor-fundo-popup);
    border: 1px solid;
    border-color: var(--cor-borda-popup);
    border-radius: 10px;
    top: 31%;
    right: 10%;
    z-index: 50;
    transition: width 0.5s, height 0.5s;
}

#popup-direito:after {
    content: '';
    position: absolute;
    top: 70%;
    left: 100%;
    border-width: 20px;
    border-style: solid;
    border-color: transparent transparent transparent var(--cor-fundo-popup);
    display: block;
    width: 0;
}

#barra_progresso {
    cursor: pointer;
}

#barra_progresso,
.tempo-musica,
#curiosidades-musica,
#interprete-musica,
#ritmo-musica {
    padding: 1px;
    font-size: 25px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
}

.tempo-musica {
    color: var(--cor-texto-tempo-musica);
}

#curiosidades-musica {
    text-align: justify;
}

#interprete-musica,
#ritmo-musica {
    color: var(--cor-texto-rodape);
    font-weight: bolder;
}

.container-marquee {
    position: absolute;
    width: 34.38vw;
    /* 660px */
    height: 15.28vh;
    /* 165px */
    top: 33%;
    left: 46%;
    border-radius: 0.93vh;
    background-color: var(--cor-container-marquee);
    /* Sombra interna para parecer que está "atrás" do metal */
    box-shadow:
        inset 0 0.19vh 0.93vh rgba(0, 0, 0, 0.8),
        0 0.09vh 0 rgba(255, 255, 255, 0.1);
    border: 0.09vh solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: background-color 0.4s ease;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee,
.marquee * {
    user-select: none;
    /* Impede seleção de texto */
    -webkit-user-select: none;
    /* Chrome / Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Edge antigo */

    cursor: default;
    /* Cursor padrão (seta) */
}


.marquee h2 {
    display: block;
    animation: marquee 1s linear infinite;
    font-size: clamp(6vh, 18.52vh, 20vh);
    font-family: fanfare-ticker;
    text-align: center;
}

.container-rodape {
    color: var(--cor-texto-rodape);
    font-family: ds-digital;
    font-size: 35px;
    font-weight: bolder;
    position: absolute;
    bottom: 0;
}

/*Tema claro*/

/* --- Reprodutor (Chassi Claro) --- */
.reprodutor.tema-claro {
    /* Gradiente base mais claro (prata/branco) e textura sutil */
    background:
        /* Brilho diagonal suave (reflexo) - mais intenso no claro */
        linear-gradient(115deg, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.4) 60%),
        /* Textura de metal escovado horizontal - linhas cinza claro */
        repeating-linear-gradient(0deg, transparent 0px, transparent 1px, rgba(0, 0, 0, 0.05) 2px, rgba(0, 0, 0, 0.05) 3px),
        /* Cor base metálica clara */
        linear-gradient(to bottom, #f0f0f0 0%, #d9d9d9 50%, #bdbdbd 100%);
    border-color: #ccc;
    /* Borda mais clara */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        /* Fio de luz forte no topo */
        0 5px 15px rgba(0, 0, 0, 0.2);
    /* Sombra externa mais suave */
}

/* --- Botões Metálicos Claros (com efeito 3D) --- */
.tema-claro #btn-src,
.tema-claro #btn-pesquisar,
.tema-claro #btn-retornar,
.tema-claro #btn-retroceder,
.tema-claro #btn-avancar,
.tema-claro #btn-01,
.tema-claro #btn-02,
.tema-claro #btn-03,
.tema-claro #btn-04,
.tema-claro #btn-05,
.tema-claro #btn-06 {
    /* Gradiente vertical simulando metal claro curvado */
    background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 50%, #d4d4d4 100%);

    /* Borda interna de luz (topo) e sombra (fundo) para efeito 3D - mais suaves */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);

    /* Sombra externa mais leve */
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.3));

    /* Cor do texto escura para contraste */
    color: #333;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Efeito ao clicar (afunda o botão claro) */
.tema-claro #btn-src:active,
.tema-claro #btn-pesquisar:active {
    background: linear-gradient(to bottom, #d4d4d4 0%, #e6e6e6 100%);
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.3));
}

/* --- Dial (Botão de Volume) Claro --- */
.tema-claro .dial {
    /* Efeito de alumínio torneado claro e brilhante */
    background: conic-gradient(from 0deg at 50% 50%,
            #ffffff 0%, #d0d0d0 15%, #ffffff 30%, #d0d0d0 45%, #ffffff 60%, #d0d0d0 75%, #ffffff 90%, #d0d0d0 100%);
    border-color: #ccc;
    /* Sombras mais suaves */
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.2),
        /* Sombra externa */
        inset 0 0 0 1px rgba(0, 0, 0, 0.1),
        /* Borda fina */
        inset 0 2px 5px rgba(255, 255, 255, 0.8);
    /* Brilho forte na borda */
}

/* --- Tela (Marquee Container) Clara --- */
.tema-claro .container-marquee {
    /* Fundo claro para a tela */
    background-color: #f8f8f8;
    border: 1px solid #ccc;

    /* Sombra interna suave para profundidade */
    box-shadow:
        inset 0 0 10px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Ajuste da cor do texto da tela para o fundo claro */
.tema-claro .marquee h2 {
    color: #333;
    /* Ou outra cor escura de sua preferência */
}

.rodape {
    color: var(--cor-ano-rodape);
    transition: color 0.4s ease;
}

/* Configuração Padrão (Desktop e Paisagem) */
.reprodutor-vertical {
    display: none;
    /* Escondido por padrão */
}

.reprodutor-horizontal {
    display: flex;
    /* Mostra o Pioneer */
}

/* Versão Mobile */
.corpo-mobile {
    width: 100vw;
    height: 100vh;
    border: 1px solid;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Mobile em landscape */
@media screen and (orientation: landscape) and (pointer: coarse) {}

/* Quando o celular estiver em pé */
@media screen and (orientation: portrait) {
    .reprodutor-horizontal {
        display: none;
        /* Esconde o Pioneer "esmagado" */
    }

    .reprodutor-vertical {
        display: flex;
        /* Ativa o design do rádio de bolso */
        flex-direction: column;
        align-items: center;
        width: 90vw;
        height: 80vh;
        border-radius: 40px;
        margin: auto;
        /* Estilização para parecer plástico/metal */
    }

    .corpo-mobile {
        background: rgba(0, 0, 0, 0);
        /* Fundo neutro atrás do rádio */
        perspective: 1000px;
    }

    .radio-pocket {
        position: relative;
        width: 85vw;
        height: 75vh;
        max-width: 400px;
        /* Limite para não ficar gigante em tablets */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Rodinhas laterais */
    .botao-lateral {
        position: absolute;
        background: #1a1a1a;
        width: 20px;
        height: 60px;
        right: -8px;
        border-radius: 0 5px 5px 0;
        border-left: 1px solid #333;
        background: repeating-linear-gradient(0deg,
                #111,
                #111 2px,
                #333 3px,
                #333 4px);
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .botao-lateral.tunning {
        top: 20%;
    }

    .botao-lateral.volume {
        top: 40%;
    }

    /* Corpo Principal (Plástico Preto Brilhante) */
    .chassi-plastico {
        position: relative;
        width: 90vw;
        max-width: 380px;
        /* Limita o tamanho em tablets para não ficar gigante */
        aspect-ratio: 2 / 3;
        /* Mantém a proporção de rádio de bolso */
        height: auto;
        /* Deixa o aspect-ratio definir a altura baseada na largura */
        background-color: #0d0d0d;
        border-radius: 25px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 2;

        /* Efeito de Plástico 3D */
        box-shadow:
            /* Brilho superior esquerdo (Luz) */
            inset 2px 2px 3px rgba(255, 255, 255, 0.3),
            /* Sombra inferior direita */
            inset -2px -5px 10px rgba(0, 0, 0, 0.8),
            /* Sombra projetada no fundo */
            10px 10px 30px rgba(0, 0, 0, 0.5);
    }

    /* --- Painel Prateado --- */
    .painel-prata {
        width: 100%;
        height: 40%;
        background: linear-gradient(135deg, #e6e6e6 0%, #d4d4d4 50%, #bfbfbf 100%);
        border-radius: 15px;
        padding: 10px;
        box-shadow:
            inset 0 0 5px rgba(0, 0, 0, 0.2),
            /* Profundidade interna */
            0 2px 5px rgba(0, 0, 0, 0.5);
        /* Sombra projetada no preto */
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
        position: relative;
    }

    /* Janela de Sintonia (Preta) */
    .visor-frequencia {
        width: 100%;
        height: 60%;
        background-color: #000;
        border-radius: 8px;
        border: 2px solid #555;
        position: relative;
        overflow: hidden;
        padding: 5px;
        font-family: Arial, Helvetica, sans-serif;
    }

    /* Reflexo no vidro do visor */
    .visor-frequencia::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
        transform: rotate(30deg);
        pointer-events: none;
    }

    /* LED indicador */
    .bolinha-icone {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 8px;
        height: 8px;
        margin-left: 4px;
        font-size: 8px;
        line-height: 1;
        color: #3f1818;
        /* LED apagado */
        background-color: #3f1818;
        border-radius: 50%;
        box-shadow:
            inset 1px 1px 2px rgba(0, 0, 0, 0.9);
        transition:
            background-color 0.2s ease,
            box-shadow 0.2s ease,
            color 0.2s ease;
    }

    /* LED ligado */
    .bolinha-icone.on {
        color: #ff2a2a;
        background-color: #ff2a2a;

        box-shadow:
            0 0 4px #ff2a2a,
            0 0 8px rgba(255, 0, 0, 0.6);
    }

    .bolinha-icone.on.station {
        background-color: #2aff2a;
        color: #2aff2a;
        box-shadow:
            0 0 4px #2aff2a,
            0 0 8px rgba(0, 255, 0, 0.6);
    }

    /* Ponteiro Vermelho */
    .ponteiro-dial {
        position: absolute;
        top: 10%;
        left: 50%;
        /* Posição dinâmica da sintonia */
        width: 3px;
        height: 80%;
        background-color: #d12b2b;
        z-index: 10;
        box-shadow: 1px 0 2px rgba(0, 0, 0, 0.8);
        transition: left 0.2s ease;
    }

    /* Escalas de Números */
    .escala-container {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
        color: #ddd;
        font-size: 1.2vh;
        gap: 5px;
    }

    .linha-escala {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .linha-escala>span:first-child {
        font-weight: bold;
        width: 15%;
        text-align: left;
    }

    .numeros {
        width: 85%;
        display: flex;
        justify-content: space-between;
        font-size: 1vh;
        letter-spacing: -0.5px;
    }

    .unidade {
        font-size: 0.8vh;
        align-self: flex-end;
    }

    /* Textos do Painel Prateado */
    .branding-painel {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: Arial, sans-serif;
        color: #111;
        padding: 0 5px;
    }

    .modelo {
        font-weight: 900;
        font-size: 4vw;
    }

    .tune-label {
        font-size: 1.2vh;
        font-weight: bold;
        border: 1px solid #333;
        padding: 1px 4px;
        border-radius: 4px;
        background: #ccc;
    }

    .titulo-radio {
        text-align: right;
    }

    .titulo-radio h2 {
        font-weight: 900;
        font-size: 2.2vh;
        font-style: italic;
        margin: 0;
        line-height: 1;
    }

    .titulo-radio p {
        font-size: 0.8vh;
        font-weight: bold;
        margin: 0;
    }

    /* Container dos botões */
    .faixa-controles {
        width: 85%;
        /* Largura um pouco menor para dar respiro */
        display: flex;
        justify-content: space-between;
        /* Distribui igualmente */
        align-items: center;
        margin: 15px auto;
        /* O 'auto' nas laterais faz a mágica da centralização */
        z-index: 5;
        gap: 5px;
        /* Garante um espacinho mínimo entre eles */
    }

    /* Estilo do Botão Cromado */
    .btn-cromo {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        width: 22%;
        height: 45px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        position: relative;
        background: linear-gradient(to bottom,
                #e6e6e6 0%,
                #dcdcdc 40%,
                #8c8c8c 50%,
                #bfbfbf 52%,
                #e6e6e6 100%);

        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.8),
            0 2px 3px rgba(0, 0, 0, 0.5),
            0 0 0 1px #555;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-cromo:active {
        background: linear-gradient(to bottom, #8c8c8c 0%, #dcdcdc 100%);
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6);
        transform: translateY(2px);
    }


    /* Estilo base do botão mute para permitir o posicionamento do risco */
    #btn-mute-radio {
        position: relative;
        overflow: hidden;
        /* Garante que o risco não saia do botão */
    }

    /* O "Risco Vermelho" */
    #btn-mute-radio.is-muted::after {
        content: "";
        position: absolute;
        width: 35px;
        height: 3px;
        background-color: #ff0000;
        transform: rotate(45deg);
        pointer-events: none;
        /* Essencial para o botão continuar clicável */
        z-index: 5;
    }

    /* Opcional: Deixar o ícone opaco quando mudo */
    #btn-mute-radio.is-muted .icone-svg {
        opacity: 0.5;
    }

    .icone-svg {
        width: 18px;
        height: 18px;
        fill: #cfcfcf;
        filter:
            drop-shadow(0 1px 0 #ffffff) drop-shadow(0 -1px 0 #7a7a7a);
        transition:
            transform 0.15s ease,
            filter 0.15s ease,
            opacity 0.15s ease;
    }

    .btn-cromo:active .icone-svg {
        transform: scale(0.9);
        filter:
            drop-shadow(0 -1px 0 #ffffff) drop-shadow(0 1px 0 #7a7a7a);
    }


    /* --- Grade do Alto Falante (CSS Mágico) --- */
    .speaker-grille {
        flex-grow: 1;
        /* Ocupa o resto do espaço */
        width: 95%;
        margin-top: 10px;
        border-radius: 10px;
        background-color: #0a0a0a;

        /* O EFEITO DE FURINHOS: */
        background-image: radial-gradient(circle, #000 30%, transparent 35%);
        background-size: 6px 6px;
        /* Tamanho e espaçamento dos furos */

        /* Sombra interna para dar profundidade à grade */
        box-shadow: inset 0 0 20px rgba(0, 0, 0, 1);
        border: 1px solid #1a1a1a;
    }

    .btn-tema-mobile {
        position: absolute;
        top: 10px;
        right: 25px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #222;
        border: 1px solid #444;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.2), 0 2px 4px rgba(0, 0, 0, 0.5);
        z-index: 20;
    }

    /* Ajuste quando o tema claro estiver ativo */
    body.tema-claro .btn-tema-mobile {
        background: #ddd;
        border-color: #bbb;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .info-musica-mobile {
        width: 90%;
        margin: 15px auto;
        /* Centraliza horizontalmente */
        padding: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;

        /* Cria o visual de "Display Adicional" */
        background-color: #000000;
        border: 2px solid #333;
        border-radius: 8px;
        box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.9), 0 5px 10px rgba(0, 0, 0, 0.5);

        color: var(--cor-texto-rodape);
        /* Azul Pioneer */
        font-family: 'Courier New', monospace;
        /* Ou sua fonte digital se tiver */
        font-weight: bold;
    }

    /* O container do nome da música (Marquee) */
    .marquee-mobile {
        width: 100%;
        overflow: hidden;
        text-align: center;
        margin-bottom: 15px;
        background: transparent;
        /* Remove fundo cinza, deixa preto do display */
        border-bottom: 1px dashed #333;
        /* Linha separadora sutil */
        padding-bottom: 8px;
    }

    .marquee-mobile h2 {
        font-size: 16px;
        white-space: nowrap;
        text-transform: uppercase;
        /* Efeito Neon no texto */
        text-shadow: 0 0 5px var(--cor-texto-rodape), 0 0 10px var(--cor-texto-rodape);
        margin: 0;
    }

    /* Container da barra e tempos */
    .progresso-container-mobile {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        /* Espaço fixo entre os elementos */
        padding: 0 5px;
        /* Margem interna nas laterais */
    }

    .progresso-container-mobile span {
        font-family: 'Courier New', monospace;
        font-size: 13px;
        color: #fff;

        /* FIXA A LARGURA DOS TEMPOS: */
        /* Isso impede que a barra "coma" os números ou que eles se mexam */
        min-width: 45px;
        text-align: center;
        display: inline-block;
    }

    #barra-progresso-mobile {
        flex-grow: 1;
        /* Faz a barra ocupar todo o resto do espaço */
        height: 8px;
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
        cursor: pointer;
        margin: 0 4px;
        /* Pequeno respiro lateral */
        cursor: pointer;
        /* Aumenta a área de clique sem mudar o visual da barra */
        /* padding: 10px 0; */
        margin-top: -5px;
        margin-bottom: -5px;
        transition: transform 0.2s;
    }

    #barra-progresso-mobile:active {
        transform: scaleY(1.2);
        /* Dá um leve feedback visual ao tocar */
    }

    /* Garante que a barra interna não ultrapasse os limites */
    #barra-progresso-mobile::-webkit-progress-bar {
        background-color: #222;
        border-radius: 4px;
        overflow: hidden;
        /* Corta o que sobrar */
    }

    #barra-progresso-mobile::-webkit-progress-value {
        background-color: var(--cor-texto-rodape);
        /* Azul Pioneer */
        border-radius: 3px;
        box-shadow: 0 0 8px var(--cor-texto-rodape);
        /* Brilho Neon na barra */
        transition: width 0.1s linear;
    }

    /* Cor da barra cheia (Firefox) */
    #barra-progresso-mobile::-moz-progress-bar {
        background-color: var(--cor-texto-rodape);
        border-radius: 3px;
        box-shadow: 0 0 8px var(--cor-texto-rodape);
    }

    /* Ajuste do Rodapé para Mobile */
    .reprodutor-vertical .container-rodape.mobile-footer {
        position: absolute;
        bottom: 20px;
        width: 100%;
        text-align: center;
        color: var(--cor-texto-rodape);
        /* Usa a mesma cor da versão PC */
        font-family: Arial, sans-serif;
        font-size: 12px;
        text-shadow: 1px 1px 2px black;
        z-index: 10;
    }
}

/* --- CORREÇÃO PARA TABLETS E FOLDABLES (iPad, Surface, Fold) --- */
/* Aplica-se quando o aparelho está em pé (Portrait) mas a tela é larga (>600px) */
@media screen and (orientation: portrait) and (min-width: 600px) {

    /* Trava a posição do botão de sintonia em pixels fixos */
    .botao-lateral.tunning {
        top: 140px;
        /* Ajuste este valor se quiser mais para cima/baixo */
    }

    /* Trava a posição do botão de volume em pixels fixos */
    .botao-lateral.volume {
        top: 25.93vh;
        /* Ajuste este valor se quiser mais para cima/baixo */
    }

    /* Opcional: Garante que o container não fique com espaço vazio excessivo */
    .radio-pocket {
        max-height: 55.56vh;
    }
}

/* --- MODAL DOAÇÃO (ESTILO CELULAR) --- */

/* O fundo escuro que cobre a tela */
.modal-overlay {
    display: none;
    /* Escondido por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Fundo semi-transparente */
    z-index: 2000;
    /* Acima de tudo */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    /* Desfoque no fundo */
}

/* A janela do modal */
.modal-smartphone {
    background: var(--metal-gradiente-meio);
    /* Usa o fundo do seu player */
    border: 1px solid var(--cor-borda-popup);
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 183, 255, 0.3);
    /* Brilho neon suave */
    color: var(--cor-texto-geral);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
}

/* Animação de entrada suave */
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--cor-texto-rodape);
    /* Azul neon */
}

.btn-fechar {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
}

.modal-body {
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Campo e Botão do PIX */
.pix-container {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qrcode-container {
    background: #fff;
    /* Fundo branco para garantir a leitura do QR */
    padding: 10px;
    border-radius: 10px;
    width: 180px;
    height: 180px;
    margin: 0 auto 15px auto;
    /* Centraliza e dá margem embaixo */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

#img-qrcode {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    /* Mantém o QR Code nítido */
}

.pix-container input {
    font-size: 0.75rem;
    /* Diminui um pouco a fonte para chaves longas */
    letter-spacing: -0.5px;
    width: 100%;
    padding: 8px;
    background: #111;
    border: 1px solid #555;
    color: #fff;
    border-radius: 5px;
    text-align: center;
}

.agradecimento {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
}

.btn-copiar {
    background: var(--cor-texto-rodape);
    color: #000;
    border: none;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.btn-copiar:hover {
    background: #fff;
    box-shadow: 0 0 10px var(--cor-texto-rodape);
}