html{
    scroll-behavior: smooth;
    box-sizing: border-box; /* remove linhas nas divisórias*/
    
}
:root {
    --primary-color: #931D1D;
    --secondary-color: #060606;
    --terciary-color: #ffffff;
    --fakebuttom-color: #808080;
    --primary-font: "DM Sans", sans-serif;
    --second-font: Arial, Helvetica, sans-serif;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: var(--primary-font);
    color: var(--secondary-color);

}

a {
    text-decoration: none;
    color: #fff;
}

h1 {
    font-size: 46px;
    font-weight: 700;
}

p {
    font-size: 20px;
}

#hero {
    display: flex;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--terciary-color);
    background-image: url("assets/hero-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 10px;
}

#wrap {
    width: 1200px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}/* padding-top adicionado */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    width: 100%;
}

#menu ul {
    display: flex;
    list-style: none;
    align-items: center;
}

#menu a {
    display: flex;
    padding: 0px 10px;
    color: #dadada;
    opacity: 0.9;
}
#menu a:hover{
    opacity: 1;
}

nav button {
    background: linear-gradient(90deg, #931D1D 16%, #2D0909 100%);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.5s ease, transform 0.3s ease;
    border: none;
    color: var(--terciary-color);
    height: fit-content;
    width: fit-content;
    border-radius: 8px;
    font-weight: bolder;
    font-size: 14px;
    padding: 10px 15px;
    margin: 0px 20px;
}
nav button:hover{
    background-position: right center;    
}

#hero-wrap-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

#container-hero-text {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    width: 50%;
    
}

#container-hero-text h1 {
    font-size: 46px;
    margin: 0px;
}

#container-hero-text p {
    font-size: 24px;
    line-height: 1.5;
}

.cta-btn {
    width: fit-content;
    cursor: pointer;
    background: linear-gradient(90deg, #931D1D 16%, #2D0909 100%);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.5s ease, transform 0.3s ease;
    border: none;
    color: var(--terciary-color);
    border-radius: 8px;
    font-weight: bolder;
    font-size: 22px;
    padding: 15px 35px;
}

.cta-btn:hover {
    background-position: right center;
}

.pqbrz-cta-btn {
    cursor: pointer;
    background: linear-gradient(90deg, #931D1D 16%, #2D0909 100%);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.5s ease, transform 0.3s ease;
    border: none;
    color: var(--terciary-color);
    border-radius: 8px;
    font-weight: bolder;
    font-size: 22px;
    padding: 10px 50px;
}

.pqbrz-cta-btn:hover {
    background-position: right center;
}

#hero-wrap-content img {
    height: clamp(500px, 30vw, 500px);
    width: 100%;
    object-fit: cover;
    display: block;
}

#divider-container-top {
    height: 60px;
    background-image: url('assets/top bar.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

#divider-container-bottom {
    height: 60px;
    background-image: url('assets/bottom bar.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;

}

.oficina-sec, .oficina-sec-secondary{
    display: flex;
    justify-content: center;
    margin: 50px 0px;
}

.wrap-oficina {
    display: flex;
    gap: 20px;
    width: 1200px;
    justify-content: center;
    align-items: center;
}


#img-oficina img {
    height: clamp(300px, 70vw, 550px);
    object-fit: cover;
    display: block;
}

#img-oficina {
    display: flex;
    justify-content: center;
    align-items: center;
}

.oficina-text{
    /*margin: 20px;*/
    width: 50%;
    display: flex;
    flex-direction: column;
    column-gap: 25px;
}


.oficina-text h1 {
    font-weight: 700;
    margin-top: 0px;
}

.oficina-text p {
    font-size: 24px;
    line-height: 1.5;
}

.oficina-text button {
    cursor: pointer;
    background: linear-gradient(90deg, #303030 16%, #101010 100%);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.5s ease, transform 0.3s ease;
    border: none;
    color: var(--terciary-color);
    border-radius: 8px;
    font-weight: bolder;
    font-size: 22px;
    padding: 15px 35px;
    width: fit-content;
}

/* Mudança de padding e font-size*/

.oficina-text button:hover {
    background-position: right center;
}

#oficina-text-secondary {
    text-align: center;
    width: 100%;
}

#oficina-text-secondary button {
    background-size: 200% 100%;
    background-color: var(--terciary-color);
    background-position: left center;
    transition: 0.3s ease;
    border: solid var(--fakebuttom-color) 1px;
    color: var(--fakebuttom-color);
    border-radius: 8px;
    font-weight: bolder;
    font-size: 20px;
    padding: 20px 20px;
    margin: 8px;
}

#oficina-text-secondary button:hover {
    color: var(--secondary-color);
    border: solid var(--secondary-color) 1px;
}

#pqbrz-sec {
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;

}

/*#pqbrz-sec h2 {
    font-size: 32px;
}*/

.wrap-pqbrz {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: auto;
    max-width: 1200px;
    color: var(--terciary-color);
    text-align: center;
    background: radial-gradient(circle, #270000 0%, #060606 70%);
}

#card-container {
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
    border: solid hsla(0, 67%, 35%, 0.502) 1px;
    border-radius: 5px;
    width: 300px;
    padding: 60px 40px;
    transition: 0.3s;
    cursor: pointer;
}
.card h2{
    font-size: 32px;
}
.card p{
    font-size: 22px;
}
.card:hover {
    border: solid #931D1D 1px;
}

#pqbrz-article {
    width: auto;
    display: flex;
    justify-content: center;
}

#pqbrz-article p {
    width: 62%;
    line-height: 1.5;
}

.pqbrz-cta-btn {
    cursor: pointer;
    background: linear-gradient(90deg, #931D1D 16%, #2D0909 100%);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.5s ease, transform 0.3s ease;
    border: none;
    color: var(--terciary-color);
    border-radius: 8px;
    font-weight: bolder;
    font-size: 20px;
    padding: 15px 35px;
    width: fit-content;
    margin-bottom: 60px;
}

/* REPSOL SECTION */
#repsol-sec {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 50px 0px;
}

#wrap-repsol {
    width: 100%;
    max-width: 1200px;
}

.repsol-container-01, .repsol-container-02 {
    display: flex;
    align-items: center;
    gap: 35px;
}


/* Remoção do margin padrão do h1 para essa seção e correção de font-size*/

.repsol-text {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    width: 50%;
    
}
.repsol-text img{
    width: 80%;
}
.repsol-text h1{
    font-size: 46px;
    margin: 0;
}
.repsol-text p {
    line-height: 1.5;
}

/* adição de espaçamento de entre linhas*/

#container-repsol-btn button {
    background-size: 200% 100%;
    background-color: var(--terciary-color);
    background-position: left center;
    transition: 0.3s ease;
    border: solid var(--fakebuttom-color) 1px;
    color: var(--fakebuttom-color);
    border-radius: 8px;
    font-weight: bolder;
    font-size: 20px;
    padding: 20px;
    margin-right: 4px;
}

#container-repsol-btn button:hover {
    color: var(--secondary-color);
    border: solid var(--secondary-color) 1px;
}

#repsol-img img {
    height: clamp(300px, 50vw, 550px);
    width: 100%;
    object-fit: cover;
    display: block;
}

.repsol-text-card {
    background-color: #F6F6F6;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.repsol-text-card p{
    font-size: 20px;
    line-height: 1.5;
}
.repsol-text-card h1 {
    margin: 0;
    font-size: 32px;
}

#repsol-blue-btn {
    width: fit-content;
    cursor: pointer;
    background: linear-gradient(90deg, #041E42 0%, #003B5C 80%);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.5s ease, transform 0.3s ease;
    border: none;
    color: var(--terciary-color);
    border-radius: 8px;
    font-weight: bolder;
    font-size: 20px;
    padding: 15px 35px;
}

/* Adição de width com fit-content, correção de border-radius e paddings */

#repsol-blue-btn:hover {
    background-position: right center;
}

#repsol-red-btn {
    width: fit-content;
    cursor: pointer;
    background: linear-gradient(90deg, #E4002B 0%, #AF0222 80%);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.5s ease, transform 0.3s ease;
    border: none;
    color: var(--terciary-color);
    border-radius: 8px;
    font-weight: bolder;
    font-size: 20px;
    padding: 15px 35px;
}

/* Adição de width com fit-content, correção de border-radius e paddings */

#repsol-red-btn:hover {
    background-position: right center;
}


/* ZENITE */
.zenite-sec{
    background-color: #060606;
    display: flex;
    justify-content: center;
    padding: 100px 0;
}
.zenite-wrap{
    width: 1200px;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    column-gap: 50px;
}
.zenite-img{
    width: 50%;
}
.zenite-img img{
    width: 100%;
}

.zenite-text{
    width: 50%;
    height: 100px;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
.zenite-text img{
    width: 80%;
}
.zenite-text h2{
    font-size: 46px;
    color: #fff;
    margin: 0;
}
.zenite-text p{
    font-size: 24px;
    color: #fff;
    line-height: 1.5;
}
.zenite-btn{
    display: flex;
    flex-direction: row;
    font-size: 22px;
    column-gap: 25px;
}
.zenite-faleconosco a,
.zenite-saibamais a{
    text-decoration: none;
    color: #fff;
}
.zenite-faleconosco,
.zenite-saibamais{
    width: fit-content;
    height: fit-content;
    border-radius: 12px;
    padding: 15px 35px;
}
.zenite-faleconosco{
    border: 1px solid rgba(100, 100, 100, .5);
}
.zenite-faleconosco:hover{
    border: 1px solid #fff;
    transition: all 0.5s ease-in-out;

}
.zenite-saibamais{
    background: linear-gradient(to right, #E42313, #C21D0F);
}
.zenite-saibamais:hover{
    transition: all 1s ease;
    background: linear-gradient(to right, #C21D0F, #E42313);
}

/* Logos linhas Zenite */
#infinity-carroussel-section {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.infinity-zenite {
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: center;
}
.infinity-zenite img {
    height: 100%;
}
.carousel-wrapper-zenite {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.carousel-track-zenite {
    display: inline-flex;
    animation: scroll 20s linear infinite;
    display: flex;
    align-items: center;
}

.carousel-track-zenite img {
    height: 40px;
    margin-right: 20px;
    /* espaço entre as imagens */
    /* filter: grayscale(100%); */
    transition: 0.3s;
}
.marcas-zenite {
    display: flex;
    width: 100%;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}
/* FOOTER */
footer {
    background-color: var(--secondary-color);
    color: var(--terciary-color);
    display: flex;
    justify-content: center;
}

#wrap-footer {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 80px 0px 25px 0px;

}

#container-btns {
    width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

/* width 1200px*/

#cta-ml-box {
    max-width: 550px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 70px;
    border: solid #F7D032 1px;
    border-radius: 15px;
    padding: 30px 35px;
    background-color: rgba(247, 208, 50, 0.039);
}

/* content de center para start, width para max-width, valores de padding*/

#btn-box-ml button {
    cursor: pointer;
    background: linear-gradient(90deg, #2C6BFF 0%, #1259C3 80%);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.5s ease, transform 0.3s ease;
    border: none;
    color: var(--terciary-color);
    border-radius: 15px;
    font-weight: bolder;
    font-size: 20px;
    padding: 20px 15px;
}

#btn-box-ml button:hover {
    background-position: right center;
}

#cta-whatsapp-box {
    max-width: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    border: solid #006207 1px;
    border-radius: 15px;
    padding: 30px 35px;
    background-color: rgba(0, 98, 7, 0.039);
}

/* content de center para start, width para max-width, valores de padding*/

#btn-box-whatsapp button {
    cursor: pointer;
    background: linear-gradient(90deg, #006207 0%, #00990B 80%);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.5s ease, transform 0.3s ease;
    border: none;
    color: var(--terciary-color);
    border-radius: 15px;
    font-weight: bolder;
    font-size: 20px;
    padding: 20px 15px;
}

#btn-box-whatsapp button:hover {
    background-position: right center;
}

#cta-ml-box p {
    font-size: 18px;
    line-height: 1.5;
}

#cta-whatsapp-box p {
    font-size: 18px
}

#newsletter-main {
    width: 100%;
    margin-bottom: 50px;
}

#newsletter-container {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

#newsletter-text-box {
    width: 50%;
}

#newsletter-title h4 {
    margin: 50px 0px 0px 0px;
    padding: 0px;
    font-weight: 300;
    color: #707070;
}

#newsletter-text-box p {
    margin: 0px;
    font-weight: bold;
}

#newsletter-form-box input {
    background-color: var(--secondary-color);
    border: none;
    border: solid #757575 1px;
    height: 50px;
    width: 450px;
    border-radius: 10px;
    font-size: 22px;
    padding-left: 20px;
    margin-right: 5px;
    color: var(--terciary-color);
}

#newsletter-form-box button {
    cursor: pointer;
    background: linear-gradient(90deg, #931D1D 16%, #2D0909 100%);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.5s ease, transform 0.3s ease;
    border: none;
    color: var(--terciary-color);
    border-radius: 8px;
    font-weight: bolder;
    font-size: 25px;
    padding: 13px 20px;
}

#newsletter-form-box button:hover {
    background-position: right center;
}

#social-container {
    margin: 30px 0px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    border-top: solid #757575 1px;
    border-bottom: solid #757575 1px;
    padding: 40px 0px;
}

#social-container a {
    color: var(--terciary-color);
}

#social-container ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0px;
}

#social-container ul li img {
    height: 40px;
    transition: 0.3s ease;
}

#social-container ul li img:hover {
    transform: scale(1.1);
}

#copyright-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
    padding: 0px;
}

#copyright-box p {
    margin: 0px;
    padding: 0px;
}

.top-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    font-weight: bold;
}
.topnav {
    display: none;
}

.logo-mobile {
    display: none;
}

/*Whatsapp fixed*/

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    animation: pulse-animation 1.5s infinite;
    background-color: #04AA6D;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

a {
    color: var(--terciary-color);

}

.pulse {
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px #00948dca;
    }

    100% {
        box-shadow: 0 0 0 20px #00000000;
    }
}


/* INFINITY CARROSSEL */

#infinity-carroussel-section {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

#infinity-carroussel {
    overflow: hidden;
    height: auto;
    display: flex;
    align-items: center;
}

#infinity-carroussel img {
    height: 100%;
}

/*INFINITY CARROUSSEL ANIMATION*/

#marcas-hero {
    display: flex;
    width: 100%;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}

#marcas-oficina {
    display: flex;
    mask-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);

}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.carousel-track {
    display: inline-flex;
    animation: scroll 20s linear infinite;
    display: flex;
    align-items: center;
}

.carousel-track img {
    height: 20px;
    margin-right: 20px;
    /* espaço entre as imagens */
    /* filter: grayscale(100%); */
    transition: 0.3s;
}

.carousel-track img:hover {
    filter: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-200%);
    }
}


@media (min-width: 1200px) and (max-width: 1300px){
    #menu button{
        margin: 0;
    }

    /* Oficina */
    .wrap-oficina{
        padding: 25px;
        width: 90%;
    }
    #img-oficina{
        width: 50%;
    }
    .oficina-text{
        width: 50%;
    }

    /* Por que Brz? */
    .wrap-pqbrz{
        padding: 0 25px;
    }
    .card{
        width: 290px;
    }
    #wrap-repsol{
        padding: 0 25px;
    }
    #wrap-footer{
        max-width: 95%;
    }
    #newsletter-form-box{
        width: 60%;
    }
    #newsletter-form-box input{
        width: 70%;
    }
    #newsletter-form-box button{
        margin:0;
    }
    #container-repsol-btn{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    #container-repsol-btn button{
        width: fit-content;
        margin:0;
    }
    .zenite-wrap{
        padding: 0 30px
    }
}

@media (max-width: 992px) {
    #hero-wrap-content {
        flex-direction: column-reverse;
        margin-bottom: 0;
    }
    
    #hero-wrap-content #hero-img img {
        height: clamp(350px, 30vw, 500px)
    }
    #hero-img {
        margin-top: 65px;
        margin-bottom: 30px;
    }

    #container-hero-text {
        width: 90%;
        margin: 0px 0px 50px 0px;
    }

    #container-hero-text h1 {
        font-size: 30px;
    }

    #container-hero-text p {
        font-size: 18px;
    }

    #container-hero-text button {
        font-size: 20px;
    }

    #wrap {
        width: 100%;
    }

    nav {
        flex-wrap: wrap;
    }

    nav ul {
        display: none;
    }

    nav img {
        height: 50px;
    }

    .oficina-sec {
        justify-items: center;
        padding: 0 25px;

    }

    .oficina-sec {
        display: flex;
        justify-content: center;
    }
    

    .wrap-oficina {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    #oficina-text-secondary {
        text-align: left;
        width: 90%;
    }
    #oficina-text-secondary h1{
        font-size: 28px;
    }

    .oficina-text{
        width: 100%;
        text-align: left;
        row-gap: 25px;
    }
    .oficina-text h1{
        font-size: 28px;
        
    }
    .oficina-text p{
        font-size: 18px;
    }

    #oficina-text-secondary button {
        font-size: 14px;
    }

    #img-oficina {
        width: 100%;
    }

    /*INFINITY CARROUSSEL ANIMATION MOBILE*/
    .wrap-pqbrz{
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        width: auto;
    }

    #pqbrz-sec h1{
        font-size: 28px;
        margin: 0;
        padding: 50px 0  0 0;
    }
    
    
    #card-container {
        flex-direction: column;
        justify-content: left;
        align-items: center;
        gap: 30px;
        padding: 35px;
    }
    .card {
        width: 100%; /* Mudança de tamanho*/
        padding: 15px 10px;
        display: flex;
        row-gap: 5px;
        justify-content: start;
        align-items: center
    
    }
    .card h2{
        font-size: 18px;
        margin: 0;
    }
    .card p{
        font-size: 14px;
        margin: 0;
    }
    #pqbrz-article p {
        width: 100%;
        text-align: left;
        font-size: 18px;
        line-height: 1.8;
        padding: 0 35px;
    }
    .pqbrz-cta-wrap{
        display: flex;
        padding-left: 20px;
        padding: 0 35px
    }
    .pqbrz-cta-btn{
        font-size: 20px;
        width: fit-content;
        padding: 10px 15px;
        border-radius: 8px;
    }

    /* REPSOL SECTION MOBILE*/
    #repsol-sec {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0px !important;
    }
    .repsol-container-01, .repsol-container-02 {
        display: flex;
        flex-direction: column-reverse;
    }
    .repsol-container-02{
        padding: 0 25px;
    }

    .repsol-text, .repsol-text-card {
        width: fit-content;
        
        display: flex;
        flex-direction: column;
        gap: 25px
    }
    .repsol-text{
        padding: 0 25px;
    }
    .repsol-text-card h1{
        margin: 0;
        font-size: 28px;
    }
    .repsol-text h1, p{
        margin: 0;
    }
    .repsol-text h1{
        font-size: 32px;
    }
    .repsol-text img {
        width: 90%;
        padding-bottom: 1.3em;
    }
    #container-repsol-btn {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    #container-repsol-btn button {
        font-size: 15px;
    }
    #wrap-footer{
        padding: 0 25px;
    }
    #container-btns {
        width: 1200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    /* Zenite */
    .zenite-sec{
        padding: 50px 0;
        width: 100%;
    }
    .zenite-wrap{  
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .zenite-wrap .zenite-img{
        width: 80%
    }
    .zenite-text{
        height: fit-content;
        width: 100%;
    }
    .zenite-text .logo-zenite{
        width: 60%;
        padding: 0 30px;
    }
    .zenite-text h2{
        font-size: 28px;
        padding: 0 30px
    }
    .zenite-text p{
        font-size: 18px;
        padding: 0 30px
    }
    .zenite-btn{
        justify-content: space-between;
        padding: 0 30px;
        font-size: 20px;
    }
    .zenite-faleconosco,
    .zenite-saibamais{
        border-radius: 8px;
        padding: 10px 35px;
    }
    .marcas-zenite{
        width: 100%;
        mask-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0) 8%, /*0*/
            rgb(0, 0, 0) 30.5%, /*12.5*/
            rgb(0, 0, 0) 70.5%, /*87.5*/
            rgba(0, 0, 0, 0) 92%); /*100*/
    }
    .infinity-zenite{
        padding: 0 30px;
    }
 
    #newsletter-main {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

    #newsletter-title {
        width: 90%;
        display: flex;
        justify-content: left;
    }

    #newsletter-container {
        flex-direction: column;
        width: 90%;

    }

    #newsletter-text-box,
    #newsletter-text-box p {
        width: 100%;
        font-size: 18px;
    }

    #newsletter-text-box {
        display: flex;
        justify-content: center;
    }

    #social-container {
        margin: 0;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        width: 90%;
    }

    #copyright-box {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    #copyright-box p {
        text-align: center;
        font-size: 14px;
        padding-top:25px;
    }

    #newsletter-form-box {
        margin: 30px 0px;
    }

    #container-btns {
        width: 100%;

    }

    #cta-ml-box {
        width: 80%;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: left;

    }

    #cta-whatsapp-box {
        width: 80%;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: left;
    }

    #newsletter-form-box {
        width: 100%;
    }

    #newsletter-form-box input {
        width: 90%;
        margin: 0px 0px 30px 0px;
    }

    #nav-desktop {
        display: none;
    }

    /* MENU DROPDOWN */
    /* Style the navigation menu */
    .topnav {
        position: absolute;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 10px;
    }
    .topnav i{
        font-size: 1.8em;
    }

    /* Hide the links inside the navigation menu (except for logo/home) */
    .topnav #myLinks {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 70px;
        background-color: var(--secondary-color);
        font-weight: 600;
        padding-bottom: 15px
    }

    /* Style navigation menu links */
    #myLinks a {
        color: white;
        padding: 10px 0px;
        text-decoration: none;
        font-size: 20px;
        margin: 0px 0px;
        width: 100%;
    }

    .topnav a {
        color: white;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 20px;
        margin: 0px 0px;
        text-align: center;
    }

    /* Style the hamburger menu */
    .topnav a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    /* Add a grey background color on mouse-over */
    .topnav a:hover {
        color: rgb(255, 255, 255);
    }

    /* Style the active link (or home/logo) */
    .active {
        background-color: #04AA6D;
        color: rgba(255, 255, 255, 0.199);
    }

    .logo-mobile {
        display: block;
        height: 50px;
        padding: 15px;
        position: absolute;
    }
    
    #copyright-box button {
        display: none;
    }
    .top-btn{
        display: none;
    }

}
@media (min-width:480px) {
     /* smartphones, Android phones, landscape iPhone */
    }