@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 ----------------- */





/* ----------------- Fim SOCIAL ----------------- */

/* ----------------- Fim do cabeçalho ----------------- */



.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.topo {
    background-image: url(/render/content/Ambientação\ -\ Afeto.jpg);
    background-position: 50% 60%;
    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);
}

.conteudo {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
}
.conteudo .midias {
    height: 100%;
    width: 100%;
    padding: 80px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.conteudo .midias h1 {
    font-size: 20px;
    font-weight: 550;
    padding-bottom: 10px;
}


.redes img {
    height: 35px;
    width: auto;
}

.conteudo .direto {
    background-color: rgb(235, 230, 220);
    height: 100%;
    width: 100%;
}


.formulario {
    display: flex;
    flex-direction: column;
    padding: 80px;
    padding-top: 100px;
    gap: 20px;
}
.formulario p {
    height: 5px;
}
input, textarea {
    width: 100%;
    border: none;
    outline: 0;
}
.txt {
    height: 150px;
}

label {
    font-size: 18px;
    font-weight: 500;
}

input[type=submit] {
    height: 40px;
    border-radius: 20px;
    margin-top: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}
input[type=submit]:hover {
    background-color: rgb(207, 207, 207);
}

.mobile-img {
    display: none;
}


@media (max-width: 480px) {
    header {
        display: none;
    }

    
    .topo {
        font-size: 30px;
        padding: 50px;
    }

    .conteudo {
        display: flex;
        flex-direction: column;
    }

    .formulario {
        padding: 50px;
        font-size: 12px;
    }
    .conteudo .midias {
        padding: 50px;
    }
    label {
        font-size: 13px;
    }
    .midias {
        font-size: 13px;
    }
    .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;
    }
}

.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;
}