@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html { scroll-behavior: smooth; }
:root {
  --verde_principal: #88D317;
  --roxo_principal: #6D3369;
  --texto_cinza: #666666;

}

body::-webkit-scrollbar-track {
  background-color: #fff;
}
body::-webkit-scrollbar {
  width: 4.5px;
  background: #fff;
}
body::-webkit-scrollbar-thumb {
  background: #6D3369;
}

body{
  font-family: 'Montserrat', sans-serif;
  
}
body,
ul {
  margin: 0px;
  padding: 0px;
}

a {
  color: black;
  text-decoration: none;
}

#logo {
  font-size: 1.5rem;
  font-weight: bold;
}

#header {
    box-sizing: border-box;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #fff;
}

#menu {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}

#menu a {
  display: block;
  padding: 0.5rem;
  font-weight: 500;
  margin-left: 10px;
  color: #6C3667;
}

#menu a::after{
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--roxo_principal);
    transition: width .3s;
}

#menu a:hover::after{
  width: 100%;
}

#menu a.icon{
  margin-left: 10px;
}

#btn-mobile {
  display: none;
}

@media (max-width: 600px) {
    #header {
        box-sizing: border-box;
        height: 70px;
        padding-right: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #e7e7e7;
      }
  #menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0px;
    background: #e7e7e7;
    transition: 0.6s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
  }
  #nav.active #menu {
    height: calc(100vh - 70px);
    visibility: visible;
    overflow-y: auto;
  }
  #menu a {
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  }
  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
  }
  #hamburger {
    border-top: 2px solid;
    width: 20px;
  }
  #hamburger::after,
  #hamburger::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }
  #nav.active #hamburger {
    border-top-color: transparent;
  }
  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }
  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
}

/* Fim Menu */


/* Inicio Banner */

.quadrado{
  background-image: url("../img/banner/banner.png");
  width: 100%;
  height: 70vh;
  background-size: cover;
  padding-bottom: 25px;
}

.texto_apresentacao{
    padding-top: 8vh;
    width: 35%;
}

.texto_apresentacao h1 {
  color: #464545;
  font-weight: bold;
  font-size: 3rem;
  
}


.texto_apresentacao p {
  padding-top: 15px;
  color: #464545;
}


.botao_chamada_banner{
  border: none;
  width: 14rem;
  height: 3rem;
  border-radius: 0.5rem;
  margin-top: 51px;
  background-color: var(--roxo_principal);
  color: #fff;
  font-weight: 600;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.botao_chamada_banner:hover{
  background-color: #fff;
  color: var(--roxo_principal);
  border: 1px solid var(--roxo_principal);
}



/* Nossos serviços */

.nossos_servicos{
  padding-top: 3rem;
}

.nossos_servicos h1{
  font-weight: 700;
  color: var(--verde_principal);
}

.nossos_servicos p{
  font-weight: 200;
  color: var(--texto_cinza);
  text-align: justify;
}


.caixa_nossos_servicos span {
  font-size: 1.5rem;
  color: var(--texto_cinza);

}

.bloco_icone{
  width: 100%;
  height: 80px;
  background-color: var(--verde_principal);
}

.icone {
  padding: 0.4rem;
  background-color: var(--verde_principal);
  height: 50px;
  border-radius: 4px;
}

.roxo{
  background-color: var(--roxo_principal);
}

.bloco span{
  color: var(--texto_cinza);
  font-weight: 400;
}
.card {
  margin-top: 1rem;
  -webkit-box-shadow: 5px 5px 19px 5px rgba(226,226,226,0.73); 
  box-shadow: 5px 5px 19px 5px rgba(226,226,226,0.73);
  border: none;
}

/* Curso */

.box-video {
  width: 100%;
  height: 350px;
}

#area-curso {
  margin-top: 50px;
  background: rgba(136, 211, 23, 0.3);
  text-align: justify;
  padding-top: 5rem;
  padding-bottom: 5rem;
  color: #666666;
}

#area-curso h1 {
  font-weight: 700;
  color: #292929;
}

#area-curso button {
  margin-top: 30px;
  font-weight: 400;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

#area-curso button:hover{

  -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: all 0.7s ease;
}




#texto-curso {
  margin-top: 25px;
}


.c-carousel__thumb{
  background-image: url(img/1.jpg);
  width: 145px;
    height: 115px;
    background-size: cover;
    transition: 1s;
    border: none;
    border-radius: 5px;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.c-carousel__thumb.js-thumb:hover{

    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: all 0.7s ease;
}



.titulo_clientes{
  padding-top: 5rem;
      padding-bottom: 5rem;
}

#area_clientes h1{
  color: var(--verde_principal);
  font-weight: 600;
}
#area_clientes h3{
  color: #292929;
  font-weight: 600;
}

#area_clientes h5{
  color: #292929;
  font-weight: 300;
}

#area_clientes p{
  color: #292929;
  font-weight: 400;
  text-align: justify;
  padding-top: 45px;
}

.info_clientes{
  padding-top: 25px;
}

.botao_next_cliente{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: none;
    background-color: var(--verde_principal);
    margin:1rem;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.botao_next_cliente:hover{
  background-color: #AFE16E;
}

/* width: 50px;
    height: 50px;
    border-radius: 100%;
    border: none;
    background-color: var(--verde_principal); */

    .controles{
      padding-top: 20px;
    }

 
    
    #time_rima{
      padding-top: 5rem;
      padding-bottom: 5rem;
    }
    #time_rima h1{
      color: var(--roxo_principal);
      font-weight: 600;
    }
     .time_foto {
      width: 250px;
      margin: 15px;
      transition: all 0.7s ease;
     }
     .time_foto p{
       opacity: 0;
     }
     .time_foto img{
      -webkit-transition: all 0.7s ease;
      transition: all 0.7s ease;

     }
     .time_foto:hover{
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      transition: all 0.7s ease;

     }

     .time_foto:hover img{
      filter: brightness(50%);
     }

     .botao_next_time{
      width: 50px;
      height: 50px;
      border-radius: 100%;
      border: none;
      background-color: var(--verde_principal);
      margin: 1rem;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease;
     }

     .botao_next_time:hover{
       background-color: #AFE16E;
     }
     
     .rodape{
       background-color: #3D1B39;
       color: #fff;
       padding-top: 2rem;
     }

     .rodape_titulo{
      font-weight: 800;
     }

     .rodape_titulo ul li a{
      font-weight: 200;
      font-size: 0.8rem;
     }

      .gallery_product
      {
          margin-bottom: 30px;
      }

      .gallery_product .title{
        color:#fff;
        margin: 0;
        position:relative;
        bottom: 11rem;
        opacity: 0;
      }

      .gallery_product .title small{
        display:block;
        font-weight: 200;
      }

      .time_foto:hover .gallery_product .title{
        opacity: 1;
      }
/* Contato */

#area-contato h1 {
  color: var(--roxo_principal);
  font-weight: 600;
}


#area-contato{
  padding-bottom: 2rem;
}

.formulario p{
  font-weight: 700;
  color: #666666;
}
.formulario button{
  border: none;
  width: 10rem;
  height: 3rem;
  border-radius: 0.5rem;
  margin-top: 30px;
  background-color: var(--roxo_principal);
  color: #fff;
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;

}

.formulario button:hover{
  background-color: #fff;
  border: 1px solid var(--roxo_principal);
  color: var(--roxo_principal);
}

.formulario .caixa_de_texto{
  border: none;
  border-bottom: solid 3px #E0E0E0;
  border-radius: 0px;
  box-shadow: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.form-check .form-check-input{
  box-shadow: none;
  border-color: var(--roxo_principal);
}

.form-check-input:checked{
  background-color: var(--roxo_principal);
}

.formulario .caixa_de_texto:focus{
  border-bottom: solid 3px var(--roxo_principal);
}


@media(min-width:992px){
  #menu a{
    margin-left: 45px;
  }
}

@media(max-width:767px){
  .quadrado{
    background-image: url("../img/banner/banner_mobile.png");
  }
}

@media(min-width:768px){
  .texto_apresentacao{
    padding-top: 17.5vh;
    width: 35%;
  }
  #menu a.ml-50{
    margin-left: 75px;
  }
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1023px) 
  and (-webkit-min-device-pixel-ratio: 1)
{
  .cs-wrapper{
    padding-top: 20px !important;
    padding-left: 220px !important;
  }

  .quadrado{
    height: 510px;
  }
}

@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (-webkit-min-device-pixel-ratio: 1)
{
  .quadrado{
    height: 600px;
  }
}

.textareamsg{
  box-shadow: none !important;
}

.textareamsg:focus{
  border-color: var(--roxo_principal);
}

.background-icon{
  border-radius: 50%;
  background: var(--roxo_principal);
  font-size: 18px !important;
  padding: 7px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.background-icon img{
  width: 24px;
  height: 24px;
}

.background-icon:hover{
  background: rgba(212, 212, 212, 0.05);
}
