*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

.nav-bar{
    background-color: rgb(255, 255, 255);
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0.6%;
    position: fixed;
    z-index: 3;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.instag-nav-bar{
    display: none;
}

.logo{
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 1.5em;
}

.logo a{
    text-decoration: none;
}

.logo img{
    width: 16.5%;
}

.menu-link{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 7%; 
}

.menu-link li{
    list-style: none;
    
}

.icon-menu{
  display: none;
}

.menu-link li a{
    text-decoration: none;
    color: #494585;
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu-link li a:hover{
    color: rgb(250, 134, 38);
    box-shadow:  0px 1px rgba(250, 133, 38, 0.596);
}

.btn-contato{
    width: 100%;
    text-align: center;
}

.btn-contato input{
    padding: 0.8% 1.3%;
    cursor: pointer;
    font-weight: 600;
    background-color: rgb(250, 134, 38);
    border: none;
    color: #fff;
    border-radius: 3px;
    box-shadow: 0px 5px 5px #49458577;
    transition: background-color 0.5s ease;
}

.btn-contato input:hover{
    background-color: rgb(214, 114, 31);
}

.hamburger {
    display: none;
  }

.info{
    width: 100%;
    background-color: rgb(238, 116, 16);
    padding: 0%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:center;
    gap: 5%;
    color: #fff;
}
  
  .desconto{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: row;
    gap: 2%;
    padding: 0.2%;
  }
  
  .desconto img{
    width: 6%;
  }
  
  .fale-vendedor{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    margin-left: 5%;
    gap: 2%;
    padding: 0.2%;
  }
  
  .fale-vendedor a{
    color: #fff;
    text-decoration: none;
  }
  
  .fale-vendedor img{
    width: 6%;
  }

.bg-1-container{
    background-color: #ffffff;
}

.slogan{
    margin-top: 0%;
    text-align: center;
}

.serviços{
    text-align: center;
    padding-top: 7%;
    opacity: 0;
    transform: translateY(50px);
    transition: 1.3s ease-in-out;
}

.serviços.visible{
    opacity: 1;
    transform: translateY(0);
}

.serviços h1{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #494585;
}

.serviços h4{
    color: rgb(250, 134, 38)
}

.container-cards{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 2%;
    margin-top: 3%;
    margin-bottom: 2%;
    padding-bottom: 2%;
}

.card-body-container{
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    outline: solid 0.7px rgb(250, 134, 38);
    background-color: #ffffff;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    transition: 1.3s ease-in-out;
}

.card-body-container.visible{
    opacity: 1;
    transform: translateY(0);
}

.card-body-container a{
    text-decoration: none;
}

.card-body-container:hover{
    background-image: linear-gradient(to right, rgba(250, 133, 38, 0.26), #393c7e41);
    outline: none;
}

.img-card{
padding: 7% 2%;
border-radius: 5px;
text-align: center;
}

.img-card img{
    width: 30%;
}

.card-body{
    width: 100%;
    padding: 0.5%;
    
}

.card-body h3{
    color: #494585;
    text-align: center;
}

.card-body h5{
    color: rgb(250, 134, 38);
    text-align: center;
    }

.card-body P {
    color: #53525a;
    text-align: center;
    padding: 5% 3% 0%;
    }

.btn-container{
    width: 100%;
    text-align: center;
    margin-bottom: 7%;
}

.btn-container input{
    color: rgb(33, 46, 35);
    background-color: #ffffff;
    padding: 2% 17%; 
    border-radius: 3px;
    background-color: #63608d;
    border: none;
    color: #ffffff;
}

.btn-container input:hover{
    background-color: rgb(250, 134, 38);
    color: #ffffff;
    border: none;
}

.bg-2-container{
    width: 100%;
    background-image: linear-gradient(to right, rgba(250, 133, 38, 0.144), #393c7e23);

}

.slogan{
    padding: 4% 5% 4% 5%;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: 1.3s ease-in-out;
}

.slogan.visible{
    opacity: 1;
    transform: translateY(0);
}

.slogan-texto h2{
    color: #494585;
    margin-top: 7%;
    font-weight: 600;
}

.slogan-texto span{
    color: rgb(250, 134, 38);
}

.img-figura-1 img{
  width: 100%;
  border-radius: 7px;
}

.slogan-texto img{
    width: 50%;
}

.img-figura-2 img{
    width: 100%;
    border-radius: 7px;
}

.bg3-container {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #393575e5;
}

.bg3-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/people2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1; /* Ajuste a opacidade da imagem */
    z-index: -1;
}

.servicos1-container{
    width: 100%;
    padding-left: 17%;
    padding-right: 17%;
    padding-top: 3%;
    opacity: 0;
    transform: translateY(50px);
    transition: 1.3s ease-in-out;
}

.servicos1-container.visible{
    opacity: 1;
    transform: translateY(0);
}

.servicos2-container{
    width: 100%;
    padding-left: 17%;
    padding-right: 17%;
    opacity: 0;
    transform: translateY(50px);
    transition: 1.3s ease-in-out;
}

.servicos2-container.visible{
    opacity: 1;
    transform: translateY(0);
}

.servicos3-container{
    width: 100%;
    padding-left: 17%;
    padding-right: 17%;
    opacity: 0;
    transform: translateY(50px);
    transition: 1.3s ease-in-out;
}

.servicos3-container.visible{
    opacity: 1;
    transform: translateY(0);
}

.servicos4-container{
    width: 100%;
    padding-left: 17%;
    padding-right: 17%;
    padding-bottom: 3%;
    opacity: 0;
    transform: translateY(50px);
    transition: 1.3s ease-in-out;
}

.servicos4-container.visible{
    opacity: 1;
    transform: translateY(0);
}

.servicos h2{
    color: rgb(250, 134, 38);
    text-align: center;
    margin-top: 3%;
    font-weight: 700;
}

.servicos-texto{
    color: #ffffff;
    padding-left: 20%;
    padding-right: 20%;
    text-align: center;
    margin-top: 3%;
  
}

.card1-servicos-container{
    margin-top: 3%;
    margin-bottom: 9%;
    width: 100%;
    border: solid 1px rgba(250, 133, 38, 0.74);
    display: flex;
    flex-direction: column;
    padding: 3% 20%;
    border-radius:70px;
    align-items: center;
    background-image: linear-gradient(to top, rgba(250, 133, 38, 0.432), #393c7e23);
}

.card1-servicos-container h4{
    text-align: center;
}

.card2-servicos-container{
    margin-top: 3%;
    margin-bottom: 9%;
    width: 100%;
    border: solid 1px rgba(250, 133, 38, 0.74);
    display: flex;
    flex-direction: column;
    padding: 3% 20%;
    border-radius:70px;
    align-items: center;
    background-image: linear-gradient(to top, rgba(250, 133, 38, 0.432), #393c7e23);
}

.card2-servicos-container h4{
    text-align: center;
}

.card3-servicos-container{
    margin-top: 3%;
    margin-bottom: 9%;
    width: 100%;
    border: solid 1px rgba(250, 133, 38, 0.74);
    display: flex;
    flex-direction: column;
    padding: 3% 20%;
    border-radius:70px;
    align-items: center;
    background-image: linear-gradient(to top, rgba(250, 133, 38, 0.432), #393c7e23);
}

.card3-servicos-container h4{
    text-align: center;
}

.card4-servicos-container{
    margin-top: 3%;
    margin-bottom: 3%;
    width: 100%;
    border: solid 1px rgba(250, 133, 38, 0.74);
    display: flex;
    flex-direction: column;
    padding: 3% 20%;
    border-radius:70px;
    align-items: center;
    background-image: linear-gradient(to top, rgba(250, 133, 38, 0.432), #393c7e23);
}

.card4-servicos-container h4{
    text-align: center;
}

ul.topicos {
    list-style-type: square;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
}

ul.topicos li::marker{
    color: rgb(250, 134, 38);
}

.servicos span{
    color: #fff;
}

.servicos h3{
    color: #ffffff;
}

.servicos h4{
    color: #ffffff;
}

.whars-static{
    position: fixed;          /* Fixa o ícone na posição */
    top: 10%;             /* Distância da parte inferior da tela */
    right: 0.5%;
    z-index: 5;
}

.whars-static img{
    width: 55%;
    cursor: pointer;
    animation: loading2 0.7s linear infinite;
}

.instag-static{
    position: fixed;          /* Fixa o ícone na posição */
    top: 18%;             /* Distância da parte inferior da tela */
    right: 0.5%;
    z-index: 5;
}

.instag-static img{
    width: 55%;
    cursor: pointer;
    animation: loading2 0.7s linear infinite;
}

@keyframes loading2 {
    0% {
        transform: rotateY(0)
    }

    100% {
        transform: rotateY(20deg)
        
    }
}

.form-leads{
    margin-top: 3%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5%;
}

.cliente-ifcode{
    color: #403d53; 
}

.ifcode-logo{
  margin-left: 0.5%;
  font-weight: 700;
}

.logo-footer a{
    text-decoration: none;
    color: #ffffff;
}

.formulario{
    margin-top: 3%;
}




footer{
    margin-top: 3%;
    width: 100%;
    font-family: 'Lato',sans-serif;
    padding: 1% 0;
    background-color: #e6edff;
    color: #fff;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.623), #1d1d20);
  }
  
  .footer-ul img{
    max-width: 50%;
    height: auto; 
    margin: 0 auto;
    display: block;
  }
  
  .footer-informacoes{
    margin-top: 1%;
    text-align: center;
  }
  
  .direitos-reservados{
    margin-top: 1%;
  }

.logo-footer img{
    width: 5%;
}


  /*MEDIA SCREEN*/
  @media screen and (max-width:768px) {

    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html {
        scroll-behavior: smooth;
        overflow-x: hidden; /* Impede que a página tenha rolagem horizontal */
      }
    
    body{
        font-family: 'Poppins', sans-serif;
        width: 100%;
        height: 100%;
        letter-spacing: 0.04em;
    }

    .nav-bar{
        background-color: rgb(255, 255, 255);
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0.6%;
        position: fixed;
        z-index: 3;
    }

    .instag-nav-bar{
        display:contents;
        
    }

    .instag-nav-bar a{
        display:contents;
       
    }

    .instag-nav-bar img{
        width: 7%;
        margin-left: 8%;
    }

    .logo img{
        width: 27%;
        padding-top: 2%;
        padding-bottom: 2%;
      }

    .btn-contato{
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 9%;
        height: 24px;
        cursor: pointer;
        margin-right: 8%;
      }
      
      .hamburger .line {
        width: 100%;
        height: 3px;
        background-color: #494585;
        transition: all 0.3s ease;
      }
      
      .menu{
        width: 100%;
        font-family: 'Poppins', sans-serif;
        font-size: 1em;
        display: flex;
        position: absolute;
        top: 100%; /* Ajuste conforme o tamanho do header */
        right: -100%; /* Esconde o menu fora da tela */
        width: 100%;
        max-width: 50%;
        background-color: #ffffff;
        transition: right 0.3s ease;
        border-radius: 1px 0px 0px 1px;
        opacity: 0.9;
      }
      
      .menu-link{
        list-style: none;
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        gap: 0.4em;
        font-size: 0.9em;
        padding: 20px;
      }
      
      .icon-menu{
        display: block;
        width: 20%;
      }

      .menu-link li {
        list-style: none;
        margin: 15% 0;
        display: flex;
        gap: 5px;
        flex-direction: row;
      }
      
      .menu-link li a{ 
        text-decoration: none;
        color:#494585;
        display: block;
      }
      
      .menu-link li a:hover{
        color: rgb(250, 134, 38);
      }
    
      /* Classe para mostrar o menu */
      .menu.active{
        right: 0;
      }
      
      /* Animação do ícone hamburger */
      .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      
      .hamburger.active .line:nth-child(2) {
        opacity: 0;
      }
      
      .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -5px);
      }

      .carousel-item img.c-img {
        visibility: hidden;
      }

  
 
       /* Esconde as tags <img> em dispositivos móveis */
       .carousel-item img {
        height: 50vh;
      }

        .carousel-control-prev,
    .carousel-control-next {
        margin-left: 2%;
        margin-right: 2%;
        display: none;
    }

    .carousel-item {
        transition: transform 0.3s ease-in-out !important; /* Reduz a duração para 0.3s */
      }

.sr-only{
    visibility: hidden;
}

      .info{
        width: 100%;
        background-color: rgb(238, 116, 16);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content:center;
        gap: 5%;
        color: #fff;
    }
      
      .desconto{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        gap: 2%;
      }

      .desconto h5{
        font-size: 1.2em;
        color: #ffffff;
        font-weight: 700;
      }
      
      .desconto img{
        width: 10%;
      }
      
      .fale-vendedor{
        display: none;
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        padding-right: 3%;
      }

      .fale-vendedor h5{
        font-size: 0.7em;
      }
      
      .fale-vendedor a{
        color: #fff;
        text-decoration: none;
      }
      
      .fale-vendedor img{
        width: 10%;
      }
    
      /*
    .container-cards{
        display: grid;
        grid-template-columns: repeat(2, 1fr); // Cria 2 colunas //
        gap: 2px;
        justify-items: center; // Centraliza os itens //
    }*/

    .container-cards{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        justify-items: center; /* Centraliza os itens */
    }

    .card-body-container{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    outline: solid 0.7px rgb(250, 134, 38);
    background-color: #ffffff;
    cursor: pointer;
    opacity: 0;
    transform: translateY(25px);
    transition: 0.7s ease-in-out;
    }

    .card-body-container.visible{
        opacity: 1;
        transform: translateY(0);
    }
    
    .card-body-container:hover{
        background-image: linear-gradient(to right, rgba(250, 133, 38, 0.26), #393c7e41);
        outline: none;
    }
    
    .img-card{
    padding: 7% 2%;
    border-radius: 5px;
    text-align: center;
    }
    
    .img-card img{
        width: 30%;
    }
    
    .card-body{
        width: 100%;
        padding: 0.5%;
        
    }
    
    .card-body h3{
        color: #494585;
        text-align: center;
    }
    
    .card-body h5{
        color: rgb(250, 134, 38);
        text-align: center;
        }
    
    .card-body P {
        color: #53525a;
        text-align: center;
        padding: 5% 3% 0%;
        }


        .slogan{
            padding: 4% 2%;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .slogan-texto h2{
            color: #494585;
            margin-top: 7%;
            font-weight: 600;
        }
        
        .slogan-texto span{
            color: rgb(250, 134, 38);
        }
        
        .img-figura-1 img{
            width: 100%;
            border-radius: 7px;
        }
        
        .slogan-texto img{
            width: 50%;
        }
        
        .img-figura-2 img{
            width: 100%;
            border-radius: 7px;
        }
    

        .bg3-container {
            position: relative;
            width: 100%;
            height: auto;
            background-color: #393575e5;
        }
        
        .bg3-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/people2.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 1; /* Ajuste a opacidade da imagem */
            z-index: -1;
        }
        
        .servicos1-container{
            width: 100%;
            padding-left: 2%;
            padding-right: 2%;
            padding-top: 5%;
        }
        
        .servicos2-container{
            width: 100%;
            padding-left: 2%;
            padding-right: 2%;
            padding-top: 2%;
        }
        
        .servicos3-container{
            width: 100%;
            padding-left: 2%;
            padding-right: 2%;
            padding-top: 2%;
        }
        
        .servicos4-container{
            width: 100%;
            padding-left: 2%;
            padding-right: 2%;
            padding-top: 2%;
        }
        
        .servicos h2{
            color: rgb(250, 134, 38);
            text-align: center;
            margin-top: 0%;
            font-weight: 700;
            padding-left: 0%;
            padding-right: 0%;
        }
        
        .servicos-texto{
            color: #ffffff;
            padding-left: 0%;
            padding-right: 0%;
            text-align: center;
            margin-top: 5%;
        }
        
        .card1-servicos-container{
            margin-top: 10%;
            margin-bottom: 9%;
            width: 100%;
            border: solid 1px rgba(250, 133, 38, 0.74);
            display: flex;
            flex-direction: column;
            padding: 3% 2%;
            border-radius:10px;
            align-items: center;
            background-image: linear-gradient(to top, rgba(250, 133, 38, 0.432), #393c7e23);
        }
        
        .card1-servicos-container h4{
            text-align: center;
        }
        
        .card2-servicos-container{
            margin-top: 10%;
            margin-bottom: 9%;
            width: 100%;
            border: solid 1px rgba(250, 133, 38, 0.74);
            display: flex;
            flex-direction: column;
            padding: 3% 2%;
            border-radius:10px;
            align-items: center;
            background-image: linear-gradient(to top, rgba(250, 133, 38, 0.432), #393c7e23);
        }
        
        .card2-servicos-container h4{
            text-align: center;
        }
        
        .card3-servicos-container{
            margin-top: 10%;
            margin-bottom: 9%;
            width: 100%;
            border: solid 1px rgba(250, 133, 38, 0.74);
            display: flex;
            flex-direction: column;
            padding: 3% 2%;
            border-radius:10px;
            align-items: center;
            background-image: linear-gradient(to top, rgba(250, 133, 38, 0.432), #393c7e23);
        }
        
        .card3-servicos-container h4{
            text-align: center;
        }
        
        .card4-servicos-container{
            margin-top: 10%;
            margin-bottom: 9%;
            width: 100%;
            border: solid 1px rgba(250, 133, 38, 0.74);
            display: flex;
            flex-direction: column;
            padding: 3% 2%;
            border-radius:10px;
            align-items: center;
            background-image: linear-gradient(to top, rgba(250, 133, 38, 0.432), #393c7e23);
        }
        
        .card4-servicos-container h4{
            text-align: center;
        }
        
        .form-leads{
            margin-top: 6%;
        }

        ul.topicos {
            list-style-type: square;
            font-size: 22px;
            font-weight: 500;
            color: #ffffff;
        }
        
        ul.topicos li::marker{
            color: rgb(250, 134, 38);
        }
        
        .servicos span{
            color: #fff;
        }
        
        .servicos h3{
            color: #ffffff;
        }
        
        .servicos h4{
            color: #ffffff;
        }


      .whars-static{
        position: fixed; 
        top: 92%;             
        left: 2%;
        z-index: 5;
    }
    
    .whars-static img{
        width: 13%;
        cursor: pointer;
        animation: loading2 0.7s linear infinite;
    }
    
    .instag-static{
        display: none;
    }
    
    
    @keyframes loading2 {
        0% {
            transform: rotateY(0)
        }
    
        100% {
            transform: rotateY(20deg)
            
        }
    }

    footer{
        margin-top: 3%;
        width: 100%;
        font-family: "Poppins",sans-serif;
        padding: 5% 3%;
        background-color: #e6edff;
        color: #fff;
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.623), #1d1d20);
        font-size: 0.9em;
      }
      
      .footer-ul img{
        max-width: 50%;
        height: auto; 
        margin: 0 auto;
        display: block;
      }
      
      .footer-informacoes{
        margin-top: 0%;
        text-align: center;
      }
      
      .direitos-reservados{
        margin-top: 0%;
      }
    
      .logo-footer img{
        width: 20%;
    }

    .logo-footer a{
        text-decoration: none;
        color: #ffffff;
    }

    .logo-footer img{
        width: 18%;
    }

  }

  @media screen and (max-width:768px) {
    .slide-1 {
        width: 100%;
        height: 100vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        object-fit: cover;
        object-position: center;
        background-image: url('../img/slide-mobile-marmorr.png'); /* Imagem 9:16 */
      }
    
      .slide-2 {
        width: 100%;
        height: 100vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/slide-cta2.png'); /* Outra imagem 9:16 */
      }
    
      .slide-3 {
        width: 100%;
        height: 100vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/slide-mobile-barber.png'); /* Outra imagem 9:16 */
      }
    
      .slide-4 {
        width: 100%;
        height: 100vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/slide-um-clique2.png'); /* Outra imagem 9:16 */
      }
      .slide-5 {
        width: 100%;
        height: 100vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/slide-mobile-segurad.png'); /* Outra imagem 9:16 */
      }

      .slide-6 {
        width: 100%;
        height: 100vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url('../img/slide-1-mobile.png'); /* Outra imagem 9:16 */
      }
  }

 
