#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;
    margin: 0 0 3rem 0;
}

.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
    }
}

.contato__icones_branco{
    display: flex;
    flex-direction: row;
    gap: 5rem;
    justify-content: center;
    margin-bottom: 5rem;
    margin-top: -5rem;
}


.contato__icones_branco a svg:hover path {
    stroke: var(--amarelo-criativo);
}

@media only screen and (max-width:900px) {
    .contato__icones_branco {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
}
.contato__icones_preto {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    justify-content: center;
    margin-bottom: 5rem;
    margin-top: -5rem;
    width: 100%;
}


@media only screen and (max-width:900px) {
    .contato__icones_preto {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
}

.contato__icones_preto a svg:hover path {
    stroke: var(--amarelo-criativo);
}

#form{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999; 
    width: 100%; 
    height: 100%; 
    background-color: var(--branco);
    display: none;
    flex-direction: column;
    align-items: center;
    margin: 0 0 2rem 0;
}

.form__fechar{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.form__fechar svg{
    width: 100%;

}

#form p{
    font-weight: 900;
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
}

#form__formulario{
    display: flex;
    flex-direction: column;
    width: 90%;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 6rem;
}

#form__formulario label{
    font-weight: 700;
}

#nome, #email, #telefone, #empresa, #ajuda, #mensagem{
    font-family: "Nebulica-Medium", "sans-serif";
    width: 50%; 
    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: 2rem 0 0 0;
    background-color: var(--amarelo-criativo);
    border: none;
    padding: .8rem 15rem;
    font-weight: 700;
    font-family: "Nebulica-Black", "sans-serif";
    font-size: 20px;
}

#submit:hover{
    color: var(--branco);
    cursor: pointer;
}

@media only screen and (max-width: 1400px) and (min-width: 901px){
    .form__fechar svg{
        width: 100%;
    }

    #form p{
        margin-bottom: 1rem;
    }

    #form br{
        display: none;
    }

    #mensagem{
        height: 60px;
    }

    #submit{
        margin: 1rem 0 0 0;
    }
}

@media only screen and (max-width: 1350px) {

}

@media only screen and (max-width: 1130px) {
}

@media only screen and (max-width: 900px) {
    .contato__textos--titulo{
        font-size: 3.625rem;
    }

    .contato__textos--acao{
        font-size: 1.75rem;
    }

    .contato__icones{
        gap: 1rem;
    }

    #nome, #email, #telefone, #empresa, #ajuda, #mensagem{
        width: 100%;
    }

    #form__formulario div{
        text-align: center;
    }

    #submit{
        padding: .8rem 8rem;
        margin: .5rem 0 0 0;
    }

    #mensagem{
        height: 60px;
    }

    #nome, #email, #telefone, #empresa, #ajuda, #mensagem{
        margin-bottom: 10px;
    }

    #form p{
        margin-bottom: 1.5rem;
    }

    #form label{
        margin-bottom: .5rem;
    }

    #form br{
        display: none;
    }
}