body{
  font-family: 'Roboto', sans-serif;
  overflow-x:hidden;
}

.contact-form{
 text-decoration: none;	
 color:black;
}

.contact-form:hover{
 text-decoration: underline;
}

.btn-jornada {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #000000;
  background: linear-gradient(90deg, #563bd1 0%, #858ae3 100%);
  color: white;
  border: none;
  padding: 7px 15px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  border-radius: 100px;
  box-shadow: 12px 12px 24px rgba(79,209,197,.64);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-jornada:hover {
  background-color: #f16233de;
}

.btn-jornada::after {
    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 4px solid #563bd1;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.35s infinite;
}

.btn-jornada:hover::after, .btn-jornada:focus::after {
    animation: none;
    display: none;
}

.btn-jornada:hover::before, .btn-jornada:focus::before {
    opacity: 1;
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: #f16233;
    color: white;
    border: none;
    padding: 7px 15px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

#backToTop:hover {
    background-color: #f16233de;
}

.btn-dark, .btn-dark:active, .btn-dark:visited {
    background-color: #8e94f3 !important;
    color: white !important;
    border-color: #8e94f3 !important;
    font-size: 1.15rem !important;
	transition: all .5s ease-out;
}

.btn-dark:hover{
   transform: scale(1.1) !important;
   background-color: white !important;
   color: #8e94f3 !important;
   transition: all .5s ease-out;
}

.btn-primary, .btn-primary:active, .btn-primary:visited {
    background-color: white !important;
    color: #f16233 !important;
    border-color: white !important;
    font-size: 1.15rem !important;
	transition: all .5s ease-out;
}

.btn-primary:hover{
   transform: scale(1.1) !important;
   background-color: #f16233 !important;
   color: white !important;
   transition: all .5s ease-out;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.btn-success, .btn-success:active, .btn-success:visited {
    background-color: white !important;
    color: #f16233 !important;
    border-color: white !important;
    font-size: 1.15rem !important;
    transition: all .5s ease-out;
    animation: blink 1.8s infinite;
}

.btn-success:hover {
    transform: scale(1.1) !important;
    background-color: #f16233 !important;
    color: white !important;
    transition: all .5s ease-out;
    animation: none; /* Remove o piscar ao passar o mouse */
}

@media screen and (max-width: 449px){
	.video-hover-cell{
	width: 65%;
	}
	.video-element-cell{
	width: 65%;
	}
}

@media screen and (max-width: 649px){
	.video-hover-cell{
	width: 45%;
	}
	.video-element-cell{
	width: 45%;
	}
}

@media screen and (min-width: 650px){

	.video-hover-cell{
	width: 30%;
	}
	.video-element-cell{
	width: 30%;
	}
}

@media screen and (max-width: 767px){
	.header{
	height: 100vh;	
	}
}

@media screen and (min-width: 768px){
	.header{
	height: 90vh;	
	}
}


@media screen and (min-width: 769px){
  .avaliation-video video{
    max-width:50%;
   }
  #orcamento-video{
   display:none;
  }
}

@media screen and (max-width: 768px){
  .avaliation-video video{
    max-width:100%;
  }

  #orcamento-video{
   display:none;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px){
  .collapse .navbar-collapse{
    display: none;
  }
  .navbar-toggler{
    display: none;
  }
}


@media screen and (max-width: 800px){

  .form-pcc{
    display:none;
  }

  .form-celll{
    display:block;
  }

}

@media screen and (min-width: 801px){

  .form-pcc{
    display:block;
  }

  .form-celll{
    display:none;
  }

}


#errorEmail{
  display: none;
}

.math {
  display: flex;
  justify-content: center;
}

#totalvalores{
    width: 120px;
}

#alert{
  display: none;
}

#alert-cell{
  display: none;
}

/* EXTRAS */
  #myBtn {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 19px;
    z-index: 10;
    font-size: 15px;
    border: none;
    outline: none;
    background: #000000;
    background: linear-gradient(90deg, #563bd1 0%, #858ae3 100%);
    color: white;
    cursor: pointer;
    padding: 13px;
    border-radius: 6px;
  }

  #myBtn:hover {
    background-color: #f15927;
    transform: scale(1.17);
  }

  * {
    box-sizing: border-box;
  }

  /* CAMPO DE BUSCA */
  .busca {
    margin: 0 auto;
    position: relative;
    width: 550px;
    z-index: 1;
  }

  /* SOBREPOSIÇÃO */
   .video-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            /* Opacidade de 70% */
            z-index: 998;
            display: none;
        }

  .animation {
    animation: alerta 0.7s infinite;
  }

  .botao-jornada:hover {
    background: linear-gradient(90deg,  #858ae3 0%, #563bd1  100%);
    color: white;
  }

  .botao-jornada {
    font-family: 'Nunito', sans-serif;
    font-size: 30px;
    color: #000000b0;
    background: #000000;
    background: linear-gradient(90deg, #93caf6  0%, #858ae3 100%);
    border: none;
    border-radius: 100px;
    box-shadow: 12px 12px 24px rgba(79, 209, 197, .64);
    transition: all 0.25s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    text-decoration: none;
    z-index: 11;
    color: white;
    border: 1px solid #09a513;
    border-radius: 70px;
    box-shadow: 0 0 0 0 rgba(9, 165, 19, 0.50);
    font-size: 30px;
    display: inline-block;
    text-align: center;
    width: 60px;
    height: 60px;
    line-height: 55px;
    text-decoration: none;
    transition: background, padding 200ms ease-in-out;
    font-size: 1.15em;
    border-color: transparent;
    background-color: #858ae3;
    display: none;
    width: 200px;
    height: 50px;
    color: white;
  }

  @keyframes alerta {
    0% {
        transform: scale();
    }

    70% {
        transform: scale();
        box-shadow: 0 0 0 13px #858ae369;
    }

    100% {
        transform: scale();
        box-shadow: 0 0 0 0 #858ae300;
    }
  }

  .pular{
    border-color: transparent;
    background-color: white;
    /* width: 200px;
    height: 50px; */
    padding: 10px;
    color: #f16233;
    display: none;

  }

  .pular:hover{
      background-color: white;
      color: rgba(0, 0, 0, 0.546);
      transform: scale(1.05);
  }
  .pular:active{
    background-color: white;
    color: rgba(0, 0, 0, 0.546);
    transform: scale(1.05);
  }

  .botao-form{
    font-size: 1.15em;
    border-color: transparent;
    background-color: white;
    width: 200px;
    height: 50px;
    color: white;
  }

.botao-form:hover{
    background-color: rgb(240, 235, 235);
    color: #93caf6;
}

.botao-acao{
    font-size: 1.15em;
    border-color: transparent;
    background-color: white;
    width: 200px;
    height: 50px;
    color: #563bd1;
}

.botao-acao:hover{
    background-color: rgb(240, 235, 235);
    color: #ee4b14e7;
    transform: scale(1.05);
}

  .wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .button {
    width: 50px;
    height: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 30px;
    color: #000000b0;
    background: #000000;
    background: linear-gradient(90deg, #563bd1 0%, #858ae3 100%);
    border: none;
    border-radius: 100px;
    box-shadow: 12px 12px 24px rgba(79,209,197,.64);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    }

  .botao-flutuante button::before {
    content: '';
    border-radius: 100px;
    width: 59px;
    height: 59px;
    border: 3px solid #563bd1;
    box-shadow: 0 0 60px #00000048;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
  }

  .button:hover, .button:focus {
    color: black;
    transform: translateY(-6px);
  }

  .botao-flutuante button:hover::before, .botao-flutuante button:focus::before {
    opacity: 1;
  }

  .botao-flutuante button::after {
    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 4px solid #563bd1;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.35s infinite;
  }

  .botao-flutuante button:hover::after, button:focus::after {
    animation: none;
    display: none;
  }

  @keyframes ring {
    0% {
      width: 5px;
      height: 5px;
      opacity: 1;
    }
    100% {
      width: 90px;
      height: 90px;
      opacity: 0;
    }
  }

  .flex-container .botao-flutuante{
    display: flex;
    align-content: end;
  }

  .botao-flutuante{
    height:60px;
    width: 50px;
    align-items: end;
    
  }
  .fixedd {
    position: fixed;
    bottom: 70px;
    left: 15px;
    z-index: 4;
  }

/* /EXTRAS */

/* HEADER */
  .navbar-expand-lg {
    background-color: white;
    -webkit-box-shadow: 0px 20px 15px -19px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 20px 15px -19px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 20px 15px -19px rgba(0, 0, 0, 0.75);
  }

  .navbar-expand-lg li a {
    color: #f15927;
    font-size: 1.2em;
  }


  .navbar-expand-lg li a:HOVER {
    color: #563bd1;
  }

  .borda {
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: black;
  }

  .menufixo {
    height: 50px;
    margin-top: 0px;
    /* altura que está do topo */
    top: 0px;
    /* altura que vai parar antes do topo */
    position: fixed;
    z-index: 15;
  }
  
  .botao-orcamentos{
    font-size: 1.15em;
    border-color: #563bd1;
    background-color: white;
    width: 140px;
    height: 40px;
    color: #563bd1;
    font-size: 0.9em;
  }

  .botao-orcamentos:hover{
      background-color: #563bd1;
      border-color: #563bd1;
      transition: 450ms;
      color: white;
      transform: scale(1.05);
  }
/* /HEADER */

/* BODY */
  .hidden{
    opacity: 0;
    filter: blur(1px);
    transform: translate(-100%);
    transition: all 1s;
  }

  .show{
    opacity: 1;
    transition: all 1s;
    filter: blur(0px);
    transform: translate(0);
  }

  .banner-section{
    height: 100vh;
  }

  .banner-estrategias .flex-container {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: row;
  }

  .banner-estrategias .flex-container .title{
    justify-content: end;
    flex-direction: column;
  }

  .video-dor{
    margin-top: 80px;
  }

  .back-ground-estrategias2{
    background-color: #3fa7d6;
      color: white;
  }

  .nossa-estrategia h2{
   font-size: 3em;
  }

  .nossa-estrategia p{
   font-size: 1.35em;
   opacity: 0.8;
  }

  .nossa-estrategia2 h2{
   font-size: 3em;
  }

  .nossa-estrategia2 p{
   font-size: 1.35em;
   opacity: 0.8;
  }

  .avaliacao-clientes .flex-container {
    display: flex;
    justify-content: center;
    align-self: center;
  }

  
  .novidades .flex-container{
    display: flex;
    flex-direction: row;
  }

  .novidades a{
    color: #563bd1;
  }

  .novidades a:hover{
    color: #f15927;
    
  }

  
/* /BODY */

/* FOOTER */
  .footer{
    background-color: white;
    
  }

  .col1-footer{
    color: black;
  }

  .col1-footer h5{
  color: rgba(0, 0, 0, 0.764);
  font-size: 1em;
  }

  .col1-footer p{
  color: rgba(0, 0, 0, 0.764);
  }

  .footer-contato{
  color: black;
  font-style: bold;
  }

  .col1-footer i{
    font-size: 1.3em;
    color: #563bd1;
  }

  .col2-footer{
    color: black;
  }

  .col2-footer a{
    color: #563bd1;
    text-decoration: none;
    font-size: 1.1em;
    opacity: 0.85;
  }

  .social-buttons {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 15px 10px;
  }

  .social-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 10px;
  background-color: #fff;
  box-shadow: 0px 0px 8px 3px #563bd1;
  transition: 0.3s;
  }

  .social-button:hover {
  background-color: #f2f2f2;
  box-shadow: 0px 0px 6px 3px #563bd1;
  }

  .social-buttons svg {
  transition: 0.3s;
  height: 20px;
  }

  .facebook {
  background-color: white;
  }

  .facebook svg {
  fill: #f2f2f2;
  }

  .facebook:hover svg {
  fill: #3b5998;
  }


  .linkedin {
  background-color: white;
  }

  .linkedin svg {
  fill: #f2f2f2;
  }

  .linkedin:hover svg {
  fill: #0077b5;
  }

  .instagram {
  background-color: white;
  }

  .instagram svg {
  fill: #f2f2f2;
  }

  .instagram:hover svg {
  fill: #c13584;
  }

  .twitter {
  background-color: white;
  }

  .twitter svg {
  fill: #f2f2f2;
  }

  .twitter:hover svg {
  fill: #c13584;
  }

  .youtube {
  background-color: white;
  }

  .youtube svg {
  fill: #f2f2f2;
  }

  .youtube:hover svg {
  fill: #c13584;
  }

  .pinterest {
  background-color: white;
  }

  .pinterest svg {
  fill: #f2f2f2;
  }

  .pinterest:hover svg {
  fill: #c13584;
  }


  .col2-footer a:hover{
    color: #f15927;
    opacity: 1;
    transform: scale(1.2);
    font-size: 1.2em;
  }


  .col2-footer .flex-container .redes{
    width: 45px;
    height: 45px;
    background-color: white;
  }


  .borda-white{
    border-bottom-style: solid ;
    border-bottom-width: 2px ;
    border-bottom-color: white;
    
  }

  .direitos-reservados{
    background-color: black;
    color: white;
  }

  .direitos-reservados .flex-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .direitos-reservados h6{
  font-size: 0.8em;
  }
/* /FOOTER */



/* ########### Início do media query ############## */

@media screen and (max-width: 800px) {

  /* HEADER */
    .menufixo{
      height: 50px;
      margin-top: 0px; /* altura que está do topo */
      top: 0px; /* altura que vai parar antes do topo */
      position: relative;
    }
  /* /HEADER */

  /* BODY */

  .video-dor{
    margin-top: 0px;
  }

  .flex-container .botao-flutuante{
    display: flex;
    align-content: end;
  }

  .botao-flutuante{
    height:60px;
    width: 50px;
    align-items: end;
  }

  .fixedd {
    position: fixed;
    bottom: 145px;
    left: 15px;
    z-index: 4;
  }

  .banner-estrategias .flex-container {
    display: flex;
    justify-content: start;
    text-align: center;
    flex-direction: column;
    margin-top: 10px;
  }


  .banner-estrategias .flex-container .title{
    justify-content: end;
    flex-direction: column;
  }

  .botao-jornada-flex .flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: start;
    align-content: center;
  }

  .nossa-estrategia h2{
    color: white;
    font-size: 1.5em;
   }
 
   .nossa-estrategia p{
    font-size: 1.2em;
    color: white;
    opacity: 0.8;
   }

  .nossa-estrategia2 h2{
    color: black;
    font-size: 1.5em;
   }
 
   .nossa-estrategia2 p{
    font-size: 1.2em;
    color: black;
    opacity: 0.8;
   }

   .avaliacao-clientes .flex-container {
    display: flex;
    justify-content: center;
    align-self: center;
  }

  .novidades .flex-container{
    display: flex;
    flex-direction: column;
  }

  .pular{
    border-color: transparent;
    background-color: white;
    /* width: 200px;
    height: 80px; */
    padding: 10px;
    color: #f16233;
    display: none;
  }
  /* /BODY */

  /* FOOTER */
    .direitos-reservados h6{
      font-size: 0.68em;
    }

    .social-button {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 60px;
      height: 40px;
      border-radius: 50%;
      margin: 0 10px;
      background-color: #fff;
      box-shadow: 0px 0px 8px 3px #563bd1;
      transition: 0.3s;
    }
  /* /FOOTER */
}

/* @media screen and (-webkit-min-device-pixel-ratio:0) {
  .fixedd {
    position: fixed;
    bottom: 70px;
    left: 15px;
    z-index: 4;
  }

  .button {
    width: 50px;
    height: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 30px;
    color: #000000b0;
    background: #000000;
    background: linear-gradient(90deg, #563bd1 0%, #858ae3 100%);
    border: none;
    border-radius: 100px;
    box-shadow: 12px 12px 24px rgba(79,209,197,.64);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    }

    .botao-flutuante button::before {
      content: '';
      border-radius: 100px;
      width: 59px;
      height: 59px;
      border: 3px solid #563bd1;
      box-shadow: 0 0 60px #00000048;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: all .3s ease-in-out 0s;
    }

    .wrap {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
} */