.content {
    padding-top: 227px;
}

@media (max-width: 992px) {
    .content {
        padding-top: 137px;
    }
}

.btn-enviar {
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 15px;
    border-radius: 30px;
    background-color: #006b68;
}

.btn-enviar:hover {
    background-color: #006b68;
    opacity: 0.8;
}

.section-contato{
    padding-top: 50px;
}

.section-contato-title{
    font-size: 28px;
    color: #00625b;
    font-weight: bold;
}

/*form-contato*/

.form-group{
    position: relative;
}

.form-control{
    position: relative;
    height:60px;
}

.label-float{
    width: 100%;
    position: absolute;
    top: 19px;
    bottom: 0;
    left: 10px;
    right: 0;
    transition: 0.5s;
    color: #006b68;
    opacity: 0.6;
    font-weight: bold;
}

.form-control:focus + .label-float,
.form-control:not(:placeholder-shown) + .label-float{
    padding-bottom: 5px!important;
    margin-top: 0;
    top: 5px;
    z-index: 2;
    transition: 0.2s;
    color: #006b68;
    font-weight: bold;
    opacity: 1;
}

.textarea-custom + .label-float,
.textarea-custom:not(:placeholder-shown) + .label-float{
    padding-bottom: 5px!important;
    margin-top: 0;
    top: 5px;
    z-index: 2;
    transition: 0.2s;
    color: #006b68;
    font-weight: bold;
    opacity: 1;
}

.form-control:focus,
.form-control:not(:placeholder-shown){
    height: 60px; /* Ajuste a altura do input conforme necessário */
    padding-top: 25px; /* Ajuste o espaçamento superior conforme necessário */
    padding-bottom: 5px; /* Ajuste o espaçamento inferior conforme necessário */
    font-size: 16px; /* Ajuste o tamanho da fonte conforme necessário */
    line-height: 30px;
}

.textarea-custom{
    width: 100%;
    height: 100%; /* Ajuste a altura do input conforme necessário */
    max-height: 365px;
    padding-left: 10px;
    line-height: 20px;
}

.textarea-custom:focus,
.textarea-custom:not(:placeholder-shown){
    position: relative;
    padding-top: 30px; /* Ajuste o espaçamento superior conforme necessário */
    padding-bottom: 5px; /* Ajuste o espaçamento inferior conforme necessário */
    font-size: 16px; /* Ajuste o tamanho da fonte conforme necessário */
    border: 1px solid #CCC;
    border-radius: 3px;
}

.custom-input:focus {
    border: 1px solid #006b68;
    box-shadow: 0px 0px 5px 0px rgba(0,107,104,1);
}

.select-custom{
    width: 100%;
    height: 60px;
    border-radius: 3px;
    border: 1px solid #CCC;
}

.textarea-custom:focus{
    border: 1px solid #CCC!important;
    box-shadow: 0px 0px 5px 0px rgba(0,107,104,0.5);
}

/*card-contato*/

.card-contato{
    background-color: #f5f5f5;
    padding: 25px 35px;
    border-left: 4px solid #006b68;
    /*border-bottom: 1px solid #006b68;*/
    margin-bottom: 40px;
    box-shadow: 3px 3px 5px 0px rgba(0,107,104,0.5);
    /*box-shadow: 0px 0px 5px 0px rgba(0,107,104,0.5);*/
}

.card-contato a{
    color: #006b68;
}