@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
    display: none;
}

header {
    z-index: 100;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
}
header .cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 90vw;
}
header .menus {
    display: flex;
    align-items: center;
    gap: 50px;
    color: white;
}
header button {
    border: none;
    background-color: transparent;
    text-decoration: none;
    cursor: pointer;
    color: white;
    font-size: 16px;
}
header button:hover {
    text-decoration: underline;
}


.studio-logo {
    height: 70px;
    position: absolute;
    top: 5px;
}


/* ----------------- Inicio SOCIAL ----------------- */

header .social {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
}

.social a {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    filter: invert(1);
}

.insta {
    background-image: url(/img-index/instagram.png);
    background-size: 100%;
}
.face {
    background-image: url(/img-index/facebook.png);
    background-size: 100%;
}
.linkedin {
    background-image: url(/img-index/linkedin.png);
    background-size: 100%;
}
.whats {
    background-image: url(/img-index/whatsapp.png);
    background-size: 100%;
}
.youtube {
    background-image: url(/img-index/youtube.png);
    background-size: 100%;
}

/* ----------------- Fim SOCIAL ----------------- */

/* ----------------- Fim do cabeçalho ----------------- */


.trabalhos {
    display: flex;
    height: 100vh;
}
.trabalhos .design {
    background-image: url(/img-index/AltaSite.jpg);
    background-size: cover;
    filter: brightness(0.55);
    width: 100%;
    transition: all .5s;
    display: flex;
    flex-direction: column;
    justify-content: end;
    cursor: pointer;
}
.trabalhos .design .breve {
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%);
    color: white;
    font-size: 60px;
    font-weight: 500;
    display: none;
}

.trabalhos .imob {
    background-image: url(/render/content/D01.jpg);
    background-size: cover;
    background-position: 47%, 50%;
    filter: brightness(0.55);
    width: 100%;
    transition: all .5s;
    display: flex;
    flex-direction: column;
    justify-content: end;
    cursor: pointer;
}

.trabalhos .moveis {
    background-image: url(/img-index/image4.jpg);
    background-size: cover;
    background-position: 50%, 60%;
    filter: brightness(0.55);
    width: 100%;
    transition: all .5s;
    display: flex;
    flex-direction: column;
    justify-content: end;
    cursor: pointer;
}

.trabalhos .design:hover {
    filter: brightness(1);
}
.trabalhos .design:hover .breve {
    display: block;
}
.trabalhos .moveis:hover {
    filter: brightness(1);
}
.trabalhos .imob:hover {
    filter: brightness(1);
}

.trabalhos .desc{
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 50px;
    color: white;
    padding-bottom: 35px;
    text-shadow: rgba(0, 0, 0, .3) 2px 2px 4px;
}

.trabalhos .desc p {
    margin-top: 8px;
    text-indent: 50px;
    font-size: 16px;
}

.mobile-btn {
    display: none;
}
.mobile-nav-bar {
    display: none;
}

.mobile-img {
    display: none;
}

@media (max-width: 480px) {
    header {
        display: none;
    }
    .trabalhos {
        display: flex;
        flex-direction: column;
    }
    .aa {
        height: 33.33%;
        display: flex;
    }
    .trabalhos h1 {
        font-size: 20px;
    }
    .trabalhos p {
        font-size: 8px;
        display: none;
    }
    .trabalhos .desc {
        padding-bottom: 0px;
        margin: 30px;
    }
    .trabalhos .design {
        filter: brightness(1);
        background-position: 50% 50%;
    }
    .trabalhos .moveis {
        filter: brightness(1);
    }
    .trabalhos .imob {
        filter: brightness(1);
    }

    .trabalhos .design .breve {
        top: 40%;
        display: block;
        font-size: 25px;
        text-shadow: rgba(0, 0, 0, .5) 2px 2px 4px;
    }

    .mobile-btn {
        position: absolute;
        right: 0px;
        margin: 15px;
        z-index: 10000;
        height: 30px;
        width: 30px;
        background-image: url(/img-index/menu-aberto.png);
        background-size: cover;
        filter: invert(1);
        display: block;
    }

    .mobile-img {
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 20000;
        height: 35px;
        width: 140px;
        margin: 15px;
        background-image: url(/img-index/NEW-Logo-hrpng.png);
        background-position: center;
        background-size: cover;
        display: block;
    }

}



.mobile-menu.active {
    display: flex;
}

.mobile-menu {
    position: absolute;
    z-index: 1000;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 0 0 20px 20px;
    display: none;
}

.mobile-menu button {
    border: none;
    background-color: transparent;
    font-size: 15px;
    font-weight: 450;
    color: white;
}
