@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 ----------------- */



.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.topo {
    background-image: url(/render/content/Ambientação\ -\ Aconchego.jpg);
    background-position: 50% 66%;
    background-size: cover;
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 60px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .3);
}

.content {
    height: 100%;
    width: 100%;
    display: flex;
    padding: 20px 13%;
    gap: 50px;
}

.imagem {
    height: 100%;
    width: 70%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.imagem .ab {
    height: 70%;
    width: 100%;
    border-radius: 10px;
}
.imagem .a-imagem {
    background-image: url(/render/content/Ambientação\ -\ Euforia.jpg);
    background-position: center;
    background-size: cover;
}


.descricao {
    height: 80%;
    width: 100%;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.descricao p {
    text-indent: 50px;
    text-align: justify;
}

.d-a {
    padding-top: 10px;
}
.honra {
    font-style: italic;
    font-weight: 300;
}

.mobile-img {
    display: none;
}


@media (max-width: 480px) {
    header {
        display: none;
    }

    .topo {
        font-size: 30px;
        padding: 50px;
    }

    .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 30px;
    }

    .d-a {
        padding-bottom: 50px;
    }

    .imagem {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .imagem .ab {
        height: 200px;
        width: 90vw;
    }

    .descricao {
        padding-top: 0px;
    }

    .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;
    }

    .descricao {
        font-size: 12px;
    }
    .honra {
        text-align: center;
    }
}

.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;
}