/* Estilo automático para a página: contato */
 #cabecalho {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -150px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;

    h1{
        text-align: center;
        font-size: 51px;
        font-weight: 700;
        color: #fff;
        line-height: 1.2;
        margin-top: 100px;
    }
    h2{
        letter-spacing: 3px;
        font-size: 14px;
        color: #fff;
        text-align: center;
    }
}



#contato{
    padding: 60px 0;
    background-color: #f5f5f5;

    h2 {
        font-size: 32px;
        font-weight: 700;
        letter-spacing: 0px;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 28px;
        font-weight: 700;
        letter-spacing: 0px;
        margin-bottom: 20px;
        color: #161616;
    }

    .text-contato{
        line-height: 1.7;
        color: #555;
        margin-bottom: 30px;
    }

    .text-local{
        line-height: 1.7;
        color: #555;
    }
    .mail-cont {
        line-height: 1.7;
        color: #555;
    }
    
    iframe{
        width: 100%;
        height: 320px;
    }

    .btn-fale-conosco {
        font-size: 14px;
        letter-spacing: 2px;
        line-height: 20px;
        padding: 17px 60px 20px;
        background-color: #b1976b;
        color: #fff !important;
        font-weight: 700;
        text-transform: uppercase;
    }
}


#social-contato{
    background-color: #fff;
    padding: 60px 0;

    .social-mini-menu{
        display: flex;
        justify-content: center;
        margin: 0;
        align-items: center;

        li {
            font-size: 14px;
            color: #fff;
            margin-right: 8px;
            list-style-type: none;
    
            i{
                font-size: 24px;
                color: #161616;
                margin-right: 8px;
            }
        }
    
    }
}


/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    #contato{
        .text-local{
            margin-top: 30px;
        }
    }
}

/* MOBILE */
@media all and (max-width: 767px) { 

    #cabecalho {

        min-height: 440px;

        h1 {
            font-size: 32px;
            line-height: 2.2;
        }
        h2 {
            line-height: 22px;
        }
    }
    #contato {
        .mail-cont {
            line-height: 0;
            color: #555;
            margin-top: 40px;
        }
    }
 }