.sec-main{
    width: 100%;
    height: 100vh;
    max-height: 850px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.sec-main-container{
    width: 1280px;
    margin-top: 90px;
    display: flex;
    flex-direction: row;
}
.main-text{
    width: 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    margin-left: 20px;
}
.btn-mais{
    width: 150px;
    height: 60px;
    border: 2px solid #51bca7;
    border-radius: 50px;
    background: #51bca7;
    font-size: 18px;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    margin-top: 25px;
}
.sec-contato{
    width: 100%;
    background-color: #fff;
    padding-top: 35px;
}
.titulo-serv{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.container-contato{
    width: 100%;
    max-width: 1280px;
    margin: auto;
    margin-top: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
}
.conta-form{
    width: 60%;
    display: flex;
    box-sizing: border-box;
}
.form-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    box-sizing: border-box;
    padding: 30px;
    flex-wrap: wrap;
}
.campo-form{
    width: calc(50% - 20px);
    height: 45px;
    box-sizing: border-box;
    margin-bottom: 20px;
    margin-right: 20px;
    display: flex;
}
.campo-mensagem{
    width: 100%;
    height: 135px;
    box-sizing: border-box;
    margin-bottom: 20px;
    margin-right: 20px;
    display: flex;
}
.input-form{
    width: 100%;
    position: relative;
    resize: none;
    font-size: 18px;
    font-family: 'Ubuntu', sans-serif;
    padding: 15px;
    line-height: 25px;
    box-sizing: border-box;
    border: 2px solid #51bca7;
    border-radius: 5px;
}
.btn-submit{
    width: 130px;
    height: 50px;
    border-radius: 50px;
    border: 5px solid #51bca7;
    background-color: #51bca7;
    font-size: 18px;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    margin-right: 20px;
    font-weight: bold;
}
.conta-info{
    width: 40%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
}
.info-base{
    width: 100%;
    height: 100px;
    margin-top: 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
}
.info-icon{
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.icon-contato{
    width: 45px;
}
.info-content{
    width: 80%;
    height: 100%;
}
.titulo-contato{
    font-family: 'Ubuntu', sans-serif;
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 5px;
}
.contentudo-contato{
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
}
.mapa{
    width: 100%;
    height: 450px;
    background-color: lightblue;
}

@media (max-width: 1280px) {
    .sec-main-container{
        width: 100%;
        display: flex;
        flex-direction: row;
    }
}

@media (max-width: 1024px) {
    .sec-main{
        min-height: 500px;
        max-height: 750px;
    }
    .main-text{
        width: 50%;
    }
}

@media (max-width: 790px) {
    .sec-main{
        height: 730px;
    }
    .sec-main-container{
        flex-wrap: wrap;
        justify-content: center;
    }
    .main-text{
        width: 90%;
    }
    .container-contato{
        flex-wrap: wrap;
    }
    .conta-form{
        margin: auto;
        width: 90%;
    }
    .conta-info{
        margin: auto;
        width: 90%;
    }
}

@media (max-width: 600px) {
    .sec-main{
        height: 650px;
    }
    .sec-main-container{
        margin: 0;
        margin-top: 15px;
    }
    .main-text{
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .btn-mais{
        width: 120px;
        height: 40px;
        font-size: 15px;
        margin-bottom: 25px;
        margin-left: 20px;
    }
    .campo-form{
        width: 100%;
        height: 45px;
    }
    .input-form{
        font-size: 15px;
    }
    .btn-submit{
        width: 110px;
        height: 45px;
        font-size: 15px;
        font-weight: bold;
    }
    .icon-contato{
        width: 30px;
    }
    .contentudo-contato{
        font-size: 15px;
    }
}

@media (max-width: 320px) {

}