:root{
   --verde:#14bb87;
   --cinza:#7e7f7f;
   --bg-verde:#ddf5ee;
   --verde-medio:#ade8d6;
   --gradient-bg:linear-gradient(40deg, rgba(20,187,135,1) 0%, rgba(15,218,197,1) 100%);
}

*{
   padding: 0;
   margin: 0;
   font-family: "Montserrat", sans-serif;
}

body{
   max-width: 100vw;
   overflow-x: hidden}

a{
   text-decoration: none;
   color: inherit;
}

a *{
   pointer-events: none;
}

.safe{
   margin: 0 auto;
   max-width:1050px;
}

.top-section{
   background:url("images/bg-hero.jpg");
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   
}

.inner-nav{
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 15px 0px;
}

nav{
   display: flex;
   justify-content: space-between;
}

nav p{
   color: var(--verde);
   margin-right: 20px;
   font-weight: bold;
   cursor: pointer;
}

nav p:hover{
   color: var(--cinza);
}

nav button{
   display: none;
}

.hamb-con{
   border-radius: 10px;
   border: 1px solid var(--verde);
   width: 40px;
   height: 40px;
   cursor:pointer;
   padding: 8px;
   display: flex;
   flex-direction: column;
   box-sizing: border-box;
   justify-content: space-between;
   display: none;
}

.hamb-con p{
   width: 100%;
   height: 2px;
   background-color: var(--verde);
   margin-bottom: 10px;
}

.cta-btn{
   color: white;
   background: var(--gradient-bg);
   padding: 15px 20px;
   border-radius: 5px;
   display: inline-block;
   animation: pulso 1.25s infinite cubic-bezier(0.16, 0, 0, 1);
   box-shadow:0 0 0 0 rgba(122, 237, 148, 0.29);
}

.cta-btn img{
   vertical-align: middle;
}

.hero-con{
   margin-top: 30px;
}

.hero-con .swiper-slide{
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.hero-text{
   max-width: 450px;
}

.hero-tag{
   border-radius: 5px;
   padding: 10px 20px;
   color: var(--verde);
   border: 2px solid var(--verde);
   display: inline-block;
}

.hero-con h1{
   color: var(--verde);
   margin: 15px 0px;
   font-size: 30px;
}

.hero-img img{
   display: block;
}

.flare-dir{
   background:url("images/flare.png");
   background-repeat: no-repeat;
   height: 500px;
   width: 500px;
   background-size: contain;
   position: absolute;
   right: -100px;
   z-index: -1;
}

.flare-esq{
   background:url("images/flare.png");
   background-repeat: no-repeat;
   height: 500px;
   width: 500px;
   background-size: contain;
   position: absolute;
   left: -100px;
   z-index: -1;
}

.conheca-con{
   margin: 30px auto;
}

.conheca-con h1{
   color: var(--verde);
}

.difs{
   margin-top: 15px;
   display: flex;
   justify-content: space-between;
}

.dif{
   border-radius: 10px;
   background-color:var(--bg-verde);
   color: var(--cinza);
   padding: 25px 25px;
   width: 200px;
   position: relative;
   overflow: hidden;
   text-align: center;
}

.dif:after{
   content:"";
   position: absolute;
   bottom: -30px;
   background-color: var(--verde-medio);
   width: 60px;
   height: 60px;
   border-radius: 100%;
   right: -30px;
}

.dif:before{
   content:"";
   position: absolute;
   top: -30px;
   background-color: var(--verde-medio);
   width: 60px;
   height: 60px;
   border-radius: 100%;
   left: -30px;
}

.especialidades-con{
   margin: 50px auto;
}

.especialidades-con h1{
   text-align: center;
   color: var(--verde);
}

.especs{
   margin: 0 auto;
   margin-top: 20px;
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   max-width: 1080px;
}

.espec{
   border-radius: 15px;
   background-color: var(--bg-verde);
   width: 175px;
   height: 175px;
   margin-bottom: 20px;
   text-align: center;
   position: relative;
   overflow: hidden;
   display: flex;
   align-items: center;
   flex-direction: column;
   justify-content: center;
   flex-wrap: wrap;
   margin-right: 10px;
}

.espec:after{
   content:"";
   position: absolute;
   bottom: -30px;
   background-color: var(--verde-medio);
   width: 60px;
   height: 60px;
   border-radius: 100%;
   right: -30px;
}

.espec:before{
   content:"";
   position: absolute;
   top: -30px;
   background-color: var(--verde-medio);
   width: 60px;
   height: 60px;
   border-radius: 100%;
   left: -30px;
}

.espec > img{
   background-color: var(--verde);
   border-radius: 100%;
   padding: 10px;
}

.espec strong{
   color: var(--verde);
}

.espec p{
   color: var(--cinza);
   margin-top: 5px;
}

.espec-final{
   border-radius: 15px;
   background: var(--gradient-bg);
   width: 100%;
   height: 100px;
   color: white;
   text-align: center;
   position: relative;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: 20px;
   animation: pulso 1.25s infinite cubic-bezier(0.16, 0, 0, 1);
   box-shadow:0 0 0 0 rgba(122, 237, 148, 0.29);
}

.espec-final img{
    background-color: var(--verde-medio);
   border-radius: 100%;
   padding: 10px;
   margin-right: 15px;
}

.espec-final div{
   text-align: left;

}

.espec-cta{
   position: absolute;
   background-color: rgba(20,187,135,0.8);
   height: 100%;
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   transform: translateY(-100%);
   transition: all 2.5;
   flex-direction: column;

} 

.espec:hover .espec-cta{
    transform: translateY(0%);
}

.convenios-con h2{
   color: var(--verde);
}

.convs-car{
   border-top: 1px solid var(--cinza);
   border-bottom: 1px solid var(--cinza);
   margin-top: 20px;
   padding: 20px 0px;
   overflow: hidden;
    display: flex;
}

.convs-car img{
  
   height: 100px;
   animation: 60s convenios linear infinite;

}

@keyframes convenios{

   100%{
      transform:translateX(-100%);
   }

}

.map-con{
   margin: 50px auto;
   position: relative;
}

#map{
   height: 250px;
   border-radius: 10px;
}

.contact-info{
   border-radius: 10px;
    padding: 10px 20px;
    background-color: var(--verde);
    color: white;
    width: 350px;
    position: absolute;
    top: 0;
    right: 80px;
    margin: 10px;
}

.contact-info h1{
   margin-bottom: 20px;
}

.contact-info a, .contact-info div{
   display: flex;
   margin-bottom: 15px;
   align-items: center;
}

.contact-info img{
   margin-right: 15px;
}

.sobre-con{
   display: flex;
   margin-top: 30px;
}

.about-text{
   margin-left: 20px;
}

.about-text h1{
   color: var(--verde);
   position: relative;
   margin-left: 56px;
}

.about-text h1:before{
   content: "";
    height: 4px;
    width: 50px;
    background-color: var(--verde);
    position: absolute;
    left: -56px;
    top: 14px;
}

.about-text p{
   margin-top: 15px;
   text-align: justify;
}

.faq-con{
   margin-top: 40px;
   display: flex;
   justify-content: center;
}

.faq-title{
   color: var(--verde);
   margin-right: 50px;
   width: 300px;
}

.faq-title h1{
   font-size: 30px;
}

.pergunta{
   border-bottom: 2px solid var(--cinza);
   padding: 15px 30px;
   cursor: pointer;
   max-width: 500px;

}

.pergunta p{
   color: var(--verde);
   text-align: left;
}

.resposta{
   margin-top: 15px;
   display: none;
}

.floating-elements{
   position: fixed;
   z-index:9;
   bottom:50px;
   right: 27px;
   text-align: right;
   bottom:90px;
   
}

.wpp-floating{
  cursor: pointer;
  /*box-shadow:0px 5px 15px -3px #00000078;*/
  box-shadow:0 0 0 0 rgba(122, 237, 148, 0.29);
  overflow: hidden;
  border-radius: 100%;
  width:57px;
  height: 57px;
  display: block;
  pointer-events: initial;
  animation: pulso 1.25s infinite cubic-bezier(0.16, 0, 0, 1);
}

.wpp-floating img{
   display: block;
   margin:-2px -3px;
}

@keyframes pulso{
   100%{
      box-shadow:0 0 0 45px rgba(232, 76, 61, 0);
   }
}

@keyframes pulse {
  0% {
    transform: scale(.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 50px rgba(#5a99d4, 0);
  }
    100% {
    transform: scale(.9);
    box-shadow: 0 0 0 0 rgba(#5a99d4, 0);
  }
}

footer{
   background-color: var(--verde);
   color: white;
   padding: 10px 0px;
   text-align: center;
   margin-top: 40px;
}

@media only screen and (max-width:1050px){

   .inner-nav{
      padding: 0px 5px;
   }

   nav{
      display: none;
      position: fixed;
      top: 0;
      background-color: white;
      left: 0;
      right: 0;
      height: 100%;
      z-index: 99;
      text-align: center;
   }

   nav button{
      display: initial;
      margin-top: 20px;
      border-radius: 5px;
      padding: 10px 25px;
      background-color:#e74c3c;
      color: white;
      border: none;
      cursor: pointer;
      margin-bottom: 20px;
   }

   nav p{
      margin-right: 0px;
      margin-bottom: 30px;
   }

   .hamb-con{
      border-radius: 10px;
      border: 1px solid var(--verde);
      width: 40px;
      height: 40px;
      cursor:pointer;
      padding: 8px;
      display: initial;
      flex-direction: column;
      box-sizing: border-box;
      justify-content: space-between;
   }

   .hamb-con p{
      width: 100%;
      height: 2px;
      background-color: var(--verde);
      margin-bottom: 10px;
   }

   .hero-con .swiper-slide{
      flex-direction: column;
      text-align: center;
   }

   .hero-img{
      max-width: 500px;
      width: 100%;
   }

   .hero-img img{
      width: 100%;
   }

   .conheca-con{
      text-align: center;
   }

   .difs{
      flex-direction: column;
      align-items: center;
   }

   .dif{
      margin-bottom: 15px;
   }

   .especs{
      flex-direction: column;
      align-items: center;
   }

   .espec{
      margin-bottom: 20px;
   }

   .map-con{
      height: 500px;
   }

   #map{
      height: 100%;
   }

   .contact-info{
      right: 0;
      left: 0;
      margin: 0px auto;
      bottom: 10px;
      top: initial;
   }

   .sobre-con{
      flex-direction: column;
   }

   .sobre-con img{
      width: 100%;
   }

   .about-text{
      margin-left: 0px;
      padding: 0px 5px;
   }

   .faq-con{
      flex-direction: column;
      padding: 0px 5px;
   }

   .faq-title{
      text-align: center;
      margin: 0px auto;
   }

   .faq{
      margin-top: 20px;
   }

   .pergunta{
      text-align: center;
   }
}