body{
    background-image:url('../imagens/background.png');
    font-family: Arial, Helvetica, sans-serif;
    padding: 0px;
    margin: 0px;
}

.menu-desktop {
    height: 100px;
    width: 100%;
    background: linear-gradient(to top, transparent, #303030E0);
    top: 0;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 10;
}

nav a {
    color: #fff; 
    text-decoration: none;
    font-weight: bold;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease; 
}

nav a.active{
    color: #6B00C2;
}

.menu-desktop ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
    padding: 0;
    margin: 0;
}

nav a:hover {
    color: #6B00C2; /* Cor ao passar o mouse */
    transform: perspective(1000px) translateZ(100px) rotateX(16deg) rotateY(16deg);
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 150px;
}

.logo-container {
    text-align: center;
}

.tenis-container {
    position: absolute;
    top: 0;
    right: 0;
}

.tenis {
    margin-right: 200px;
    width: 250px; /* Ajuste o tamanho conforme necessário */
}

.tenis:hover{
    transform: perspective(1000px) translateZ(200px) rotateX(5deg) rotateY(5deg);
}

.MainInfo{
    display: flex;
    width: 100%;
}

.podContainer{
    flex: 0 0 25%;
    display: flex;
    justify-content: flex-end;
    
}

.ButtonsContainer{
    display: flex;
    flex: 0 0 50%;
}
.Pod{
    height: auto;
}

.Buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.Buttons button {
    background-color: #fff; /* Cor de fundo dos botões */
    border: none; /* Remove a borda padrão */
    color: #6B00C2; /* Cor do texto */
    font-weight: 600;
    padding: 10px 20px; /* Espaçamento interno */
    text-align: center; /* Alinha o texto ao centro */
    text-decoration: none; /* Remove o sublinhado */
    display: inline-block; /* Permite definir largura e altura */
    font-size: 16px; /* Tamanho da fonte */
    margin: 0px 40px; /* Remove margem adicional */
    cursor: pointer; /* Cursor do mouse em forma de ponteiro */
    border-radius: 90px; /* Cantos arredondados */
}

.Pod:hover{
    transform: perspective(1000px) translateZ(200px) rotateX(5deg) rotateY(5deg);
}

/*MENU MOBILE*/

.btn-abrir-menu i{
    font-size: 50px;
    color: #6B00C2;
    cursor: pointer;
    display: none;
}

.btn-abrir-menu{
    position: absolute; 
    top: 10px;
    right: 10px;
}

.menu-mobile{
    background-color: #303030f1;
    height: 0%;
    width: 100%;
    top: 0;
    position: fixed;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
    transition: .3s;
    overflow: hidden;
    z-index: 10;
}

.menu-mobile.abrir-menu{
    height: 40%;
}

.menu-mobile.abrir-menu ~ .overlay{
    display: block;
}

.menu-mobile nav{
    top: 0;
    height: 100%;
}

.menu-mobile nav a:hover {
    color: #6B00C2; 
    transform: perspective(1000px) translateZ(100px) rotateX(16deg) rotateY(16deg);
}

.menu-mobile ul {
    list-style-type: none;
    height: 100%;
    margin: 0px;
    padding: 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.menu-mobile nav a.active{
    color: #6B00C2;
   
}

.menu-mobile .btn-fechar i{
    color: #6B00C2;
    font-size: 50px;
    cursor: pointer;
}

.menu-mobile .btn-fechar{
    position: absolute; 
    top: 10px;
    right: 10px; 
}

.overlay{
    background-color: rgba(0, 0, 0, 0.486);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}

@media screen and (max-width: 1400px) {
    .tenis {
        display: none;
    }

    .Pod{
        display: none;
    }
}

@media screen and (max-width: 1040px) {
    .menu-desktop{
        display: none;
    }

    .btn-abrir-menu i{
        display: flex;
    }

    .btn-abrir-menu{
        background-color: #fff;
        padding: 4px;
        border-radius: 12px;
    }

    .Logo{
        width: 90%;
    }

    .podContainer{
        display: none;
    }

    .MainInfo{
        justify-content: center;
    }

}
