@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-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 ----------------- */


main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main .aa {
    height: 100vh;
    width: 100%;
}

/* -------------------- PAGINA 01 -------------------- */
.page1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page1 .fundo {
    background-image: url(/render/content/M01.jpg);
    background-position: 50% 52%;
    background-size: 100%;
    height: 75vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page1 h1 {
    font-weight: 500;
    font-size: 60px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .3);
}
.page1 .text {
    margin-top: 30px;
    font-size: 20px;
}
.page1 .bold {
    font-size: 20px;
    font-weight: 600;
}

@keyframes anim {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
    100% {
        transform: translateY(0);
    }
}


/* -------------------- PAGINA 02 -------------------- */
.page2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-container {
    width: 90vw;
    display: flex;
    gap: 6px;
}
.grid-container img {
    width: 100%;
}
.row1, .row2, .row3 {
    width: 33.3%;
}


/* -------------------- RODAPE -------------------- */
.rodape {
    height: 100px;
    width: 100vw;
    border-top: 1px solid rgb(0, 0, 0, .3);
    display: flex;
    justify-content: center;
}
.rodape p {
    margin-top: 15px;
    font-style: italic;
    font-weight: 300;
}



/* -------------------- BOTAO TOPO -------------------- */
.top {
    height: 40px;
    width: 40px;
    background-image: url(/img-index/toparrow.png);
    background-size: 100%;
    position: fixed;
    left: 35px;
    bottom: 130px;
    cursor: pointer;
    display: none;
}

.mobile-img {
    display: none;
}


@media (max-width: 480px) {
    header {
        display: none;
    }
    .page1 .fundo {
        background-size: cover;
        background-position: 0% 50%;
        animation: moveBG 30s linear infinite;
    }
    @keyframes moveBG {
        0% {
            background-position: 0% 50%;
        }
        100% {
            background-position: 100% 50%;
        }
    }
    .page1 .fundo h1 {
        font-size: 30px;
        text-align: center;
        padding-top: 300px;
    }
    .page1 .text {
        font-size: 12px;
        padding: 0px 30px;
        text-align: justify;
    }
    .page1 .bold {
        font-size: 12px;
    }

    .row3 {
        display: none;
    }
    .row1, .row2, .row3 {
        width: 50%;
    }

    .mobile-btn {
        position: absolute;
        right: 0px;
        top: 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;
    }
    .rodape p {
        font-size: 12px;
    }
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu {
    position: absolute;
    top: 0px;
    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;
}
