#contatos{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 35rem;
    padding: 2rem 0rem;
    background-color: rgb(34, 122, 163);
}

.contatos_main{
    display: flex;
    height:fit-content;
    width: fit-content;

    justify-content: space-around;
    align-items: stretch;
    gap: 6rem;
    color: white;
}

.contatos_main h2{
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contatos_main p{
    font-weight: 600;
    font-size: 1rem;
}

.contatos_main img{
    margin-left: 2rem;    
}

#contatos_formulario{
    display: flex;
    flex-direction: column;
}

.contatos_infos{
    margin-bottom: 1rem;
}

#contatos_botao{
    background-color: green;
    color: white;
    height: 2rem;
    width: 5rem;
}


@media all and (max-width: 912px){
    #contatos{
        display: flex;
        align-items: center;
        justify-content: center;
    
        width: 100%;
        height: 70rem;
        padding: 2rem 0rem;
        background-color: rgb(34, 122, 163);
    }

    .contatos_main{
        display: flex;
        height: fit-content;
        width: fit-content;
        flex-direction: column;
    
        justify-content: space-around;
        align-items: center;
        gap: 1rem;
        color: white; 
    }

    .contatos_main h2{
        font-weight: 800;
        font-size: 2.5rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .contatos_titulos{
        display: block;
        text-align: left;
    }

    .contatos_texto{
        margin-bottom: 2rem;
    }

    .contatos_main img{
        margin-bottom: 2rem;
        margin-left: 3rem;    
    }
}