/* ----------------------------
base
---------------------------- */
@import url("../js/jsmodal/modals.css");
@import url("https://lovatel.com.br/plugins/plugins.css");

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: #111;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1.8;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

textarea {
  resize: vertical;
  height: auto;
  min-height: 255px;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

img {
  display: inline-block;
  vertical-align: middle;
}

/* ----------------------------
typography
---------------------------- */

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-style: normal;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

p {
  margin: 0;
  padding: 0;
  font-size: 15px;
}

b, strong {
  font-weight: 700;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ----------------------------
placeholder
---------------------------- */

::-webkit-input-placeholder {
  color: #fff;
}
:-moz-placeholder {
  color: #fff;  
}
::-moz-placeholder {
  color: #fff;  
}
:-ms-input-placeholder {
  color: #fff;  
}

/* ----------------------------
class
---------------------------- */

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}

/* ----------------------------
layout
---------------------------- */

.container {
  margin: 0 auto;
  max-width: 1340px;
  padding-left: 20px;
  padding-right: 20px;
}

/* section */

.section-main {
  position: relative;
}

.slider-shadow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 200px;
  background: -moz-linear-gradient(top,  rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  background: -webkit-linear-gradient(top,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
  background: linear-gradient(to bottom,  rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=0 );
}

.owl-slider-item {
  background-size: cover;
}

.owl-slider-item.-banner-1 {
  background: url('../img/section-main2.jpg') no-repeat center center;
    background-size: cover;
}

.owl-slider-item.-banner-2 {
  background: url('../img/section-main2.jpg') no-repeat center center;
  background-size: cover;
}

.main-continuar {
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: 500;
  width: 100%;
  text-align: center;
}

/* w3bm457 */

.main-continuar span {
  display: block;
  font-family: 'Hammersmith One', sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.main-continuar i {
  display: inline-block;
  margin: 15px 0;
  width: 32px;
  height: 32px;
  background-image: url('../img/continuar.png');
}

@media only screen and (max-width: 1224px) {
  .slider-shadow {
    display: none;
  }

  .main-continuar {
    display: none;
  }
}

/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding-top: 73px;
  width: 100%;
  height: 210px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.header-small {
  height: 105px;
  padding-top: 21px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0,0,0,0.2);
}

.header-logo {
  float: left;
}

.header-nav {
  float: right;
}

@media only screen and (max-width: 1300px) {
  .header-logo img {
    width: 200px;
  }
}

@media only screen and (max-width: 1224px) {
  .header {
    padding-top: 0;
    position: relative;
    height: 105px !important;
    background: #000 !important;
  }

  .header-logo {
    padding-top: 33px;
  }

  .header-logo img {
    width: 163px;
  }
}

/* nav-main */

.nav-main li {
  float: left;
}

.nav-main li.divider {
  position: relative;
  width: 1px;
  height: 52px;
}

.nav-main li.divider::before {
  position: absolute;
  top: calc(50% - 30px / 2);
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.2);
  content: '';
}

.nav-main a {
  display: block;
  padding: 0 22px;
  line-height: 52px;
  border-bottom: 3px solid transparent;
  font-family: 'Hammersmith One', sans-serif;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.nav-main a.nav-link-active,
.nav-main a:hover {
  border-bottom-color: #0079ae;
}

@media only screen and (max-width: 1090px) {
  .nav-main a {
    padding: 0 16px;
  }
}

@media only screen and (max-width: 1224px) {
  .header-nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: -110%;
    width: 100%;
    height: 100%;
    background: #0098da;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .header-nav.open-nav-mob {
    right: -25%;
  }

  .nav-main li.divider {
    display: none;
  }
  .nav-main li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .nav-main a {
    padding: 0 28px;
    border-bottom: 0;
    color: #fff !important;
  }
}

.header-small .nav-main a {
  color: #333
}

.header-small .nav-main li.divider::before {
  background: #f6f6f6;
}

/* title */

.title {
  margin-bottom: 50px;
  font-family: 'Coustard', serif;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

.title.-depo span {
  position: relative;
  display: inline-block;
}

.title.-depo span::before {
  position: absolute;
  top: -30px;
  right: -40px;
  content: url('../img/depoimentos.png');
}

@media only screen and (max-width: 950px) {
  .title {
    margin-bottom: 20px;
    font-size: 25px;
  }

  .title.-depo span::before {
    top: -10px;
  }
}

/* subtitle */

.subtitle {
  margin-bottom: 10px;
  font-family: 'Coustard', serif;
  font-size: 25px;
  font-weight: 400;
  color: #fff;
}

/* paragrafo */

.paragrafo p {
  margin-bottom: 30px;
}

/* section-cevil */

.section-cevil {
  background: #195e75 url('../img/bg-default.jpg') top center;
}

@media only screen and (max-width: 870px) {
  .section-cevil {
    padding: 30px 0;
  }
}

/* column */
.columnFull{
  width: 100%;
}

.column-4 {
  width: 40%;
}

.column-5 {
  width: 50%;
}

  .column-5.left {
    padding-right: 25px;
  }

  .column-5.right {
    padding-left: 25px;
  }

.column-6 {
  width: 60%;
}

@media only screen and (max-width: 1023px) {
  .column-4,
  .column-6 {
    width: 100%;
  }

  .column-4 {
    padding-bottom: 20px;
    text-align: center;
  }
}

@media only screen and (max-width: 870px) {
  .column-5 {
    width: 100%;
    text-align: center;
  }

  .column-5.left {
    padding-right: 0;
    padding-bottom: 20px;
  }

  .column-5.right {
    padding-left: 0;
  }
}

/* a-cevil */

.a-cevil {
  height: 340px;
  background: url('../img/cevil-foto.jpg') no-repeat bottom center;
  background-size: cover;
  background-attachment: fixed;
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
  transition: height 0.5s ease;
}

.a-cevil.is-openContent {
  height: 100vh;
}

/* btn */

.btn {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding: 0 40px;
  line-height: 50px;
  border-radius: 50px;
  border: 2px solid #26ffc9;
  background: transparent;
  font-family: 'Hammersmith One', sans-serif;
  font-size: 15px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.btn:focus {
  outline: 0;
}

.btn:hover {
  background-color: #26ffc9;
  color: #009570;
}

@media only screen and (max-width: 870px) {
  .btn {
    width: 100%;
  }
}

/* section-servicos */

.section-servicos {
  padding: 50px 0;
  background: #195e75 url('../img/bg-default.jpg') top center;
  background-size: cover;
}

@media only screen and (max-width: 870px) {
  .section-servicos {
    padding: 30px 0;
  }
}

/* section-depoimentos */

.section-depoimentos {
  padding: 120px 0 120px 0;
  background: #1a2022 url('../img/bg-depoimentos.jpg') center;
  background-size: cover;
}

@media only screen and (max-width: 870px) {
  .section-depoimentos {
    padding: 30px 0;
  }
}

/* section-produtos */

.section-produtos {
  padding: 0 0 70px 0;
  background: #195e75 url('../img/bg-default.jpg') top center;
  background-size: cover;
}

@media only screen and (max-width: 870px) {
  .section-produtos {
    padding: 30px 0;
  }
}

/* section-contato */

.section-contato {
  padding: 50px 0;
  background: #1f1f1f url('../img/bg-footer.jpg') top center;
}

@media only screen and (max-width: 870px) {
  .section-contato {
    padding: 30px 0;
  }
}

/* footer */

.footer {
  padding: 20px 0;
  background-color: #111;
  font-size: 13px;
  color: #888;
  text-align: center;
}

.footer a {
  color: #888;
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  transition: color 0.5s;
}

.footer a:hover {
  color: #fff;
}

@media only screen and (max-width: 650px) {
  .footer {
    padding: 20px;
  }
}

/* column-form */

.column-form {
  width: 50%;
}

  .column-form.left {
    padding-right: 5px;
  }

  .column-form.right {
    padding-left: 5px;
  }

/* form */

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select,
textarea {
  margin: 0 0 10px 0;
  padding: 12px 26px;
  width: 100%;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50px;
  font-family: 'Hammersmith One', sans-serif;
  font-size: 15px;
  color: #fff;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: 0;
}

select {
  cursor: pointer;
  padding: 11px 26px;
  background: #111 url('../img/select.png') no-repeat center right;
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea {
  padding: 26px;
  border-radius: 20px;
}

/* owl-servicos */

.owl-servicos {
  margin-top: 40px;
  padding: 0 50px;
}

.owl-servicos-link {
  position: relative;
  display: block;
  cursor: pointer;
}

.owl-servicos-img {
  border-radius: 10px;
  width: 100%;
}

.owl-servicos-span {
  position: absolute;
  top: calc(50% - 50px / 2);
  left: 56px;
  right: 56px;
  line-height: 50px;
  border-radius: 50px;
  border: 2px solid #fff;
  font-family: 'Hammersmith One', sans-serif;
  font-size: 15px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.owl-servicos-link:hover .owl-servicos-span {
  border-color: #26ffc9;
  background-color: #fff;
  color: #004c66;
}

@media only screen and (max-width: 1124px) {
  .owl-servicos-span {
    left: 10px;
    right: 10px;
  }
}

/* owl-depoimentos */
.owl-depoimentos-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.owl-depoimentos,
.owl-equipe {
  padding: 0 50px;
}

.owl-depoimentos-foto {
  /* float: left; */
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}

  .owl-equipe-foto {
    float: left;
    width: 41%;
  }

.owl-equipe-foto img,
.owl-depoimentos-foto img {
  border-radius: 50%;
}

.owl-depoimentos-depo {
  /* float: right; */
  width: 84%;
  padding: 15px 0 0 15px;
  font-size: 14px;
  text-align: left;
}
.owl-depoimentos-depo p{
  text-align: justify;
}

  .owl-equipe-txt {
    float: right;
    width: 59%;
    padding: 30px 0 0 20px;
    font-size: 15px;
  }

  .owl-equipe-txt h3 {
    font-family: 'Coustard', serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
  }

@media only screen and (max-width: 610px) {
  .owl-depoimentos-foto,
  .owl-depoimentos-depo {
    width: 100%;
    text-align: center;
  }

  .owl-depoimentos-depo {
    padding: 15px 0 0 0;
  }
}

/* owl-lembrancas */

.owl-lembrancas {
  border-radius: 7px;
  background-color: #fff;
}

.owl-lembrancas-item {
  padding: 20px;
}

/* lembrancas */

.lembrancas li {
  float: left;
  width: 25%;
  border-right: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
}

.lembrancas li:nth-child(1n+5) {
  border-bottom-color: #fff;
}

.lembrancas a {
  position: relative;
  display: block;
}

.lembrancas a::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 15px;
  border: 2px solid #26ffc9;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  opacity: 0;
  content: '';
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.lembrancas a:hover::before {
  opacity: 1;
}

@media only screen and (max-width: 780px) {
  .lembrancas li {
    width: 50%;
    text-align: center;
    border: 0;
  }
}

/* contato-endereco */

.contato-endereco {
  float: left;
  width: 50%;
}

.contato-endereco h1 {
  margin-bottom: 10px;
  font-family: 'Hammersmith One', sans-serif;
  font-size: 23px;
  font-weight: 400;
  color: #1dd5b2;
}

.contato-endereco h2 {
  position: relative;
  padding-left: 36px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.contato-endereco h2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background-image: url('../img/icon-what.png');
  content: '';
}

/* contato-map */

.contato-map {
  float: right;
  width: 50%;
}

.contato-map a {
  position: relative;
  padding-left: 66px;
  display: block;
  color: #fff;
}

.contato-map a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 47px;
  height: 56px;
  background-image: url('../img/icon-map.png');
  content: '';
}

@media only screen and (max-width: 650px) {
  .contato-endereco,
  .contato-map {
    width: 100%;
  }

  .contato-map {
    padding-top: 20px;
  }
}

/* contato-atend */

.contato-atend {
  padding-top: 30px;
}

.contato-atend p {
  margin-bottom: 20px;
}

.contato-atend h3 {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 700;
}

/* conheca-content */

.conheca-content {
  overflow: hidden;
  position: relative;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

.conheca-content.is-opacity-ok {
  visibility: visible;
  opacity: 1;
}

.icon-close {
  position: absolute;
  top: 80px;
  right: 80px;
  width: 64px;
  height: 64px;
  background-image: url('../img/icon-close.png');
}

@media only screen and (max-width: 1570px) {
  .icon-close {
    top: 80px;
  }
}

@media only screen and (max-width: 870px) {
  .icon-close {
    top: 30px;
    right: 30px;
  }
}

.scroll-content {
  position: relative;
  overflow-y: scroll;
  padding: 60px 0 0 0;
  width: 100%;
  height: 100vh;
  -webkit-overflow-scrolling: touch;
}

.scroll-content::-webkit-scrollbar-track {
  background: #1F0510;
}

.scroll-content::-webkit-scrollbar {
  width: 8px;
  background: #26FFC9;
}

.scroll-content::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #26FFC9;
}

/* detalhes-quem */

.detalhes-quem li {
  margin-bottom: 60px;
}

/* section-servicos-detalhes */

.section-servicos-detalhes {
  overflow: hidden;
  /*height: 0;
  opacity: 0;
  visibility: hidden;*/
  background: url('../img/servicos.jpg') no-repeat bottom center;
  background-attachment: fixed;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-servicos-detalhes.show-servico-detalhes {
  height: 590px;
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 580px) {
  .section-servicos-detalhes.show-servico-detalhes {
    height: 690px;
  }
}

.servico-det-padding {
  position: relative;
  padding: 50px 0;
}

.servico-close {
  position: absolute;
  top: 80px;
  right: 80px;
  width: 64px;
  height: 64px;
  background-image: url('../img/icon-close.png');
}

@media only screen and (max-width: 1570px) {
  .servico-close {
    top: 80px;
  }
}

@media only screen and (max-width: 870px) {
  .servico-close {
    top: 30px;
    right: 30px;
  }
}

/* social */

.social {
  text-align: right;
}

.social-icon {
  display: inline-block;
  margin: 0 4px;
  width: 26px;
  height: 26px;
  background-image: url('../img/icons-social.png');
}

.social-facebook {
  background-position: 0 0;
}

.social-twitter {
  background-position: -26px 0;
}

.social-youtube {
  background-position: -52px 0;
}

.social-instagram {
  background-position: -78px 0;
}

/* social-sob */

.social-sob {
  padding-top: 15px;
}

/* icon-nav */

.icon-nav {
  display: none;
  position: absolute;
  top: 39px;
  right: 20px;
  width: 39px;
  height: 26px;
  background-image: url('../img/icon-nav.png');
}

.icon-nav-close {
  position: absolute;
  top: 0;
  left: -40px;
  width: 40px;
  height: 40px;
  background: #0080B7 url('../img/icon-nav-close.png') no-repeat center;
}

@media only screen and (max-width: 1224px) {
  .icon-nav {
    display: block;
  }
}

  .owl-equipe-txt_change {
    float: left;
    width: 59%;
    padding: 30px 0 0 20px;
    font-size: 15px;
  }

  .owl-equipe-txt_change h3 {
    font-family: 'Coustard', serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
  }
  
.alert{
  border-radius: 10px;
  padding: 20px 30px;
  text-align: center;
  background:#195e75;
  
  color: #fff;
}	



/* Area do formando */
.areaFormandoFancy{
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
}
.areaFormandoFancy.showF{
  top: 0;

  opacity: 1;
  visibility: visible;
  pointer-events: all;

  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
}

.areaFormandoFancy .container{
  background: #fff;
  padding: 50px;
  position: relative;
}

.closeAreaF{
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #195e75;
  color: #fff;
  cursor: pointer;
}

.areaFormandoFancy h2{
  color: #1F0510;
  text-align: center;
}

#form_enter input{
  width: 100%;
  border: 2px solid #1F0510;
  color: #1F0510;
}
#form_enter button{
  color: #1F0510;
  border-color: #195e75;
}
#form_enter button:hover{
  background: #195e75;
  color: #fff;
}
#form_enter input::-webkit-input-placeholder {
  color: #1F0510 !important;
}
#form_enter input:-moz-placeholder {
  color: #1F0510 !important;   
}
#form_enter input::-moz-placeholder {
  color: #1F0510 !important;  
}
#form_enter input:-ms-input-placeholder {
  color: #1F0510 !important;  
}

.t-justify{
  text-align: justify;
}

.listaServicos{
  width: 100%;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(3,1fr);
  margin-top: 30px;
}
.listaServicos li{
  width: 100%;
  padding-left: 15px;
  position: relative;
}
.listaServicos li::before{
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

@media screen and (max-width: 1100px){
  .listaServicos{
    grid-template-columns: repeat(2,1fr);
  }
}

@media screen and (max-width: 700px){
  .listaServicos{
    grid-template-columns: repeat(1,1fr);
  }
}