
        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;

        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #000;
            color: #000000;
            display: flex;
            flex-direction: column;
            min-height: 100vh;

        }

        /* Estilos para a faixa */
        .banner {
            width: 100%;
            height: 45px;
            background-color: #0073e6;
            color: white;
            overflow: hidden;
            position: relative;
            margin-bottom: 10px;
        }
        .marquee {
            display: flex;
            position: absolute;
            height: 100%;
            align-items: center;
        }
        .marquee-container {
            display: flex;
            animation: marquee 80s linear infinite;
        }
        .marquee-text {
            white-space: nowrap;
            flex-shrink: 0;
            padding: 0 8px; /* Espaço entre os textos */
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .marquee a {
            color: #ffdd00;
            font-weight: bold;
            text-decoration: none;
        }
        .marquee a:hover {
            text-decoration: underline;
        }


        /* Links principais */
        .main-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            flex: 1;
            padding: 1rem 0;
        }
        .link-section {
            width: 100%;
            max-width: 500px;
        }
        .link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #004aad;
            color: #ffffff;
            text-decoration: none;
            text-align: left;
            padding: 5px;
            margin: 10px 0;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: bold;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: background 0.3s, transform 0.2s;
            position: relative;
        }
        .link a{
            text-decoration: none;
            color: white;
        }
        .link:hover {
            background-color: #0066ff;
            transform: scale(1.05);
        }
        .link-content {
            display: flex;
            align-items: center;
            flex-grow: 1;
        }
        .icon {
            width: 65px;
            height: 65px;
            margin-right: 16px;
        }
        #Loja{
            width: 65px;
            height: 65px;
            margin-left: -6px;
        }
        .ajust-img{
            width: 58px;
            margin-left: 0px;
            margin-right: 15px;
        }
        .img-papa{
            width: 60px;
            height: 55px;
            margin-right: 15px;
            margin-left: 8px;
        }
        #tele{
            padding: 5px;
            width: 55px;
            height: 55px;
        }
        #macs{
            margin: -7px;
            margin-left: -2px;
            margin-right: 10px;
            width: 75px;
            height: 75px;
        }
        #fat{
            width: 55px;
            height: 55px;
            margin-left: 10px;
            margin-top: 4px;
            margin-bottom: 4px;
        }
        #bonus{
            width: 105px;
            height: 70px;
            margin-top: -3px;
            margin-bottom: -3px;
            margin-left: -15px;
            margin-right: -5px;
        }
        #bonus02{
            width: 75px;
            height: 73px;
            margin-top: -4px;
            margin-bottom: -4px;
            margin-left: 0px;
            margin-right: 8px;
        }
        #whatts{
            width: 70px;
            height: 70px;
            margin-top: -5px;
            margin-bottom: -5px;
            margin-left: -6px;
            margin-right: 8px;
        }
        .help-icon .bi {
  animation: giroLento 5s infinite;
  display: inline-block;
  transition: transform 0.3s ease;
        }
        .video-container iframe {
  width: 100%;
  height: 100vh; /* preenche a altura visível */
  border-radius: 8px;
  background-color: white; /* fundo branco ao redor do vídeo */
  margin-top: -10px;
        }
        /* Estilos para os tooltips */
        .help-icon {
            font-size: 1.8rem;
            color: #ffffff;
            cursor: pointer;
            animation: float 3s ease-in-out infinite, tilt 6s ease-in-out infinite;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .help-icon:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        .help-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 0 10px #fff;
        }
        .tooltip {

    position: relative; /* ou absolute/fixed/sticky */
    z-index: 9999 !important;
    pointer-events: auto !important;

    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    position: absolute;
    left: 505px;
    bottom: 50%;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
    letter-spacing: 0.2px; 
    transform: translateY(50%);
    background-color: #f8a427;
    color: #000000;
    border-radius: 8px;
    padding: 10px;
    width: 200px;
    pointer-events: auto;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
        }
        .tooltip.show {
    visibility: visible;
    opacity: 1;
        }
        .tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 250px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
        }        
        .tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent #f8a427 transparent transparent;
        }
        @keyframes giroLento {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(30deg); }
  20% { transform: rotate(-30deg); }
  30% { transform: rotate(20deg); }
  40% { transform: rotate(-15deg); }
  50% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
        }

.como-usar-btn {
    background-color: #3c3c41;
    color: rgb(255, 255, 255);
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s;
}
.como-usar-btn:hover {
    background-color: #262629;
}


/* Pop-up styles */
/* Tela escurecida de fundo */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
/* Área branca do pop-up */
.popup-content {
  background-color: #fff;
  width: 100%;
  max-width: 800px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}
/* Container do vídeo/iframe */
.video-container {
  width: 100%;
  overflow: hidden;
}
.video-container iframe {
  width: 100%;
  height: 540px;
  border-radius: 8px;
  
}

/* Botão Fechar */
.fechar-btn-top {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 40%;
  font-size: 28px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 10000;
}
.fechar-btn:hover {
      background-color: #e14c4c;
}



/* Rodapé */
.footer {
            text-align: center;
            padding: 1rem;
            background-color: #333;
            font-size: 1em;
            color: #aaa;
}
/* Responsividade para dispositivos móveis */
@media (max-width: 650px) { 
            .link {
                font-size: 14px;
                padding: 12px;
            }
            .icon {
                width: 45px;
                height: 45px;
                margin-right: 8px;
            }
            #logo{
                width: 55px;
                height: 50px;
                margin-left: -5px;
                margin-right: 15px;
            }
            #Loja{
                width: 60px;
                height: 60px;
                margin-bottom: -10px;
                margin-top: -2px;
                margin-left: -5px;
            }
            #macs{
                width: 55px;
                height: 55px;
            }
            #fat{
                width: 43px;
                height: 43px;
                margin-right:13px;
                margin-left: 3px;
                margin-top: 0px;
                margin-bottom: 0px;
            }
            #bonus{
            width: 77px;
            height: 52px;
            margin-top: -5px;
            margin-bottom: -5px;
            margin-left: -15px;
            margin-right: 0px;
            }
            #bonus02{
            width: 58px;
            height: 58px;
            margin-top: -4px;
            margin-bottom: -4px;
            margin-left: -5px;
            margin-right: 8px;
            }
            .font{
                font-size: 13px;
            }
            #teste{
                width: 56px;
                height: 56px;
                margin-left: -5px;
                margin-top: -5px;
                margin-bottom: -5px;
            }
            #whatts{
            width: 55px;
            height: 55px;
            margin-right: 20px;
            }
            .ajust-img{
                margin-right: 8px;
                width: 52px;
                height: 52px;
            }
            .img-papa{
                width: 50px;
                height: 47px;
                margin-right: 12px;
                margin-left: -1px;
            }
            #tele{
                margin: 2px 30px 0px 0px;
                padding:0px;
                width: 40px;
                height: 40px;
            }
            #crescer{
                font-size: 17px;
            }
            .flesh{
                display: none;
            }
            .link-section {
                width: 100%;
                max-width: 350px;
            }
            .welcome-message {
                font-size: 1em;
            }
            .footer {
                font-size: 0.7em;
            }
            /* Ajustes para mobile nos tooltips */
            .help-icon {
                width: 30px;
                height: 30px;
                font-size: 1.5rem;
                margin-right: 0px;
            }
            .tooltip {
                width: 150px;
                font-size: 12px;
                right: 30px;

            }



    /* Área branca do pop-up */
    .popup-content {
      background-color: #fff;
      width: 100%;
      max-width: 355px;
      padding: 6px;
      border-radius: 8px;
      gap: 3px;
    }
    /* Botão Fechar */
    .fechar-btn-top {
  top: 15px;
  font-size: 35px;
  width: 38px;
  height: 38px;
    }



/* Container do vídeo/iframe */
.video-container {
  width: 100%;
  overflow: hidden;
}
.video-container iframe {
  width: 100%;
  height: 480px;
  border-radius: 8px;
  
}



}
/* ARIA DAS PARTES DA NOTIFICAÇAO QUE APARECE E SOME NOS CANTOS*/
@media (max-width: 980px) {

            .bloco-alerta {
                padding: 10px 13px;
                max-width: 300px;
            }
}
/* Esconde tooltip em telas menores que 1005px */
@media (max-width: 1000px) {
.tooltip {
    display: none !important;
}
#sumir{
    display: none;
}
}