*{
    margin: 0px;
    padding: 0px;
    border: 0px;
}

#interface{
    background-color: rgb(3, 3, 3);
    display: flex;
    flex-wrap: wrap;
   justify-content: space-around;
    margin: auto;
    width: 100%;
    height: auto;
}

header{
    display: flex;
    justify-content: center;
    margin: auto;
    width: 100%;
    height: 70px;
    background: linear-gradient(silver,black);
    
}
#veios{
    width: 80px;
    left:20px;
}
#lokos{
    width: 80px;
    left:-17px;
}
.img{
    position: relative;
    margin-left: 12px;
    margin-bottom: 10px;
    width: 32%;
    height: 80%;
}
#logo{
    position: relative;
    margin-left: 14px;
    height: 110px;
    z-index: 1;
}

  #texto{
        display: flex;
        justify-content: space-between;
        position: absolute;
        width: 100%;
        height: auto;
        color: rgb(65, 65, 194);
       
        
    }

    .OurO{
        border: 2px solid gold;
    }

.container{  
    position: relative;
    margin-left: 5px;
    margin-top: 50px;
    width: 323px;
    height: auto;
   
}
.containerTecnico{  
    position: relative;
    margin-left: 5px;
    margin-top: 50px;
    width: 323px;
    height: auto;
    
}


#rank{
    position:absolute;
    top: 55px;
    left: 110px;
    }
    #rank h3{
        margin-top: -4px;
    }
    .geral{
        position: absolute;
    }
    /* ... seu código CSS existente ... */

/* Estilos para o JavaScript: Adiciona transição e cursor */
.container, .containerTecnico {
    /* O cursor indica que o elemento é clicável */
    cursor: pointer; 
}

#rank h3::before {
    /* Define o conteúdo do data-label, mas o esconde por padrão */
    content: attr(data-label);
    color: transparent; /* Torna o texto do rótulo invisível */
    transition: color 0.3s ease; /* Adiciona uma transição para a cor */
    position: absolute;
    left: -100px; /* Posiciona os rótulos fora do #rank */
    width: 95px; /* Define uma largura para os rótulos */
    text-align: right;
}

/* Quando o container tem a classe 'show-details', mostra os rótulos */
.container.show-details #rank h3::before {
    color: white; /* Mostra o rótulo com a cor branca */
}

.geral{
    margin-top: 10px;
    font-size: 35px;
    margin-left: 10px;
    color: aliceblue;
     -webkit-text-stroke: 1px rgb(235, 169, 3); /* Largura e cor do contorno */
}
