/* Estado inicial escondido */
.hidden {
  opacity: 0;
  transform: translateX(0); /* neutro antes da ativação JS */
}

/* Animação da esquerda para direita */
.animate-left {
  animation: slideFromLeft 1s ease-out forwards;
}

/* Animação da direita para esquerda */
.animate-right {
  animation: slideFromRight 1s ease-out forwards;
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-up {
  animation: slideFromBottom 1s ease-out forwards;
}

@keyframes slideFromBottom {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


    /* Barra superior fixa */
    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #38B6FF;
      color: white;
      padding: 10px 20px;
      z-index: 1030; /* acima do offcanvas */
    }

    /* Ajuste no conteúdo para não ficar atrás da barra */
    body {
      padding-top: 60px;
    }

    /* Conteúdo deslocado quando o menu direito abre */
    .shifted-right {
      margin-right: 250px;
      transition: margin-right 0.3s ease;
      
    }

    .offcanvas-end {
      width: 250px;
     
    }

    .titulo-1{


position:absolute;
top:25%;
z-index: 5;
width:100%;




}


.barr_sub{
      width: 100%;
      background-color: #38B6FF;
      color: white;
      padding: 45px;
      height:145px;
      
    }


    .barr_rodape{
      width: 100%;
      background-color: #38B6FF;
      color: white;
      padding: 45px;
      
      
    }


@media (min-width: 768px) {

    .img_div{

  background-image: url('https://socioclean.com.br/img/img_banner.png');
  background-size: cover;
  width: 100%;
  height: 100%; /* ajuste a altura conforme desejar */
  margin: 0 auto;
  margin: 0 auto;
  opacity: 0;
   background-repeat: no-repeat;

    }

    

.titulo-1 h1{
  color:#ffffff;

    font-size: 100px;
}
.titulo-1 h4{
  color:#ffffff;

    font-size: 30px;
}




.img_div_celular{

  background-image: url('https://socioclean.com.br/img/img_banner_socioclean.png');
  background-size: cover;
  width: 100%;
  max-width:700px;
  height: 100%;
  max-height:500px; /* ajuste a altura conforme desejar */
  margin: 0 auto;
  margin: 0 auto;
  opacity: 0;
   background-repeat: no-repeat;

    }


    .img_div_executive{

  background-image: url('https://socioclean.com.br/img/executivo-e-tecnico-socioclean-radius.png');
  background-size: contain;
  width: 100%;
  max-width:700px;
  height: 100%;
  max-height:700px; /* ajuste a altura conforme desejar */
  margin: 0 auto;
  margin: 0 auto;
  opacity: 1;
   background-repeat: no-repeat;

    }


.div_texts1{
      width:40%;
    }

  }
    
  @media (max-width: 767px) {


    .div_texts1{
      width:90%;
    }

     


    .img_div_executive{

  background-image: url('https://socioclean.com.br/img/executivo-e-tecnico-socioclean-radius.png');
  background-size: contain;
  width: 100%;
  max-width:300px;
  height: 300px; /* ajuste a altura conforme desejar */
  margin: 0 auto;
  margin: 0 auto;
  opacity: 1;
   background-repeat: no-repeat;

    }


    .img_div_celular{

  background-image: url('https://socioclean.com.br/img/img_banner_socioclean.png');
  background-size: contain;
  width: 300px;
  height: 300px; /* ajuste a altura conforme desejar */
  margin: 0 auto;
  margin: 0 auto;
  opacity: 0;
   background-repeat: no-repeat;

    }

    .img_div{

  background-image: url('https://socioclean.com.br/img/img_banner-mobile.png');
  background-size: contain;
  width: 100%;
  height: 700px;
  margin: 0 auto;
  margin: 0 auto;
  opacity: 0;
   background-repeat: no-repeat;

    }

    
    .titulo-1 h1{
  color:#ffffff;

    font-size: 30px;
}
.titulo-1 h4{
  color:#ffffff;

    font-size: 15px;
}

  }

  


.botao-verde-pulse {
    background-color: #00cc66;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 10px #00ff99, 0 0 20px #00ff99;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
    
  }

  .botao-verde-pulse:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00ff99, 0 0 30px #00ff99;
  }


  .ul-display-li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* permite quebrar linha */
  gap: 16px; /* espaço entre os itens */
  justify-content: center;
}

.ul-display-li li {
  padding: 15px 20px;
  border-radius: 8px;
  flex: 1 1 200px; /* cresce, encolhe e tem largura mínima */
  text-align: center;
}

/* Responsivo: em telas pequenas os itens ocupam toda a linha */


@media (max-width: 767px) {

.ul-display-li li {
    flex: 1 1 100%;
  }

}




.ul-display2-li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* permite quebrar linha */
  gap: 16px; /* espaço entre os itens */
  justify-content: center;
}

.ul-display2-li li {
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
}



.ul-display3-li {
  list-style: none;
  padding: 0;
  margin: 0 auto; /* centraliza a ul */
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* alinha horizontalmente */
  align-items: center;
  gap: 16px;
  max-width: 1080px;
}

.ul-display3-li .li11,
.ul-display3-li .li12 {
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
}

@media (min-width: 768px) {
  .ul-display3-li .li11 {
    justify-content: flex-end;
  }

  .ul-display3-li .li12 {
    width: 700px;
  }
}

@media (max-width: 767px) {
  .ul-display3-li .li12 {
    width: 300px;
  }
}




.ul-display-links-li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap; /* permite quebrar linha */
  gap: 16px; /* espaço entre os itens */
  justify-content: center;
}

.ul-display-links-li li {
  padding: 8px;
  text-align: center;
}
.ul-display-links-li li a{
  color:#ffffff;
  text-decoration: none;
  
}
.ul-display-links-li li a:hover{
  text-decoration: underline;
  
}



.nav_style_menu a{
  color: #ffffff !important;


}



.dropdown_color button{
  color: #ffffff !important;
}

.dropdown_color ul{
  background-color: #38B6FF !important;
}

.dropdown_color a:hover{
  color:  #000000 !important;
   background-color: #38B6FF !important;
}




.ul-display-nav-li {
  display: flex;
  justify-content: flex-end; /* alinha tudo à direita */
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}





@media (min-width: 768px) {

.ul-display-nav-li .li_2 {
  width: 70%;
  display: flex;
  justify-content: flex-end; /* navbar encostada na direita */
  padding-right:200px;
}

.ul-display-nav-li .li_1 {
  width: 30%;
  display: flex;
  justify-content: flex-end; /* logo encostada na direita */
}

}


@media (max-width: 767px) {
.ul-display-nav-li .li_2 {
  width: 70%;
  display: flex;
  justify-content: flex-end; /* navbar encostada na direita */
  
}
.ul-display-nav-li .li_1 {
  width: 30%;
  display: flex;
 
}

}
@media (min-width: 768px) {

.parallax_bg_img_whatsapp {
  background-image: url('https://socioclean.com.br/img/papel-de-parede-whatsapp-branco-e-azul.jpg'); /* sua imagem */
  background-attachment: fixed;  /* ativa o efeito parallax */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width:100%;
  height: 600px;
  
  

}
}

@media (max-width: 767px) {

.parallax_bg_img_whatsapp {
  background-image: url('https://socioclean.com.br/img/papel-de-parede-whatsapp-branco-e-azul.jpg'); /* sua imagem */
  background-attachment: fixed;  /* ativa o efeito parallax */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width:100%;
  height: 600px;
  position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index:5;
  
  

}

}

.parallax_bg_img {
  background-image: url('https://socioclean.com.br/img/img_banner2.jpg'); /* sua imagem */
  background-attachment: fixed;  /* ativa o efeito parallax */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color:#ffffff;
}
.parallax_bg_img h2{
color:#ffffff !important;
}
.parallax_bg_img h5{
color:#000000 !important;
}
.parallax_bg_img .card-text{
color:#000000 !important;
}

.parallax_bg_img2 {
  background-image: url('https://socioclean.com.br/img/bg_img3.jpg'); /* sua imagem */
  background-attachment: fixed;  /* ativa o efeito parallax */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color:#ffffff;
}
.parallax_bg_img2 h2{
color:#ffffff !important;
}

.navbar-toggler-icon{
  color:#ffffff !important;
}

.login-container {
      background-color: #fff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,0,0,0.2);
      width: 100%;
      max-width: 400px;
    }

    .login-container h3{
        color:#000000 !important;
    }

    .form-control:focus {
      box-shadow: 0 0 0 0.2rem rgba(56, 182, 255, 0.25);
    }

    .btn-login {
      font-weight: bold;
      font-size: 1.1rem;
    }

    .form-links {
      font-size: 0.9rem;
      
    }
    


    .form-links a{
      font-size: 0.9rem;
      text-decoration: none;
    }
    .form-links a:hover {
      text-decoration:underline;
    }

    .mb-3{
        margin-bottom: 0 !important;
    }




    @media (max-width: 767px) {
  .info_services {
    display: none;
  }
  .info_services_mobile {
    display: block;
  }
}

@media (min-width: 768px) {
  .info_services {
    display: block;
  }
  .info_services_mobile {
    display: none;
  }
}