header {
    background-color: #000000;
    position: fixed;
    width: 100%;
    z-index: 99;
}

.container-header {
    display: flex;
    width: 95%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.nav1 {
    display: none;
}

.figure-logo img {
    width: 50px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: white;
    font-size: 18px;
}

.nav-menu-icons {
    display: flex;
    gap: 15px;
}

.nav-menu-icons img {
    width: 25px;
}

/* ===== baner ==== */

main {
    background-color: #000000;
}

.img-capa {
    width: 100%;
}

/* ======== container section sobre alencar ====  */


#equipe-especializada {
    margin-bottom: -25px;
}

.div-conteudo1 h2 {
    font-size: 31px;
    padding-bottom: 6px;
}

.div-conteudo1 p {
    font-size: 17px;
    line-height: 25px;
    padding-bottom: 14px;
    max-width: 351px;
    font-weight: 300;
}

.img-seta-conteudo1 {
    z-index: 98;
    width: 46px;
    margin: 191px -6px 0px -36px;
}

.gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 100vw);
    grid-template-rows: 1fr;
    grid-row-gap: 1rem;
    overflow: scroll;
    scroll-snap-type: both mandatory;
    scroll-padding: 1rem;
}

.li-gallery {
    width: 92%;
}

.li-gallery img {
    width: 100%;
    border-radius: 10px;
}

.active {
    scroll-snap-type: unset;
}

li {
    scroll-snap-align: center;
    display: inline-block;
    border-radius: 3px;
    font-size: 0;
}

.cotainer-conteudo {
    color: white;
    width: 95%;
    margin: 0px auto;
    padding: 40px 0px;
}

.div-container-img-conteudo1 {
    display: flex;
    align-items: center;
}

.figure-img-conteudo1 img {
    width: 100%;
}

/* ===== conttainer marcas produtos ===== */

:root {
    --marquee-width: 80vw;
    --marquee-height: 50px;
    --marquee-elements-displayed: 5;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

.marquee {
    overflow: hidden;
    position: relative;
    padding-bottom: 27px;
}

.marquee:before,
.marquee:after {
    position: absolute;
    top: 0;
    width: 10rem;
    height: 100%;
    content: "";
    z-index: 1;
}

.marquee:before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, transparent 100%);
}

.marquee:after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, transparent 100%);
}

.marquee-content {
    list-style: none;
    height: 50px;
    display: flex;
    gap: 25px;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
    }
}

.marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: var(--marquee-element-width);
    white-space: nowrap;
}

.marquee-content li img {
    width: 76%;
}

@media (max-width: 600px) {
    html {
        font-size: 12px;
    }

    :root {
        --marquee-width: 100vw;
        --marquee-height: 16vh;
        --marquee-elements-displayed: 3;
    }

    .marquee:before,
    .marquee:after {
        width: 5rem;
    }
}

.container-produtos {
    padding-bottom: 19px;
}

.container-produtos h2 {
    font-size: 19px;
    color: white;
    max-width: 350px;
    text-align: center;
    margin: 21px auto 22px;
    line-height: 26px;
}

/* container cards*/

.container-servico1 {
    background-color: white;
}

.container-servico1 h3 {
    color: black;
    max-width: 350px;
    text-align: center;
    margin: 0px auto 0px;
    line-height: 26px;
    padding-top: 27px;
    font-size: 28px;
    font-weight: 600;
}

.container-servico {
    background-image: url(img/bg.png);
    max-width: 1275px;
    padding: 10px 0px;
    display: flex;
    margin: auto;
    flex-wrap: wrap;
}

.card {
    width: 49%;
    margin: 3px auto;
}

.div-style-card {
    width: 95%;
    height: 4px;
    background-color: aliceblue;
}

.cta-orcamento-card {
    width: 80%;
    background-color: #42E884;
    height: 20px;
}

.cta-orcamento-card p {
    text-align: center;
    margin-top: 3px;
    font-weight: 700;
    font-size: 13px;
}

.card-bk {
    width: 100%;
    height: 130px;
    background-image: url(img/card-vitrificação.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.div-conteudo-text-card {
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 0px 8px;
    height: 180px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.div-conteudo-text-card h2 {
    font-size: 20px;
    padding: 8px 0px;
    text-align: center;
    line-height: 23px;
}

.div-conteudo-text-card h3 {
    padding-bottom: 10px;
    color: #42E884;
}

.div-conteudo-text-card p {
    width: 95%;
    text-align: center;
    padding-bottom: 10px;
    color: #ffffffd1;
    font-size: 13px;
    font-weight: 300;
    line-height: 16px;
}

.div-style-card-cta-final {
    display: flex;
    align-items: center;
}

.div-style-card-cta-final h4 {
    font-weight: 600;
    font-size: 12px;
}

.div-style-card-cta-final img {
    width: 20px;
    margin-right: 2px;
}

#higiInterno {
    background-image: url(img/higinterna.png);
}

#polimento {
    background-image: url(img/polimento.png);
}

#hidratacacouro {
    background-image: url(img/hidratacaodecouro.png);
}

#lavagemdeta {
    background-image: url(img/lavagem\ detalhada.png);
}

#isulfim {
    background-image: url(img/insulfm.png);
}

#espelha {
    background-image: url(img/espelhamento.png);
}

#lavagemmotor {
    background-image: url(img/lavagem\ tecnica.png);
}


/* container gif */

.container-gif {
    background-image: url(img/gif.gif);
    background-size: cover;
    background-position: center;
    height: 244px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-gif h2 {
    font-size: 23px;
    font-weight: 500;
    text-align: center;
    line-height: 29px;
    max-width: 350px;
}

.container-gif p {
    padding: 7px 0px;
    font-size: 19px;
}

.container-gif h3 {
    text-align: center;
    padding: 5px 40px;
    font-size: 18px;
}

/* container ppf */

.ppf {
    width: 97%;
    margin: 0 auto 55px;
}

.ppf h2 {
    font-size: 31px;
    padding: 38px 0px 5px;
    color: white;
}

.ppf p {
    font-size: 17px;
    line-height: 25px;
    padding-bottom: 8px;
    max-width: 351px;
    font-weight: 300;
    color: white;
}

.container-video {
    display: flex;
    justify-content: center;

}

.container-video video {
    border-radius: 8px;
    width: 95%;
}

/* cotainer valores */

.cards-prot {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    width: 45%;
    margin: 0px auto;
    padding: 22px 0px;
}

.div-cards-prot {
    padding: 35px 0px;
    display: flex;
    flex-wrap: wrap;
}

.cards-prot img {
    width: 50px;
}

.cards-prot h2 {
    font-size: 18px;
    font-weight: 700;
}

.cards-prot p {
    font-weight: 500;
    font-size: 14px;
    color: #404040;
}

.cardverde h2 {
    color: #42E884;
}


.div-cards-prott {
    display: flex;
    margin: 0 auto;
    gap: 15px;
    justify-content: center;
}

.container-valores {
    background-color: white;
}

/* container localizacao */

.div-container-img-conteudo1 figure {
    margin-top: -38px;
}

.container-localizacao {
    background-image: url(img/bklocalizacao.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 241px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container-localizacao h2 {
    color: #42E884;
    font-weight: 400;
    font-size: 37px;
    padding: 5px 0px;
}

.container-localizacao P {
    color: white;
    font-size: 16px;
}

.container-localizacao h3 {
    text-align: center;
    color: white;
    font-size: 25px;
    padding: 17px 0px;
    max-width: 377px;
}

.div-button-localizacao button {
    height: 33px;
    width: 155px;
    border: none;
    border-radius: 4px;
    background-color: #42E884;
}

.div-button-localizacao button p {
    font-weight: 600;
    font-size: 16px;
    color: rgb(0, 0, 0);
}

.div-button-localizacao {
    display: flex;
    gap: 10px;
}

/* container footer */


footer {
    background-color: black;
}

.container-footer {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1210px;
    margin: 0 auto;
    padding: 5px 0px;
}

.div-footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
}

.div-footer-logo img {
    width: 45px;
}

.div-footer-logo p {
    font-size: 12px;
    margin-left: 10px;
    max-width: 107px;
}

.div-icons {
    display: flex;
    gap: 15px;
    margin-right: 15px;
}

.div-icons img {
    display: flex;
    width: 25px;
}

.container-footer span {
    display: none;
}

.img-capa2 {
    display: none;
}

.img-capa {
    display: block;
}


.wpp {
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 9999;
    cursor: pointer;
}

.wpp img {
    width: 49px;
}

.wpp button {
    background-color: transparent;
    border: none;
}


@media (min-width: 600px) {

    .img-capa2 {
        display: block;
        width: 100%;
        padding-top: 80px;
    }

    .img-capa {
        display: none;
    }



    .nav1 {
        display: block;
    }

    .figure-logo img {
        width: 65px;
    }

    .container-header {
        max-width: 1210px;
    }

    /* container banner */

    .img-capa {
        width: 100%;
        margin-top: 75px;
    }


    .container-img-banner {
        height: 86vh;
    }

    .container-img-banner {
        display: flex;
        justify-content: flex-end;
    }

    .conteudo-banner {
        padding: 100px 82px 0px 0px;
    }

    .conteudo-banner h2 {
        max-width: 443px;
        font-size: 45px;
        text-shadow: none;
    }

    /* container conteudo */

    .cotainer-conteudo {
        display: flex;
        align-items: center;
        justify-content: space-around;
        max-width: 1210px;
        padding: 40px 0px 20px;
    }

    .div-conteudo1 h2 {
        font-size: 40px;
        width: 437px;
    }

    .div-conteudo1 p {
        line-height: 28px;
        max-width: 414px;
        font-size: 20px;
    }

    .div-conteudo1 {
        width: 575px;
    }

    .div-container-img-conteudo1 {
        width: 500px;
        height: 360px;
    }

    .gallery {
        width: 500px;
        height: 360px;
    }

    .li-gallery {
        width: 421px;
        height: 360px;
    }

    .marquee {
        overflow: hidden;
        position: relative;
        padding: 35px 0px;
    }

    .ppf {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        margin: 55px auto 55px;
    }

    .ppf p {
        line-height: 28px;
        max-width: 414px;
        font-size: 20px;
    }

    .ppf h2 {
        font-size: 40px;
    }

    .container-video video {
        height: 487px;
    }

    .figure-img-conteudo1 img {
        width: 465px;
    }

    .img-seta-conteudo1 {
        width: 62px;
        margin: 116px -13px 0px 26px;
    }

    .card {
        width: 23%;
        margin: 12px auto;
    }

    .div-conteudo-text-card h2 {
        font-size: 22px;
        padding-bottom: 8px;
    }

    .div-conteudo-text-card p {
        font-size: 16px;
    }

    .div-style-card-cta-final h4 {
        font-size: 15px;
    }

    .div-style-card-cta-final img {
        width: 24px;
    }

    /* CONTAINER GIF */

    .container-gif h2 {
        font-size: 29px;
        line-height: 35px;
    }


    .container-gif p {
        padding: 9px 0px;
        font-size: 25px;
    }

    .container-gif h3 {
        font-size: 20px;
        max-width: 488px;
    }

    /* cotainer valores*/

    .div-cards-prot {

        flex-wrap: nowrap;
        max-width: 1223px;
        margin: 0 auto;
        gap: 72px;

    }

    .cards-prot p {
        font-weight: 500;
        font-size: 16px;
        color: #404040a6;
    }

    .cards-prot h2 {
        font-size: 20px;
    }

    /* container localizacao */
    .container-localizacao h2 {
        font-size: 47px;
        font-size: 38px;
    }

    .container-localizacao P {
        padding-top: 3px;
        font-size: 20px;
        font-size: 17px;
    }

    .container-localizacao h3 {
        max-width: 800px;
        font-size: 37px;
        padding: 15px 0px 32px;
    }

    .div-button-localizacao button {
        height: 37px;
        width: 213px;
    }

    .div-button-localizacao button p {
        font-size: 19px;
        padding: 0px;
    }

    /* container footer */

    .div-icons img {
        display: flex;
        width: 22px;
    }

    .container-footer span {
        display: block;
    }
}