       /* Estilos da Barra Inferior Fixa */
       .credit-bar {
           position: fixed;
           bottom: 0;
           left: 0;
           width: 100%;
           background: linear-gradient(135deg, #1f2937, #111827);
           color: #ffffff;
           box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
           z-index: 9999;
           font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
           animation: slideUp 0.5s ease-out;
           border-top: 3px solid #f59e0b;
           /* Detalhe em amarelo/alerta */
       }

       .credit-bar-content {
           max-width: 1200px;
           margin: 0 auto;
           padding: 12px 20px;
           display: flex;
           align-items: center;
           justify-content: space-between;
           gap: 15px;
           box-sizing: border-box;
       }

       .credit-bar-info {
           display: flex;
           align-items: center;
           gap: 12px;
           font-size: 14px;
           line-height: 1.4;
       }

       .credit-bar-info p {
           margin: 0;
       }

       .credit-bar-icon {
           width: 24px;
           height: 24px;
           fill: #f59e0b;
           flex-shrink: 0;
       }

       .credit-bar-actions {
           display: flex;
           align-items: center;
           gap: 12px;
           flex-shrink: 0;
       }

       .credit-bar-btn {
           background-color: #f59e0b;
           color: #111827;
           padding: 8px 16px;
           border-radius: 6px;
           font-weight: 600;
           font-size: 14px;
           text-decoration: none;
           transition: background-color 0.2s, transform 0.1s;
           white-space: nowrap;
       }

       .credit-bar-btn:hover {
           background-color: #d97706;
       }

       .credit-bar-btn:active {
           transform: scale(0.98);
       }

       .credit-bar-close {
           background: transparent;
           border: none;
           color: #9ca3af;
           font-size: 22px;
           cursor: pointer;
           padding: 0 4px;
           line-height: 1;
           transition: color 0.2s;
       }

       .credit-bar-close:hover {
           color: #ffffff;
       }

       /* Animação de entrada */
       @keyframes slideUp {
           from {
               transform: translateY(100%);
               opacity: 0;
           }

           to {
               transform: translateY(0);
               opacity: 1;
           }
       }

       /* Responsividade para Dispositivos Móveis */
       @media (max-width: 768px) {
           .credit-bar-content {
               flex-direction: column;
               align-items: stretch;
               padding: 12px 15px;
               gap: 10px;
           }

           .credit-bar-actions {
               justify-content: space-between;
           }

           .credit-bar-btn {
               flex-grow: 1;
               text-align: center;
           }
       }