
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 100%;
}

section {
    scroll-margin-top: 70px; 
}

/* PALETA DE CORES */
:root {
    --cor-1: #015927;
    --cor-2: #34AC38;
    --cor-3: #DDA212;
    --cor-4: #E1C360;
    --cor-5: #e6e3e3;
    --font-principal: Arial, Helvetica, sans-serif;
}

body {
    background-color: var(--cor-5);
    font-family: var(--font-principal);
}

.navbar-container, .principal-box, .baterias, .carro-moto-container, .informativo-1-container, .atuacao, .servicos-container, .loja, .faq, .depoimento-container-box, .rodape-container {
    max-width: 1390px;
    width: 100%;
    margin: 0 auto;
}


a {
    text-decoration: none;
    color: #000;
}

html {
    scroll-behavior: smooth;
}

/* Cabeçalho fixo */
.header {
    position: fixed;
    width: 100%;
    z-index: 3000;
    top: 0;
}

.header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Navbar - Transição de cor e sombra */
.navbar {
    background: transparent;
    color: #000;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 70px;
    /* padding: 0 10%; */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    max-width: 1390px;
    margin: 0 auto;
}

/* .navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
} */

/* Logo */
.navbar .logo img {
    height: 40px;
}

.logo {
    position: relative;
    top: 5px;
    min-width: 100px;
    width: 130px;
}

.logo img {
    width: 100%;
    height: 250px;
}

.menu {
    display: flex;
    list-style: none;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    padding: 15px;
    position: relative;
    top: 3px;
    right: 5px;
}

.menu li {
    margin: 0 10px;
}
.menu a {
    color: var(--cor-5);
    text-decoration: none;
    padding: 8px 15px;
    font-weight: 300;
}

.header.scrolled .menu a {
    color: var(--cor-);
}

.menu a:hover, .rede-social a i:hover {
    background-color: var(--cor-3);
    border-radius: 10px;
    transition: .3s ease-in-out ;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.3s ease-in-out;
}

.rede-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.rede-social-responsivo {
    display: none;
}

.rede-social a i {
    color: var(--cor-5);
    font-size: 22px;
}


/* Definindo o tamanho das imagens */
.img-rede-social {
    width: 25px;
    display: none;
}

.rede-social .branco {
    display: block; 
}

.header.scrolled .rede-social .branco {
    display: none; 
}

.header.scrolled .rede-social .preto {
    display: block;
}

.header.scrolled .rede-social a i {
    color: var(--cor-1); 
}
/* FIM MENU *

/* PRINCIPAL */
.principal {
    background: url(../img/_fundo_header/fundo_header-4-texte.svg) no-repeat center center;
    background-size: cover;
    min-height: 650px;
    height: 100vh; /* para ocupar toda a altura da tela */
    padding: 20px;
}


.principal-box {
    position: relative;
    top: 180px;
    display: flex;
    flex-wrap: wrap;
    height: auto; 
}

.principal-1 {
    padding: 20px;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto; 
    margin-left: 100px;
}

.principal-1 h1 {
    font-size: 38px;
    text-transform: uppercase;
    text-align: start;
    letter-spacing: normal;
    color: var(--cor-5);
}

.principal-1 h1 span {
    color: var(--cor-3);
}

.principal-1 p {
    padding-top: 20px;
    font-size: 18px;
    color: var(--cor-5);
    font-weight: 100;
}

.principal-1 .btn-principal {
    margin-top: 25px;
    background-color: transparent;
    border: 1px solid var(--cor-5);
    width: 120px;
    padding: 10px 10px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--cor-5);
    font-size: 12px;
    transition: .3s ease-in-out;
    animation: zoom-Infinito 1s infinite ease-in-out;
}

.principal-1 .btn-principal:hover {
    animation: none;
    background-color: var(--cor-5);
    color: var(--cor-1);
}

/* Animação otimizada */
@keyframes zoom-Infinito {
    0% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Botões */
.btn:hover {
    animation: none;
    background-color: var(--cor-5);
    color: var(--cor-1);
    border: 2px solid var(--cor-1);
}
/* FIM IMFORMATIVO */

/* BATERIAS */
.baterias {
    margin-top: 60px;
    text-align: center;
    padding: 60px;
}

.baterias-1 h2 {
    font-family: var(--font-principal);
    font-size: 28px;
    line-height: 15px;
    text-align: center;
    letter-spacing: normal;
    color: var(--cor-3);
}

.baterias-1 h3 {
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    letter-spacing: normal;
    padding-top: 15px;
    padding: 15px;
}

hr {
    width: 200px;
    height: 2px;
    background-color: var(--cor-3);
    margin: 0 auto;
}

.baterias-1 p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 25.2px;
    letter-spacing: normal;
    font-weight: 100;
    font-family: var(--font-principal);
}

.baterias-1 h3 span {
    color: var(--cor-3);
}

.baterias-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.baterias-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 80px 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Para não vazar bordas */
}


.baterias-box::before {
    content: "Promoção";
    position: absolute;
    top: 10px;
    left: -40px;
    background-color: var(--cor-1);
    color: white;
    padding: 5px 50px;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(-30deg);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.baterias-box:hover {
    background-color: #cccccc3e;
}

.baterias-box img {
    width: 55%;
    height: 130px;
    padding: 10px;
    border-radius: 10px 10px 0 0;
}

.baterias-box h2.animate-bg::after {
    animation: slideIn 2s forwards ease-in-out;
}

.baterias-box h2 {
    position: relative;
    width: 100%;
    padding: 10px;
    color: var(--cor-1);
    font-size: 16px;
    overflow: hidden;
    z-index: 1; 
}

.baterias-box h2::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: -100%;
    width: 100%;
    height: 30px;
    background-color: var(--cor-4);
    z-index: -1;
}

/* Animação do fundo deslizando */
@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 0;
    }
}

.baterias-box p {
    padding: 10px;
    font-size: 14px;
    line-height: 25.2px;
    letter-spacing: normal;
    font-weight: 100;
    font-family: var(--font-principal);
}   

.baterias-box .btn {
        background-color: var(--cor-2);
        width: 150px;
        padding: 10px 10px;
        border-radius: 30px;
        margin: 30px auto;
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
        color: var(--cor-5);
        border: 1px solid var(--cor-2);
        font-size: 12px;
        transition: 0.3s ease-in-out;
        animation: zoom-Infinito 1s infinite ease-in-out;
    }


.baterias-btn a {
    position: relative;
    top: 18px;
    font-size: 12px;
    margin: 0 auto;
    transition: 0.2s ease-in-out;
}   

.baterias-btn a:hover {
    transform: scale(1.1);
    border: 1px solid;
}
/* FIM BATERIAS */


/* BATERIAS DE CARRO E MOTO */
    .carro-moto {
        text-align: center;
        margin-top: 30px;
        padding: 10px;
        background-color: #ffffff;
    }

    .carro-moto-1 h2 {
        font-size: 28px;
        color: #000;
        padding: 30px 0;
    }

    .carro-moto-1 span {
        color: var(--cor-2);
    }


    .carro-moto-tabs {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 20px;
    }


    .tab-btn-1, .tab-btn-2 {
        padding: 12px 20px;
        border: none;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        /* background: #ccc; */
        border-radius: 10px 10px 0 0;
        transition: all 0.3s ease-in-out;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        width: 55%;
    }

    .tab-btn-1 {
        background: #112233;
        color: white;
    }

    .tab-btn-2 {
        background: #4f7fae;
        color: white;
    }


    .tab-btn-1.active {
        background: #112233;
        color: white;
    }

    .tab-btn-2.active {
        background: #4f7fae;
        color: white;
    }

    .carro-moto-2 {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .carro-moto-box {
        width: 100%;
        border-radius: 0 0 12px 12px;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        padding: 40px 0;
    }

    .carro-moto-box img {
        width: 50%;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .carro-moto-box p {
        font-size: 18px;
        color: #555;
        margin-bottom: 35px;
        color: var(--cor-5);
    }

    #carro {
        position: relative;
        top: -20px;
        background-color: #112233;
    }

    #moto {
        position: relative;
        top: -20px;
        background-color: #4f7fae;
    }

    .carro-moto-btn a {
        font-size: 16px;
    }

    .carro-boto-btn {
        background-color: var(--cor-2);
        width: 400px;
        padding: 10px 10px;
        border-radius: 30px;
        margin: 0 auto; 
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
        color: var(--cor-5);
        border: 1px solid var(--cor-2);
        font-size: 12px;
        transition: transform 0.3s ease-in-out;
        animation: carro-boto-zoomInfinito 1.5s infinite ease-in-out;
    }
    
    @keyframes carro-boto-zoomInfinito {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }
    
    .carro-boto-btn:hover {
        background: transparent;
        transform: scale(1.05);
        border: 1px solid var(--cor-5);
        color: var(--cor-5);
    }

    .btn i {
        margin-right: 8px;
    }

    .fade-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
/* FIM BATERIAS DE CARRO E MOTO */


/* INFORMATIVO-1 */
.informativo-1 {
    background: url(../img/_informativo-1/fundo_informativo-escuro.jpg) no-repeat;
    background-size: cover;
    background-position: 100%;
    text-align: center;
    background-attachment: fixed;
    padding: 40px;
}

.informativo-1 h2 {
    color: var(--cor-5);
    padding: 30px;
    font-size: 28px;
    line-height: 52px;
    text-align: center;
    letter-spacing: -0.3px;
}

.informativo-1 h2 span {
    color: var(--cor-4);
}

.informativo-1 p {
    color: #ccc;
    padding: 30px 0;

    font-size: 16px;
    line-height: 25.2px;
    letter-spacing: normal;
    font-weight: 100;
    font-family: var(--font-principal);
}

.informativo-1 h4 {
    color: var(--cor-5);
    font-size: 16px;
    text-align: center;
    padding-bottom: 30px;

    line-height: 25.2px;
    letter-spacing: normal;
    font-weight: 100;
}


.informativo-1-seta i {
    font-size: 30px;
    color: #25D366; 
    animation: blink 1s infinite; 
    margin-bottom: 20px;
}

.informativo-1-seta i {
    font-size: 50px;
    animation: blink 1s infinite;
    margin-bottom: 30px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0; 
    }
    100% {
        opacity: 1;
    }
}

.botao-pdf {
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--cor-5);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.botao-pdf:hover {
    background-color: #00000067;
    border: 1px solid var(--cor-4);
    color: var(--cor-4);
}

/* COMO FUNCIONA */
.atuacao {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--cor-5);
}
.atuacao h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.passos {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.passo {
    width: 250px;
    text-align: center;
}

.circulo {
    width: 150px;
    height: 150px;
    background-color: var(--cor-1);
    color: var(--cor-4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 10px;
    position: relative;
}

/* Efeito de brilho pulsante */
.circulo::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: rgba(25, 2, 25, 0.4); 
    border-radius: 50%;
    transform: perspective()(-50%, -50%) scale(1);
    animation: pulsar 1.5s infinite ease-in-out;
}

/* Animação do brilho */
@keyframes pulsar {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

.circulo i {
    font-size: 34px;
    margin-bottom: 5px;
}
.descricao {
    padding: 20px 0;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}
.texto {
    font-size: 16px;
    line-height: 25.2px;
    letter-spacing: normal;
    font-weight: 100;
    font-family: var(--font-principal);
}
/* FIM COMO FUNCIONA */


/* SERVIÇOS */
.servicos {
    background: url(../img/_servico/servico_fundo-2.svg) no-repeat;
    background-size: cover;
    padding: 50px 0px;
    text-align: center;
    background-color: #fff;
}

.servicos h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--cor-3);
}

.servico-box {
    display: flex;
    justify-content: space-around;
}

.servico {
    margin: 40px 0;
    display: flex;
    gap: 15px;
}

.servico i {
    font-size: 34px;
    color: #ffcc00;
}

.servico-texto {
    max-width: 350px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: .3s ease-in-out;
    padding: 10px;
    border: 1px solid transparent;
}

.servico-texto:hover {
    border: 1px solid var(--cor-3);
}

.servico strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
    color: var(--cor-2);
}

.servico p {
    font-size: 16px;
    line-height: 25.2px;
    letter-spacing: normal;
    font-weight: 100;
    font-family: var(--font-principal);
    color: #ccc;
}
/* FIM SERVIÇOS */

/* LOJAS */
.loja {
    margin-top: -2px;
    padding: 60px;
    text-align: center;
}

.loja h2 {
    color: var(--cor-1);
    padding-bottom: 20px;
    font-size: 28px;
}

.loja p:last-child(1) {
    color: var(--cor-5);
}

.loja p:nth-child() {
    padding: 20px;
    color: var(--cor-1);

    font-size: 16px;
    line-height: 25.2px;
    letter-spacing: normal;
    font-weight: 100;
    font-family: var(--font-principal);
}

.lojas-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    position: relative;
    padding: 20px;
}


.lojas-endereco iframe {
    position: relative;
    width: 50%;
    height: 130px;
    z-index: 2;
    border-radius: 8px;
}

.lojas-info {
    position: relative;
    padding-top: 120px;
    top: -80px;
    border-radius: 8px;
    background-color: var(--cor-1);
    color: var(--cor-5);
    z-index: 1;
    overflow: hidden;
}

.lojas-info::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: var(--cor-4);
    border-radius: 50%;
    transform: translate(0%, -90%) scale(0);
    transition: transform 0.9s ease-in-out;
    z-index: -1;
}

.lojas-info:hover::before {
    transform: translate(-50%, -50%) scale(1);
}


.lojas-info h2 {
    color: var(--cor-2);
}

.lojas-info p {
    font-size: 0.9rem;
    padding: 9px;
}
/* FIM LOJAS */

/* FAQ */
.faq {
    background-color: #00000007;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    font-family: var(--font-principal);

    padding: 80px 20px;
}

.faq h2 {
    text-align: center;
    font-size: 28px;
    color: var(--cor-1);
}

.faq hr {
    margin: 20px auto;
    width: 150px;
}

.faq-item {
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px;
    text-align: left;
    background-color: #4caf4fc8;
    color: #FFFFFF; 
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: #388E3C; 
}

.faq-answer {
    padding: 15px;
    background-color: #f9f9f9;
    display: none;
}
/* FIM FAQ */

/* DEPOIMENTO */
.depoimento-container {
    margin: 50px 0;
    text-align: center;
}

.depoimento-container h2 {
    text-align: center;
    font-size: 28px;
    color: var(--cor-1);
    padding-bottom: 20px;
}

.depoimento {
    display: flex;
    padding: 80px;
}

.depoimento-img {
    width: 300px;
    position: relative;
    z-index: 1;
}

.depoimento-img img {
    position: absolute;
    top: -80px;
    right: -180px;
    width: 350px;
}

.depoimento-principal {
    width: 60%;
    height: 200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border-radius: 5px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

.depoimento-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--cor-5);
    padding: 20px;
    border-radius: 5px;
}

.depoimento-box img {
    width: 80px;
    height: 80px;
}

.depoimento h2 {
    padding-bottom: 0;
}

.depoimento h2, .depoimento-box p {
    color: var(--cor-1);
    font-size: 12px;
}

.stars i {
    color: orange;
    padding: 15px 0;
    font-size: 13px;
}
/* FIM DEPOIMENTO */

/*  RODAPE */
.rodape {
    background: url(../img/_rodape/fundo_informativo-escuro.jpg) no-repeat;
    background-size: cover;
    background-position: 100%;
    padding: 60px 120px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.rodape-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: start;
}

.rodape-info {
    width: 500px;
    text-align: start;
}

.rodape-info img {
    width: 120px;    
    height: 50px;
}

.rodape-info p {
    color: #d3d4e1;   
    font-weight: 200;
    line-height: 23.8px;
    text-align: start;
    letter-spacing: normal;
    height: 118px;
}

.rodape-contato {
    width: 100%;
}

.rodape-contato h2 {
    color: white;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 15px;
}

.icon-p {
    display: flex;
    gap: 10px;
    padding-top: 15px;
}

.icon-p .fa-whatsapp {
    font-size: 25px;
}

.icon-p i {
    color: #d3d4e1;
    font-size: 20px;
    width: 25px;
}

.rodape-contato p, .rodape-menu {
    color: #d3d4e1;   
    font-weight: 200;
    font-size: 14px;
    line-height: 23.8px;
    text-align: start;
    letter-spacing: normal;
}

.rodape-menu {
    width: 30%;
}

.rodape-menu h2 {
    color: white;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 18px;
}

.rodape-menu li {
    padding-top: 5px;
}

.rodape-menu ul li {
    list-style: none;
}

.rodape-menu ul li a {
    color: #d3d4e1;
}

.rodape-localizacao {
    width: 200px;
}

.rodape-localizacao h2 {
    color: white;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 18px;
}

.rodape-localizacao iframe {
    width: 250px;
    height: 180px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    color: #d3d4e1;
    border-top: 1px solid #d3d4e1;
    padding: 30px 0 0 0;
    margin: 20px 0 0 0;
    text-align: start;
}

.copyright a {
    color: #d3d4e1;
}

.copyright a:hover {
    color: #767781;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp-contato img {
    width: 50px;
    height: 50px;
}

@keyframes zoom-Infinito-whatsapp {
    0% {
        transform: translateX(0);
    }
    10% {
        transform: translateX(-5px); 
    }
    20% {
        transform: translateX(5px);
    }
    
    40% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(0);
    }
}

.whatsapp-contato {
    position: fixed;
    right: 25px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoom-Infinito-whatsapp 1s ease-in-out infinite;
}

.whatsapp-mensagem {
    background-color: #25D366;
    color: white;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 12px;
    position: absolute;
    bottom: 60px;
    right: 0;
    white-space: nowrap;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(10px);
    animation: aparecerMensagem 0.5s ease-in-out 1s forwards;
}

@keyframes aparecerMensagem {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.desenvolvedor {
    position: relative;
    top: 30px;
}

.desenvolvedor a {
    color: #d3d4e1;
    font-size: 13px;
}
/*  FIM RODAPE */

