body{
    background-image:url('../imagens/background.png');
    font-family: Arial, Helvetica, sans-serif;
    padding: 0px;
    margin: 0px;
    justify-content: center;
    align-items: center;
}

.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;
}

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;
}

.menu-desktop nav a:hover {
    color: #6B00C2; /* Cor ao passar o mouse */
    transform: perspective(1000px) translateZ(100px) rotateX(16deg) rotateY(16deg);
}

h1{
    color: #fff;
    margin-top: 150px;
    text-align: center;
    text-shadow: 2px 8px 4px #000000;
    width: auto;
    font-weight: 900;
    font-size: 46px;
}

.Container {
    background-color: #303030E0;
    padding: 60px;
    max-width: 65%; 
    margin: 80px auto;
    box-sizing: border-box;
    position: relative; /* Permite que os filhos usem o posicionamento absoluto em relação a este container */
}

.imgCopo {
    position: absolute; /* Posiciona a imagem de forma absoluta dentro do container */
    top: -70px;
    right: -50px; 
    width: 140px; 
    height: auto;
}

.imgCopo:hover{
    transform: perspective(1000px) translateZ(200px) rotateX(5deg) rotateY(5deg);
}

.imgPod {
    position: absolute; /* Posiciona a imagem de forma absoluta dentro do container */
    bottom: -60px;
    left: -40px; 
    width: 140px; 
    height: auto;
}

.imgPod:hover{
    transform: perspective(1000px) translateZ(200px) rotateX(5deg) rotateY(5deg);
}

.texto {
    color: white; 
    font-family: 'Poppins', sans-serif; 
    font-weight: 900;
    font-size: 18px;
}

.cor-diferente {
    color: #15c19f; /* Cor do texto diferente, por exemplo, laranja */
    font-size: 20px;
}

/*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: 1040px) {

    .menu-desktop{
        display: none;
    }

    .btn-abrir-menu i{
        display: flex;
    }

    .btn-abrir-menu{
        background-color: #fff;
        padding: 4px;
        border-radius: 12px;
    }

    ul{
        display: none;
    }

    h1{
        text-shadow: 1px 4px 2px #000000;
        font-weight: 700;
        font-size: 26px;
    }

    .texto {
        font-weight: 700;
        font-size: 16px;
    }

    .cor-diferente {
        font-size: 18px;
    }

    .imgCopo {
        width: 100px; 
    }
    
    .imgPod {
        width: 100px; 
    }

    .Container {
        padding: 18px;
        max-width: 70%; 
    }
    
}
  
