body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    min-height: 100vh;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;

   
}

header {
  z-index: 1050;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  
}


.foto_funcionario {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  
 
}


.espaco_entre_linhas {
    line-height: 1.8rem;

}

#loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;

}


#loading-spinner.fade-out {
  opacity: 0;
  pointer-events: none;
}


.logo-preloader {
  width: 200px;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: desenhar 1.5s ease-out forwards;


}


@keyframes desenhar {
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* Animação de piscar */
@keyframes piscar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Classe que ativa o piscar */
.logo-preloader.piscar {
  animation: desenhar 1.5s ease-out forwards, piscar 1s ease-in-out infinite;
}




@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* Efeito de piscar */
@keyframes piscar {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}


h1, h2 {
    
    font-family: 'Oswald', sans-serif; /* Define Domine para títulos */
    font-weight: 600;

}

h3, h4 {
    font-family: 'Raleway', sans-serif; /* Define Raleway como a fonte do corpo */
    font-weight: 500;
}

h5, h6 {
    font-family: 'Oswald', sans-serif; /* Define Domine para títulos */
    font-weight: 400;
}

.recuo {
  text-indent: 2rem;

}


header {
    
    z-index: 100;
   
 
}

hr {
  border: none;
  height: 2px;
  background-color: #020202; /* rosa da JC */
  margin: 1rem 0;
}



.nav-link {
    color: #E9303E;
    font-weight: bold;
    

}


.hover:hover{
    text-decoration: underline !important;


}


.logo {
    width: 8%;
}


footer {
    
    background-color:#181818;

}

.logo_footer {
    width: 40%;
   
}

.botao-whatsapp {
    width:200px;
    padding-right: 25px;
    z-index: 1000;
  
}

.botao_sobre_jc {
  border-radius: 25px;
  font-size: 1.3rem;
  background-color: #FB6261;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.botao_sobre_jc::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
  transform: skewX(-20deg);
}

.botao_sobre_jc:hover {
  background-color: #e14c4b;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.botao_sobre_jc:hover::after {
  animation: brilho 0.8s ease forwards;
}

.btn-padrao {
  padding: 0.5rem 3rem;
  font-weight: 600;
  border-radius: 40px;
  font-size: 1rem;
}


@keyframes brilho {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}



.contato-whatsapp__img {
  animation: piscarZap 1.5s infinite ease-in-out;
  box-shadow: 0 0 0 rgba(0, 255, 0, 0.4);
  transition: box-shadow 0.3s ease;
  width: 60px;
  background-color: red;
  
}

@keyframes piscarZap {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 15px 5px rgba(0, 255, 0, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4);
  }
}


.logo-offcanvas {
  width: 40%;
  
}


.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}



@media screen and (max-width: 991px) {
    .logo{
        width: 15%;

    }

    .offcanvas {
      height: 100vh !important;
      display: flex !important;
      flex-direction: column !important;
    }

    .offcanvas .dropdown-menu {
      max-height: 300px;
      overflow-y: auto;
    }

    .offcanvas-body {
      flex: 1 1 auto !important;
      overflow-y: auto !important;
      padding-bottom: 2rem !important;
    }

    .offcanvas .dropdown-menu::-webkit-scrollbar {
      width: 6px;
    }

    .offcanvas .dropdown-menu::-webkit-scrollbar-thumb {
      background-color: #ccc;
      border-radius: 3px;
    }

    .offcanvas .dropdown-menu {
      scrollbar-width: thin;
      scrollbar-color: #ccc transparent;
    }

}


@media screen and (max-width: 768px) {
    .logo {
        width: 20%;

    }


}