
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden
}


:root {
    --cor1: #DCB34B;
    --cor2: #DF1E2C;
    --cor3: #000C1A;
    --cor4: #ffffff;
    --cor5: #151518;
    --cor6: #2915c0c8;
    --subtexto: #868484;
}

.header-scrolled {
    top: 0; /* Substitui o valor original de top quando o header estiver fixado ao topo */
    transition: top 0.1s; /* Adiciona uma transição suave para a mudança de posição */
}


/* .infomacao-header {
    height: 40px;
    background-color: var(--cor5);
    display: flex;
    justify-content: end;
    color: var(--cor4);
    align-items: center;
    padding: 0 30px;
    background: url(../assets/imagens/fundos/fundo-cental-bat.jpg);
} */



/* MODAL */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.modal.ativo {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-content h2 {
    color: #d32f2f;
    margin-bottom: 15px;
}

.modal-content p {
    color: #333;
    font-size: 16px;
    margin: 10px 0;
}

.modal-content img {
    width: 260px;
    margin: 10px 0;
}

.btn-modal {
    background-color: #d32f2f;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.btn-modal:hover {
    background-color: #b71c1c;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #555;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #000;
}


/* FIM MODAL */



/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1000;
    padding: 50px;
    height: 80px;
    background: transparent; /* Cor inicial */
    transition: background 0.3s ease-in-out;
}

/* Classe que será adicionada ao rolar */
.header-scroll {
    background: #151B31; /* Cor ao rolar */
}


.menu-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: 0.4s;
}

.menu-hamburger .bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

.menu-hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(10px, 5px);
}

.menu-hamburger.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -5px);
}


.logo a img {
    padding: 6px;
    width: 120px;
    height: 100px;
    transition: .5s ease-in-out;
}

.logo a img:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu img {
    display: none;
}


.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu ul li a {
    position: relative;
    color: var(--cor4);
    text-decoration: none;
    transition: .5s ease-in-out;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-menu ul li a:hover {
    color: var(--cor1);
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px; 
    width: 0;
    height: 1px;
    background-color: var(--cor3); 
    transition: width 0.3s ease; 
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.instagram {
    width: 500px;
    height: 300px;
}


.btn{
    padding: 12px 24px;
    text-transform: uppercase;
    font-size: 12px;
    color: #ffffffff;
    background: linear-gradient(140deg, #000C1A 0%, #fcdf01 100%);
    font-weight: 400;
    letter-spacing: 2px;
    background-color: transparent;
    border: none;
    transition: .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    animation: pulsar 0.7s infinite; 
}


.btn:hover {
    transform: scale(1.1);
}


@keyframes pulsar {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* FIM HEADER */


/* MAIN */

.main {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
  }

  .pc,
.responsivo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* imagem no fundo */
}

.main {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

/* Este é o conteúdo do texto, botão etc */
.main-box {
  position: relative;
  z-index: 1; /* fica acima da imagem */
  color: white;
  padding: 2rem;
  text-align: center;
}

  .responsivo {
    display: none;
  }
  
  .main-box {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
  }

  .main-box {
    position: relative;
    top: 100px;
    height: 100%;
    width: 60%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .main h1 {
    color: #ffffffba;
    font-size: 24px;
    text-align: start;
  }


  .main h2 {
    color: #ffffffe9;
    font-size: 75px;
    text-align: start;
    line-height: 72px;
    letter-spacing: -2px;
    /* margin-top: 200px; */
  }

  .main p {
    color: #ffffffba;
    font-size: 16px;
    text-align: start;
    /* margin-top: 200px; */
  }

  .main a {
    color: #fff;
    font-size: 20px;
    text-align: start;
    /* margin-top: 200px; */
  }

  /* INFO MAIN */
.info-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    margin-top: 20px;
    gap: 20px;
}

.info-main a {
    text-decoration: none;
    color: inherit;
}

/* Estilo para todos os blocos, incluindo o <a> com classe .info-box */
.info-box {
    width: 100%;
    flex: 1 1 300px;
    margin-top: -100px;
    background-color: var(--cor4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 15px;
    box-shadow: 0 2px 8px rgba(204, 204, 204, 0.5);
    border-radius: 8px;
    transition: transform 0.2s ease;
    z-index: 10;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box-1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-box-1 h2 {
    color: var(--cor3);
    font-size: 20px;
    font-weight: bold;
}

.info-box-1 span {
    color: var(--cor3);
    font-size: 16px;
}

.info-box-2 img {
    width: 40px;
    height: 40px;
}

/* Terceira caixa com cor especial */
.info-box-tres {
    background-color: #00aa5d;
    color: var(--cor4);
    font-weight: 400;
}

.info-box-tres h2,
.info-box-tres span {
    color: var(--cor4);
}
/* FIM INFO MAIN */
  


/* SLIDER */
/* 
.swiper {
    position: relative;
    margin-top: 80px;
    width: 100%;
    height: 330px;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 338px;
  }


  .responsivo {
    display: none;
  }

  .swiper-slide {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.swiper-slide-active {
    opacity: 1; 
}


.swiper-button-next, .swiper-button-prev {
    background-color: #ffffff68;
    padding: 30px 15px;
    color: var(--cor4);
} */

/* FIM SLIDER */

/* FIM MAIN */


/* HOME */
.home {
    padding: 80px 80px;
    text-align: center;
    background-color: #ffffff;
}

.home-box {
    display: flex;
    align-items: center;
}

.home-box-direita {
    width: 50%;
    text-align: center;
}

.home-box-direita img {
    width: 600px;
}


.home-box-esquerda {
    width: 60%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: start;
    align-items: start;
}

.home-box-esquerda h2 {
    text-align: center;
    /* margin: 20px auto; */
    display: inline-block;
    padding-bottom: 10px;
    color: var(--cor3);
    font-size: 16px;
}

.home-box-esquerda h3{
    font-size: 48px;
    font-weight: bold;
    color: #151B31;
    line-height: 52.8px;
}

.home-box-esquerda p {
    font-size: 16px;
    color: #000000cc;
}

.home-box-esquerda h3:nth-child(3){
    margin-top: 20px;
    font-size: 20px;
}
/* FIM HOME */

/* ESCOLHER LC CHAVES E FECHADURA */
.escolher-lc {
    padding: 50px 40px;
    display: flex;
}

.escolher-lc-container {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.escolher-lc-container h2 {
    color: var(--cor3);
    font-size: 14px;
}

.home-texto {
    color: #15B16A;
    font-size: 14px;
}

.escolher-lc-container h3 {
    color: #151B31;
    font-size: 55px;
    font-weight: bold;
    letter-spacing: normal;
    line-height: 60px;
}

.escolher-lc-box {
    flex: 1 1 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.escolher-lc-box-box {
    display: flex;
    align-items: self-start;
    width: 300px;
    /* flex-wrap: wrap; */
    background-color: #F8F9FB;
    padding: 10px;
}

.escolher-lc-box-box img {
    width: 20%;
    padding: 10px;
    height: auto;
    border-radius: 10px;
}

.escolher-lc-box-box-box h4 {
    color: #151B31;
    font-size: 17px;
    font-weight: bold;
    padding: 10px 0;
}

.escolher-lc-box-box-box p {
    font-size: 13px;
    color: #6D6D6D;
}
/* FIM ESCOLHER LC CHAVES E FECHADURA */

/* PRODUTOS */

.produtos {
    text-align: center;

    background-color: var(--cor3);
}

@supports not (background-attachment: fixed) {
    .produtos {
        background-attachment: scroll; /* ou outra propriedade alternativa */
    }
}



.produtos h2 {
    color: var(--cor4);

    text-align: center;
    margin: 20px auto;
    /* border-bottom: 3px solid var(--cor1); */
    width: 48%;
}

.produtos p {
    color: var(--cor4);
}


.produtos-card {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px;
    gap: 10px;
}

.produtos svg {
    margin-top: -100px;
    margin-bottom: -10px;
}


.produtos-box {
    /* padding: 5px; */
    width: 350px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px #ccc;
    margin: 15px;
    display: flex;
    flex-direction: column;
}

.produtos-box:hover {
    box-shadow: 0px 0px 10px 1px #898585;
}

.produtos-box img {
    margin: 0 auto;
    padding: 20px;
    width: 80%;
    height: auto;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}

/* 
.produtos-box span {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--cor5);
    color: var(--cor4);
    padding: 1px 30px;
    border-radius: 10px;
    font-size: 10px;
} */

.box {
    flex: 1; /* faz com que a .box cresça para ocupar o restante da altura da .produtos-box */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* distribui o h3, p e a entre topo, meio e base */
    gap: 10px;
    padding: 20px;
    border-radius: 0 0 10px 10px;
    /* background-color: red; */
}

.box h3 {
    font-size: 16px;
    color: var(--cor1);
}

.box p{
    display: flex;
    justify-content: space-between;
    font-weight: 200;
    font-size: 12px;
    padding: 20px;
    /* width: 100%; */
}

.b {
    color: var(--cor1);
}

.produtos-box .box a {
    text-decoration: none;
    color: #000C1A;
    border: 1px solid var(--cor1);
    padding: 8px;
    transform: .20s;
    color: var(--cor1);
}

.produtos-box .box a:hover{
    background-color: #ccc;
    transition: ease-in-out;
    color: var(--cor3);
}

/* FIM PRODUTOS */



/* PUBLICIDADE */

.publicidade {
    text-align: center;
    background-color: var(--cor1);
}

.publicidade img {
    width: 100%;
}

/* FIM PUBLICIDADE */



/* QUALIDADE */

.qualidade {
    padding: 40px;
}


.qualidade-box-1 {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px;
}


.qualidade-texto-1 h2 {
    color: var(--cor2);
    font-size: 20px;
    font-weight: bold;
}

.qualidade-texto-1 h3 {
    color: var(--cor3);
    font-size: 40px;
}

.qualidade-texto-1 h2 span {
    color: var(--cor2);
}


.qualidade-texto-1 {
    width: 50%;
} 

.qualidade-texto-2 {
    width: 50%;
}


.qualidade-texto-2 h2 {
    width: 100%;
    font-size: 30px;
}


.qualidade-texto-2 p span {
    font-weight: bold;
}


.qualidade-box-2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}


.qualidade-card{
    background-color: var(--cor4);
    width: 350px;
    padding: 10px 40px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px #ccc;
}

.qualidade-card img {
    width: 20%;
    height: auto;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}

.qualidade-card:hover {
    box-shadow: 0px 0px 10px 1px #898585;
}


.card-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-1 i {
    color: var(--cor3);
    font-size: 40px;
}


.card-1 span {
    color: var(--cor5);
    font-size: 50px;
}


.card-2 h2 {
    color: var(--cor3);
    font-weight: bold;    
}

.card-2 h3 {
    color: var(--cor3);
    font-weight: 400;
    font-size: 17px;
}


.card-2 i {
    padding-top: 10px;
    right: 0;
    font-size: 30px;
    color: var(--cor3);
}


.produtos-box:hover {
    box-shadow: 0px 0px 10px 1px #898585;
}


.qualidade-texto-3 {
    text-align: center;
}

.qualidade-texto-3 h2 {
    padding: 20px;
    font-size: 17px;
    font-weight: 400;
}

/* FIM QUALIDADE */


/* SINAIS fechaduras */

.sinais-fechaduras {
    padding: 40px;
    text-align: center
}

.sinais-fechaduras h2 {
    color: var(--cor5);
    font-size: 35px;
}

.sinais-fechaduras span {
    color: var(--cor3);
}


.sinais-fechaduras-box {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.fechaduras-box {
    display: flex;
    justify-content: space-between;
    width: 350px;
    padding: 10px;
}

.fechaduras-box img {
    width: 20%;
    height: auto;
    display: flex;
    align-self: self-start;
    padding: 0 10px; 
}


.fechaduras-box i {
    height: 150px;
    color: var(--cor1);
    font-size: 40px;
    width: 150px;
    padding: 10px;
}

.fechaduras-box-car {
    text-align: initial;
}

.fechaduras-box-car h3 {
    color: #0FAF66;
}

.fechaduras-box-car p {
    color: var(--cor5);
    padding-top: 10px;
}

/* FIM SINAIS fechaduras */


/* FAQ */

.faq {
    background-color: var(--cor3);
    padding: 60px;
}

.faq-box {
    background-color: var(--color-1);
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    margin: 0 auto;
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #ccc;
}

.faq-box p {
    color: var(--cor4);
    padding: 40px;
}


.faq-item {
    margin-bottom: 10px;
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-item label.faq-question {
    display: block;
    cursor: pointer;
    padding: 10px;
    background-color: var(--color-2);
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    color: var(--cor4);
}

.faq-item label.faq-question:hover {
    background-color: var(--color-1);
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background-color: var(--color-4);
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.faq-item input[type="checkbox"]:checked + label + .faq-answer {
    max-height: 300px; /* Define um valor alto o suficiente para o conteúdo */
    padding: 10px;
}

/* Estilo adicional */
.faq-item .faq-answer p {
    margin: 0;
}
/* FIM FAQ */


.mapas iframe {
    width: 100%;
}

.rodape {
    background-color: var(--cor5);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.rodape img {
    width: 160px;
}

.rodape p {
    padding-top: 20px;
    color: var(--cor4);
}

.rodape p a {
    text-decoration: none;
    color: var(--cor4);
}

.rodape p a:hover {
    color: var(--cor2);
}

.whatsapp {
    position: fixed;
    bottom: 10px;
    right: 30px;
    width: 60px; /* Largura inicial */
    height: 60px; /* Altura inicial */
    transition: transform 0.5s ease-in-out; /* Transição suave */
    transform: scale(1); /* Escala inicial */
    z-index: 10;
}

/* Animação para aumentar e diminuir o tamanho */
.whatsapp:hover {
    transform: scale(1.2); /* Aumenta o tamanho ao passar o mouse */
    transition: transform 0.1s ease-in-out; /* Acelera a transição ao passar o mouse */
}

/* Animação contínua de aumentar e diminuir */
@keyframes pulsar {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp {
    animation: pulsar 1s infinite; /* Aplica a animação pulsante continuamente */
}


.whatsapp img {
    width: 60px;
}

                    svg#freepik_stories-carpool:not(.animated) .animable {
                        opacity: 0;
                    }

                    svg#freepik_stories-carpool.animated #freepik--background-complete--inject-70 {
                        animation: 7.9s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideLeft;
                        animation-delay: 0s;
                    }

                    svg#freepik_stories-carpool.animated #freepik--icon-3--inject-70 {
                        animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideRight, 1.5s Infinite linear heartbeat;
                        animation-delay: 0s, 1s;
                    }

                    svg#freepik_stories-carpool.animated #freepik--icon-2--inject-70 {
                        animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideRight, 1.5s Infinite linear heartbeat;
                        animation-delay: 0s, 1s;
                    }

                    svg#freepik_stories-carpool.animated #freepik--icon-1--inject-70 {
                        animation: 2.6s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideRight, 1.5s Infinite linear heartbeat;
                        animation-delay: 0s, 2.6s;
                    }

                    svg#freepik_stories-carpool.animated #freepik--character-1--inject-70 {
                        animation: 4.6s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) lightSpeedLeft, 1.5s Infinite linear floating;
                        animation-delay: 0s, 4.6s;
                    }

                    svg#freepik_stories-carpool.animated #freepik--character-2--inject-70 {
                        animation: 5.8s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) lightSpeedRight, 3s Infinite linear wind;
                        animation-delay: 0s, 5.8s;
                    }

                    svg#freepik_stories-carpool.animated #freepik--character-3--inject-70 {
                        animation: 2.9s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) lightSpeedLeft, 1.5s Infinite linear floating;
                        animation-delay: 0s, 2.9s;
                    }

                    @keyframes slideLeft {
                        0% {
                            opacity: 0;
                            transform: translateX(-30px);
                        }

                        100% {
                            opacity: 1;
                            transform: translateX(0);
                        }
                    }

                    @keyframes slideRight {
                        0% {
                            opacity: 0;
                            transform: translateX(30px);
                        }

                        100% {
                            opacity: 1;
                            transform: translateX(0);
                        }
                    }

                    @keyframes heartbeat {
                        0% {
                            transform: scale(1);
                        }

                        10% {
                            transform: scale(1.1);
                        }

                        30% {
                            transform: scale(1);
                        }

                        40% {
                            transform: scale(1);
                        }

                        50% {
                            transform: scale(1.1);
                        }

                        60% {
                            transform: scale(1);
                        }

                        100% {
                            transform: scale(1);
                        }
                    }

                    @keyframes lightSpeedLeft {
                        from {
                            transform: translate3d(-50%, 0, 0) skewX(20deg);
                            opacity: 0;
                        }

                        60% {
                            transform: skewX(-10deg);
                            opacity: 1;
                        }

                        80% {
                            transform: skewX(2deg);
                        }

                        to {
                            opacity: 1;
                            transform: translate3d(0, 0, 0);
                        }
                    }

                    @keyframes floating {
                        0% {
                            opacity: 1;
                            transform: translateY(0px);
                        }

                        50% {
                            transform: translateY(-10px);
                        }

                        100% {
                            opacity: 1;
                            transform: translateY(0px);
                        }
                    }

                    @keyframes lightSpeedRight {
                        from {
                            transform: translate3d(50%, 0, 0) skewX(-20deg);
                            opacity: 0;
                        }

                        60% {
                            transform: skewX(10deg);
                            opacity: 1;
                        }

                        80% {
                            transform: skewX(-2deg);
                        }

                        to {
                            opacity: 1;
                            transform: translate3d(0, 0, 0);
                        }
                    }

                    @keyframes wind {
                        0% {
                            transform: rotate(0deg);
                        }

                        25% {
                            transform: rotate(1deg);
                        }

                        75% {
                            transform: rotate(-1deg);
                        }
                    }
              