.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;
}
.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 12px;
    left: -5px;  /* Alarga o sublinhado para a esquerda */
    right: -5px; /* Alarga o sublinhado para a direita */
    background-color: #70d1e4;
    z-index: -1;
    border-radius: 4px;
}
.btn-mais{
    width: 200px;
    height: 60px;
    border: 2px solid #0c2343;
    border-radius: 50px;
    background: #0c2343;
    font-size: 18px;
    font-family: 'Gabarito', sans-serif;
    cursor: pointer;
    margin-top: 25px;
    box-shadow: 0 0 35px #ccd0e4;
    transition: all 0.3s ease;
}
.btn-mais:hover{
    border: 2px solid #70d1e4;
    background-color: #70d1e4;
    box-shadow: 0 0 25px #a1b0d7;
}

.btn-preco{
    width: 200px;
    height: 60px;
    border: 2px solid #0c2343;
    border-radius: 50px;
    background-color: white;
    font-size: 18px;
    font-family: 'Gabarito', sans-serif;
    cursor: pointer;
    margin-top: 25px;
    box-shadow: 0 0 35px #ccd0e4;
    transition: all 0.3s ease;
}
.btn-preco:hover{
    border: 2px solid #70d1e4;
    background-color: #70d1e4;
    box-shadow: 0 0 25px #a1b0d7;
}
.btn-preco:hover .txt-preco-primary{
    color: #FFFAFA;
}
.btn-preco-back{
    background: #0c2343;
}
.txt-preco-primary{
    color: #696969;
}
.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;
    padding-bottom: 30px;
}
.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: 'Gabarito', sans-serif;
    padding: 15px;
    line-height: 25px;
    box-sizing: border-box;
    border: 2px solid #0c2343;
    border-radius: 5px;
}
.btn-submit{
    width: 130px;
    height: 50px;
    border-radius: 50px;
    border: 5px solid #0c2343;
    background-color: #0c2343;
    font-size: 18px;
    font-family: 'Gabarito', sans-serif;
    cursor: pointer;
    margin-right: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 35px #ccd0e4;
}
.btn-submit:hover{
    border: 5px solid #70d1e4;
    background-color: #70d1e4;
    box-shadow: 0 0 25px #a1b0d7;
}
.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: 40px;
}
.info-content{
    width: 80%;
    height: 100%;
}
.titulo-contato{
    font-family: 'Gabarito', sans-serif;
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 5px;
}
.contentudo-contato{
    font-family: 'Afacad Flux', sans-serif;
    font-size: 20px;
    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: 40px;
    }
    .main-text{
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        padding-left: 20px;
    }
    .btn-mais{
        width: 160px;
        height: 50px;
        font-size: 16px;
        margin-bottom: 25px;
    }
    .btn-preco{
        width: 160px;
        height: 50px;
        font-size: 16px;
    }
    .campo-form{
        width: 100%;
        height: 45px;
    }
    .input-form{
        font-size: 15px;
    }
    .btn-submit{
        width: 110px;
        height: 45px;
        font-size: 16px;
        font-weight: 300;
    }
    .icon-contato{
        width: 30px;
    }
    .contentudo-contato{
        font-size: 18px;
    }
}

@media (max-width: 375px) {

}