
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    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);
}


/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cor4);
    color: #fff;
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1000;
    box-shadow: 1px 1px 10px 1px #4774a842;
    padding: 0 60px;
    height: 90px;
}

.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: 180px;
    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(--cor5);
    text-decoration: none;
    transition: .5s ease-in-out;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-menu ul li a:hover {
    color: var(--cor3);
}

.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%;
}

.btn{
    padding: 12px 24px;
    text-transform: uppercase;
    font-size: 12px;
    color: #ffffffff;
    background: linear-gradient(140deg, #000C1A 0%, #1D6FCA 100%);
    font-weight: 400;
    letter-spacing: 2px;
    background-color: transparent;
    border: none;
    transition: .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    animation: pulsar 1s 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 */

/* SLIDER */

.swiper {
    margin-top: 90px;
    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; /* Tempo de transição */
}

.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: 40px 60px;
    text-align: center;
}


.home h2 {
    text-align: center;
    margin: 20px auto;
    border-bottom: 3px solid var(--cor6);
    display: inline-block;
    padding-bottom: 10px; /* Espaço entre o texto e a linha */
    color: var(--cor3);
}



.home-box {
    display: flex;
    align-items: center;
}

.home-box-esquerda {
    width: 60%;
}

.home-box-esquerda h3{
    font-size: 26px;
    font-weight: bold;
    color: var(--cor3);
}

.home-box-esquerda h3:nth-child(3){
    margin-top: 20px;
    font-size: 20px;
}


.home-box-direita {
    width: 50%;
    text-align: center;
}

.home-box-direita img {
    width: 250px;
}
/* FIM HOME */



/* BATERIAS QUE TRABALHAMOS */
.baterias-trabalho {
    overflow: hidden;
    position: relative;
    width: 100%; 
    padding: 60px 0;
    text-align: center;
    background-color: #000C1A;
}


.baterias-trabalho h1 {
    color: var(--cor1);
    font-size: 30px;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
    display: inline-block; 
}

/* .baterias-trabalho h1::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%; 
    transform: translateX(-50%);
    border: 4px solid #2915c0c8;
    border-radius: 50%;
    width: 120%;
    height: 100%; 
    animation: drawCircle 3s forwards;
    z-index: -1;
    opacity: 0; 
    transition: opacity 0.5s ease; 
}

.baterias-trabalho h1.animate::before {
    opacity: 1; 
}

@keyframes drawCircle {
    0% {
        transform: scale(0) translateX(-50%); 
    }
    100% {
        transform: scale(1) translateX(-50%); 
    }
} */



.marquee {
    display: flex;
    width: 100%;
    padding: 20px;
}

.marquee-inner {
    display: flex;
    animation: marquee 10s linear infinite; 
}

.marquee-img {
    width: 450px; 
    margin: 0; 
    margin: 20px;
    padding: 30px;
    border-top: 2px solid #ccc;
    border-bottom: 2px solid #ccc;
}

.marquee-img img {
    max-width: 40%; 
}

.marquee-img h2{
    padding-bottom: 25px;
    color: #000;
    font-weight: bold;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--cor1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* FIM BATERIAS QUE TRABALHAMOS */

/* PRODUTOS */

.produtos {
    text-align: center;
    background: url(../assets/imagens/fundos/fundo-cental-bat-1.jpg) no-repeat;
    background-size: cover;
    background-position: center; /* Ajustado para center para melhor compatibilidade */
}

@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: 300px;
}

.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: 20px;
    width: 350px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px #ccc;
    margin: 15px;
}

.produtos-box .box a:hover{
    background-color: #ccc;
    transition: ease-in-out;
}

.produtos-box:hover {
    box-shadow: 0px 0px 10px 1px #898585;
}

.produtos-box img {
    width: 200px;
}


.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 {
    width: 100%;
    border-radius: 0 0 10px 10px;
}

.box h3 {
    font-size: 16px;
    color: var(--cor1);
}

.box p{
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.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);
}

/* 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: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: #4774a888;
    font-size: 70px;
}


.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 BATERIAS */

.sinais-bateria {
    padding: 40px;
    text-align: center
}

.sinais-bateria h2 {
    color: var(--cor5);
    font-size: 35px;
}

.sinais-bateria span {
    color: var(--subtexto);
}


.sinais-baterias-box {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.baterias-box {
    display: flex;
    justify-content: space-between;
    width: 350px;
    padding: 10px;
}


.baterias-box i {
    height: 150px;
    color: var(--cor1);
    font-size: 40px;
    width: 150px;
    padding: 10px;
}

.baterias-box-car {
    text-align: initial;
}

.baterias-box-car h3 {
    color: var(--cor5);
}

.baterias-box-car p {
    color: var(--subtexto);
    padding-top: 10px;
}

/* FIM SINAIS BATERIAS */


/* 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 {
    color: var(--cor4);
}

.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 */
}

/* 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);
                        }
                    }
              