body{
    background-image:url('../imagens/background.png');
    font-family: Arial, Helvetica, sans-serif;
    padding: 0px;
    margin: 0px;
    display: flex;
    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;
}

nav a:hover {
    color: #6B00C2; 
    transform: perspective(1000px) translateZ(100px) rotateX(16deg) rotateY(16deg);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
    gap: 20px; 
}

.Logo img {
    width: 500px; 
    height: auto;
}

.right-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; 
}

.right-images img.top {
    width: 500px;
    height: auto;
}

.right-images img.bottom{
    width: 300px; 
    height: auto;
}

/*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;
    }

    .container{
        margin-top: 100px;
        flex-direction: column;
        text-align: center;
    }

    .Logo img {
        width: 70%;
    }

    .right-images img.top {
        width: 90%;
    }

    .right-images img.bottom{
        width: 80%; 
        margin-bottom: 150px;
    }
}