        .bottom {
display:flex;
position:fixed;
left:14px;
right:14px;
bottom:0.7rem;
padding:2rem;
gap: 1rem;
height: 1rem;
justify-content:space-around;
border-radius:28px;
background:rgba(2, 12, 28,0.2);
backdrop-filter: blur(20px);
z-index: 1000;
border-top: 1px solid rgba(210, 105, 30, 0.9);
            }
			
            .bottom a{
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 6px;
                text-decoration: none;
                color: var(--text-muted);
                font-size: 1rem;
                transition: color 0.3s ease;
            }

            .bottom a:hover {
                color: var(--accent-tan-hover);
            }

            .bottom .active {
                color: var(--accent-tan);
                font-weight: 600;
            }

	   /* -----------------------------------------------------------
       SAIR - ESTILO DO BOTÃO SAIR SAIR SAIR
    ----------------------------------------------------------- */	
.bottom-bar {
    position: fixed;
    left: 0;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    width: 98%;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    pointer-events: auto; 
}
.box-fixo-sair {
  width: 80px;
  height: 60px;
  position: absolute;
  left: 3px;
  bottom: 0px;
  z-index: 999;
}

/* Botão Recomeçar - Fixado na Direita */
.box-fixo-recomecar {
  width: 80px;
  height: 60px;
  position: absolute;
  right: 3px;
  bottom: 0px;
  z-index: 999;
}

/* Força o botão a ocupar o espaço da div e limpa o estilo nativo */
.btn-limpo {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}

/* Garante que a imagem renderize corretamente */
.btn-limpo img {
  display: block;
  width: 100%;
  height: auto;
}

.centraliza{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
    /* -----------------------------------------------------------
       ESTILO DO BOTÃO (O segredo do 3D e Brilho)
    ----------------------------------------------------------- */
    .btn-som {
	  position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 4px;
	  width: 0.8rem 0.6rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 0.7rem;
      font-size: 0.8rem;
      color: #ffffff;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      overflow: hidden;
      border-radius: 100%;
      transition: all 0.2s ease-out;
      box-shadow: 0 8px 16px rgba(0,0,0,0.3);
	   z-index: 999;
    }

    .btn-som::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: linear-gradient(to bottom, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 100%);
      border-radius: 8px 8px 0 0;
      pointer-events: none;
      z-index: 1;
    }

    .btn-som span {
      position: relative;
      z-index: 2;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .btn-som svg {
      width: 28px;
      height: 28px;
      fill: #ffffff;
      position: relative;
      z-index: 2;
      filter: drop-shadow(0 2px 3px rgba(0,0,0,0.5));
    }

    .btn-som {
      background: linear-gradient(to bottom, #1db954 0%, #16a34a 100%);
      box-shadow: 
        0 8px 16px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.8),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        inset 2px 0 0 rgba(255,255,255,0.3),
        inset -2px 0 0 rgba(0,0,0,0.3);
    }

    .btn-som.desligado {
      background: linear-gradient(to bottom, #f83a3a 0%, #dc2626 100%);
      box-shadow: 
        0 8px 16px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.8),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        inset 2px 0 0 rgba(255,255,255,0.3),
        inset -2px 0 0 rgba(0,0,0,0.3);
    }

    .btn-som:active {
        translate: 0px 4px;
      box-shadow: 
        0 2px 4px rgba(0,0,0,0.3),
        inset 0 2px 5px rgba(0,0,0,0.5),
        inset 0 -1px 0 rgba(255,255,255,0.2);
    }		

 @media(max-width:768px){
 		.bottom{
display:flex;
position:fixed;
justify-content:space-around;
border-radius:28px;
background:rgba(2, 12, 28,0.2);
		}

            .bottom a {
                font-size: 0.75rem;
            }
 
 }