/* Mobile / tablet — ativa o centrado vertical */
@media (max-width: 1024px) {
    #contato {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 4rem 0 4rem 0
    }
}
.contato__textos {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.contato__textos--titulo {
    font-size: 6.375rem;
    font-weight: 900;
}



.contato__textos--seta {
    margin: 0 0 3rem 0
}

.contato__textos--acao {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin: 0 0 3rem 0;
    z-index: 0;
    cursor: pointer
}

.contato__textos--acao:hover {
    color: var(--preto-lavado);

    &:hover {
        font-weight: 900
    }
}

.contato__textos--acao::after {
    content: '';
    position: absolute;
    width: 100%;
    height: .5rem;
    background: linear-gradient(to bottom, transparent 10%, var(--amarelo-criativo) 30%);
    bottom: .2rem;
    left: 0;
    z-index: -1
}

.contato__textos--email {
    font-weight: 300;
    font-size: 1.75rem;
    margin: 0 0 3rem 0;
    cursor: pointer
}

.contato__textos--email:hover {
    color: var(--preto-lavado);

    &:hover {
        font-weight: 900
    }
}

#form {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: var(--branco);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.form__fechar {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end
}

.form__fechar svg {
    width: 100%
}

#form__formulario_inline input:focus,
#form__formulario_inline textarea:focus,
#form__formulario_inline select:focus {
    border: 1px solid var(--amarelo-criativo) !important;
    outline: none; /* opcional: remove contorno do navegador */
}

#form p {
    font-weight: 900;
    font-size: 1.75rem;
    margin: 0 0 1.5rem 0
}

#form__formulario {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 0 2rem
}

#form__formulario label {
    font-weight: 700;
    font-family: "Nebulica-Medium", "sans-serif"
}



#nome,
#email,
#telefone,
#empresa,
#ajuda,
#mensagem {
    width: 100%;
    max-width: 500px;
    height: 40px;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-bottom: 1px solid var(--preto-lavado);
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 10px
}

#mensagem {
    height: 100px
}

#submit {
    margin: 1.5rem 0 0 0;
    background-color: var(--amarelo-criativo);
    border: none;
    padding: .8rem 15rem;
    font-weight: 900;
    font-family: "Nebulica-Black", "sans-serif";
    font-size: 20px
}

#submit:hover {
    color: var(--branco);
    cursor: pointer
}
