@font-face {
    font-family: "Gotham";
    src: url("../css/fonts/GOTHAM-MEDIUM.TTF");
}

@font-face {
    font-family: "Gotham Book";
    src: url("../css/fonts/Gotham-Book.otf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gotham", sans-serif !important;
    font-size: 16px;
    letter-spacing: 0.02em;
    font-weight: 500;
}

:root {
    --main-bg-color: #4d4d4d;
}

#contatoInfo {
    color: #fff !important;
}

.display-none-mobile {
    display: none !important;
}

/* Overlay para fundo do modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-product-new {
    margin-top: 20px;
    margin-bottom: 35px !important;
}

.call-specialist-container.call-product {
    flex-direction: column;
    justify-content: center;
    text-align: center;

    /* @media (max-width: 758px) {
    display: none;
  } */
}

.body-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    /* overlay escuro */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif !important;
}

.modal {
    background: var(--main-bg-color);
    color: #fff;
    padding: 31px 23px 32px 23px;
    border-radius: 16px;
    width: 284px;
    height: auto;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    position: fixed;
    top: 0;
    margin-top: 200px;
}

.logo-modal {
    margin: 0;
}

.title-modal {
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 29px;
    margin-bottom: 23px;
    font-family: "Gotham Book", Arial, sans-serif !important;
}

.subtitle-modal {
    margin-bottom: 23px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 20px;
    letter-spacing: 2px;
    font-family: "Gotham Book", Arial, sans-serif !important;
}

.search-container {
    position: relative;
    margin-bottom: 29px;
}

.search-container input {
    width: 100%;
    max-width: 276px;
    padding: 13px 14px 13px 14px;
    border: none;
    height: 48px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 325;
    line-height: 20px;
    color: #555555;
    font-family: "Gotham Book", Arial, sans-serif !important;
}

.search-container .icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.suggestions {
    background: #fff;
    color: #000;
    border-radius: 0px 0px 8px 8px;
    text-align: left;
    max-height: 150px;
    overflow-y: auto;
    z-index: 2;
    position: absolute;
    width: 100%;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 2px;
    font-weight: 325;
    max-width: 276px;
    font-family: "Gotham Book", Arial, sans-serif !important;

    .extra-service-list {
        display: none;
        flex-direction: column;
        max-height: 400px;
        /* Limita a altura da lista extra */
        overflow-y: auto;
        /* Adiciona rolagem interna se passar do limite */
        margin-bottom: 24px;
    }

    @media (min-width: 1024px) {
        .extra-service-list {
            grid-template-columns: 1fr 1fr 1fr;
            justify-items: center;
            max-height: 350px;
            /* Limite menor para desktop, ajuste se necessário */
            overflow-y: auto;
        }
    }

    top: 42px;
}

.suggestions div {
    padding: 8px 10px;
    cursor: pointer;
    border-bottom: 0.7px solid #a09b9b;
    margin-left: 0;
    margin-right: 9px;
    font-family: "Gotham Book", Arial, sans-serif !important;
}

.suggestions div:hover {
    background: #eee;
}

.not-found {
    background: #fff;
    color: #000;
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    font-family: "Gotham Book", Arial, sans-serif !important;
    top: 42px;
    border-radius: 0px 0px 8px 8px;
    position: absolute;
    text-align: left;
    font-weight: 325;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 2px;
}

.confirm-btn {
    background: #fcd200;
    color: #000;
    padding: 7px;
    border: none;
    font-weight: bold;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    width: 209px;
    height: 34px;
    border-radius: 8px;
    font-weight: 350;
    line-height: 8px;
    margin-bottom: 16px;
    font-family: "Gotham", Arial, sans-serif !important;
}

.confirm-btn:disabled {
    background: #bebebe;
    cursor: not-allowed;
    color: #898989;
}

.confirm-btn.confirm-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222222;
    color: #ffffff;
    font-family: "Gotham", Arial, sans-serif !important;
    text-decoration: none;
}

.contato {
    color: #ffffff;
    font-weight: 350;
    font-size: 12px;
    line-height: 20px;
    font-family: "Gotham", Arial, sans-serif !important;
}

.container-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-lp {
    display: none;
}

.icon-container {
    margin-right: 10px;
}

.icon-container>svg {
    height: 14px;
    width: 14px;
}

#cityInput:focus,
#cityInput:focus-visible {
    outline: none;
    box-shadow: none;
}

@media (min-width: 758px) {
    .modal {
        width: 569px;
        border-radius: 16px;
    }

    .title-modal {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .subtitle-modal {
        font-size: 16px !important;
        margin-bottom: 20px;
    }

    .search {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .search-container {
        width: 404px;
    }

    .search-container input {
        font-size: 16px;
        width: 100%;
        max-width: none;
    }

    .suggestions {
        max-width: none;
    }

    .suggestions,
    .suggestions>div {
        margin-left: 0;
    }

    .confirm-btn {
        height: 40px;
    }

    .icon-container>svg {
        height: 22px;
        width: 22px;
    }

    .contato {
        font-size: 13px;
    }
}

:root {
    --yellow: #ffd400;
    --black: #000000;
    --white: #ffffff;
    --dark-gray: #252525;
}

body {
    margin: 0 auto;
    background-color: var(--dark-gray);
    max-width: 1920px;
}

header {
    display: flex;
    flex-direction: column;
    padding: 8px 0 24px;
    align-items: center;
    position: fixed;
    background-color: var(--dark-gray);
    width: 100%;
    max-width: 1920px;
    z-index: 9999;
}

header .logo-campneus {
    width: 200px;
    margin-top: 16px;
    margin-bottom: 29px;
}

.template-lp {
    /*/display: none;*/
    margin: 0;
    background: var(--dark-gray);
    color: var(--white);
}

.container-btns {
    gap: 4px;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.call-me-button {
    background: #ffc42c;
    color: #000000;
    border-radius: 9px;
    padding: 12px 0;
    width: 327px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px !important;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 325;
    gap: 6px;
    height: 56px;
    font-family: Arial !important;
}

.call-me-button span {
    font-size: 18px !important;
}

.lp-pirelli-banner {
    margin: 40px 0 24px;
}

.lp-pirelli-banner-mob {
    width: 100%;
}

header .call-whatsapp {
    margin-top: 29px;
}

.call-whatsapp {
    width: 327px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #25d366;
    color: #000000;
    border-radius: 9px;
    padding: 12px 0;
    text-decoration: none;
    text-transform: uppercase;
    gap: 6px;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 325;
}

.banners {
    padding-top: 252px;
    max-width: 1920px;
    width: 100vw;
}

#banner-desk {
    display: none;
}

#banner-mobile {
    width: 100%;
}

.lp-pirelli-banner {
    justify-content: center;
    display: flex;
}

.lp-pirelli-banner .lp-pirelli-banner-desk {
    display: none;
}

#plus-sign {
    display: flex;
    justify-self: center;
    height: 24px;
    width: 24px;
    margin: 8px 0;
}

.products {
    text-align: left;
    padding: 40px 24px;
    position: relative;
}

.parts {
    text-align: left;
    padding: 40px 9px;
    padding-bottom: 0;
    position: relative;
}

.products h2 {
    margin-bottom: 40px;
    font-weight: 350;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    vertical-align: bottom;
}

.parts h2 {
    margin-bottom: 0;
    font-weight: 350;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    vertical-align: bottom;
}

.product-list {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    align-items: center;
}

.product {
    width: auto;
    height: 589px;
    background-color: #727272;
    border-radius: 4%;

    @media (max-width: 768px) {
        height: 603px !important;
    }
}

.product,
.part {
    border-radius: 16px;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0.32px;
    font-weight: 350;
    font-family: "Arial" !important;
}

.product img {
    width: 100%;
    border-radius: 5% 5% 0% 0%;
    background-color: #3f3f3f;
}

.part img {
    width: 100%;
    border-radius: 16px;
}

.product .tag {
    color: #fafafc;
    background-color: #252525;
    justify-self: left;
    padding: 6px 8px;
    border-radius: 99px;
    font-size: 16px;
    font-weight: 400;
    margin-top: 32px;
    margin-left: 24px;
    margin-right: 24px;
}

.container-parts-service {
    margin-top: 32px;
    padding: 0 24px 16px;
}

.product.parts-service .tag {
    width: 100%;
    margin: 0;
    border-radius: 5px;
    margin-bottom: 16px;
    text-align: center;

    @media (max-width: 768px) {
        margin: 0;
    }
}

.product.parts-service p.description {
    text-align: left;
    margin-bottom: 16px;
}

.product.parts-service p.description span {
    width: 100%;
    margin: 0;
    font-size: 20px;
    line-height: 100%;

    @media (max-width: 768px) {
        font-family: "Gotham Book" !important;
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0.32px;
        color: #fafafc;
    }
}

.product p {
    justify-self: left;
}

.part p {
    justify-self: left;
}

.description {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.description>span {
    font-size: 16px;
    font-family: Arial !important;
    font-family: "Gotham Book";
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.32px;
    vertical-align: middle;
}

.brand {
    font-family: "Gotham Book";
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.44px;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
}

.de {
    font-size: 14px;
    line-height: 26px;
    font-weight: 350;
    letter-spacing: 0.44px;
    text-decoration: line-through;
    color: #ffffff;
}

.por {
    line-height: 26px;
    letter-spacing: 0.44px;
    text-transform: uppercase;
    font-weight: 350;
    color: #fed100;
    height: 44px;
    display: flex;
    align-items: center;
}

.por>span {
    font-size: 40px;
    line-height: 26px;
    letter-spacing: 0.44px;
    font-weight: 1000;
    text-transform: uppercase;
}

@media (max-width: 361px) {
    .por>span {
        font-size: 32px;
    }
}

.sizes {
    display: none !important;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 2%;
    vertical-align: bottom;
    margin-bottom: 8px;
}

.call-specialist-container {
    display: grid;
    justify-content: center;
    margin-top: 0px;
}

.call-specialist-container .container-btns {
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.call-me-label {
    display: none;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0.02em;
    vertical-align: bottom;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
}

.services {
    padding: 33px 24px;
    text-align: center;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service p {
    line-height: 20px;
    margin-top: 8px;
    text-align: center;
    font-family: "Arial" !important;
}

#free-service {
    position: relative;
}

.service img {
    margin-bottom: 12px;
}

strong,
strong h3 {
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 350;
    font-style: #fafafc;
    font-size: 24px;
    line-height: 20px;
    letter-spacing: 2%;
    text-align: center;
    vertical-align: middle;
    height: 56px;
    align-content: center;
    text-transform: uppercase;
}

.see-more-services {
    display: flex;
}

.see-more-services,
.see-less-services {
    justify-content: center;
    gap: 16px;
    align-items: center;
}

#see-more,
#see-less {
    height: 24px;
    margin: 40px 0;
}

.see-more-services p,
.see-less-services p {
    font-weight: 500;
    font-style: Medium;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: 2%;
    text-align: center;
}

.benefit-card img {
    width: 100%;
    max-height: 100px;
}

.service-highlight {
    background: #000;
    color: #fff;
    padding: 24px;
    text-align: center;
}

.service-highlight h2 {
    font-size: 20px;
    font-weight: bold;
}

.extra-service-list {
    display: grid;
    flex-direction: column;
}

.service-list .service:nth-child(2),
.service-list .service:nth-child(3) {
    display: none;
}

.service-list-mobile {
    display: none;
}

.see-less-services {
    display: none;
}

.icon-car {
    font-size: 48px;
    margin: 12px 0;
}

footer {
    background: var(--dark-gray);
    padding: 24px 16px;
    font-size: 12px;
    text-align: center;
    width: 99vw;
    max-width: 1920px;
}

footer p {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: -0.17px;
    vertical-align: middle;
    display: flex;
    justify-content: center;
}

.footer-info-txt {
    display: flex;
    flex-direction: column;
    font-family: "Gotham Book", Arial, sans-serif !important;
    justify-content: left !important;
}

footer .logo-campneus {
    width: 200px;
}

.footer img {
    max-height: 40px;
    margin-bottom: 12px;
}

.footer .social-icons img {
    width: 24px;
    margin: 0 8px;
}

.footer-copy {
    font-size: 12px;
    margin-top: 16px;
}

.footer-about-txt {
    font-size: 14px;
    text-align: center;
    font-weight: 350;
    line-height: 18px;
    font-family: "Arial" !important;
    margin-bottom: 13px;
    padding-left: 8px;
    padding-right: 8px;
}

.footer-title-social-media {
    font-size: 20px;
    justify-content: center;
}

footer .logo-campneus {
    margin: 24px 0;
}

#online-store {
    background: #fed100;
    color: #000000;
    border-radius: 4px;
    padding: 8px 0;
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.footer-button {
    display: flex;
    justify-content: center;
    margin: 24px 40px;
}

.banner-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.banner-slide {
    display: none;
    width: 100%;
    transition: opacity 0.5s;
}

.banner-slide.active {
    display: block;
}

.call-service {
    margin-top: 0;
}

.main-banner-prev,
.main-banner-next {
    @media (max-width: 768px) {
        display: flex !important;
    }
}

.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    border: none;
    font-size: 32px;
    padding: 8px 16px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;

    @media (max-width: 768px) {
        display: none;
    }
}

.banner-prev {
    left: 16px;
}

.banner-prev.banner-prev-slider {
    left: 0;
}

.banner-next.banner-next-slider {
    right: 0;
}

.banner-next {
    right: 16px;
}

.banner-desk {
    display: none;
    width: 100%;
}

.banner-mobile {
    display: block;
    width: 100%;
}

.call-specialist-container>.container-btns>.call-whatsapp {
    min-height: 44px;
    display: none;
}

.link-contato {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
}

.title-desktop {
    display: none;
    margin-bottom: 0;
}

.title-mobile {
    display: flex;
    margin-bottom: 0;
}

.footer-social-media {
    margin-bottom: 18px;
}

.text-phone {
    display: none !important;
}

/*Slider */

.container-slider-service,
.container-slider-product,
.container-slider-parts {
    display: flex;
    justify-content: center;
    position: relative;
}

.container-slider-service {
    padding-top: 0;
}

.product-list.slider {
    display: flex;
    flex-direction: row !important;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    row-gap: 0 !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
}

.product-list.slider .product {
    box-sizing: border-box;
    transition: transform 0.3s;
    max-width: 300;
}

.part-list.slider {
    display: flex;
    flex-direction: row !important;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    row-gap: 0 !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
}

.part-list.slider .part {
    box-sizing: border-box;
    transition: transform 0.3s;
    max-width: 300;
}

.slider-nav,
.slider-nav-product,
.slider-nav-parts {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    max-width: 1440px;
    width: 100vw;
}

.slider-nav button {
    pointer-events: all;
    background: #fed100;
    border: none;
    font-size: 2rem;
    padding: 0.5em 1em;
    border-radius: 50%;
    cursor: pointer;
}

.slider-nav-product button {
    pointer-events: all;
    background: #fed100;
    border: none;
    font-size: 2rem;
    padding: 0.5em 1em;
    border-radius: 50%;
    cursor: pointer;
}

.slider-nav-parts button {
    pointer-events: all;
    background: #fed100;
    border: none;
    font-size: 2rem;
    padding: 0.5em 1em;
    border-radius: 50%;
    cursor: pointer;
}

.slider-wrapper {
    max-width: 1110px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-wrapper-product,
.slider-wrapper-parts {
    max-width: 1250px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container,
.slider-container-product,
.slider-container-parts,
.slider-container-new-product {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.slider-container-new-product {
    flex-direction: column;
}

.slider-container-product .slider-item.slider-item-product {
    height: 580px;

    @media (min-width: 768px) {
        height: 580px;
    }
}

.slider-item.slider-item-product,
.slider-item-parts {
    width: 327px;
    height: 639px;

    @media (max-width: 768px) {
        height: 580px;
    }
}

.slider-item,
.slider-item-product,
.slider-item-parts,
.slider-item-new-product {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
}

.slider-item-new-product :first-child {
    padding-top: 0 !important;
}

.slider-item-new-product {
    padding: 25px 0px;
}

.slider-container-new-product .slider-item-new-product :last-child {
    padding-bottom: 0 !important;
}

.slider-item-new-product .part>img {
    margin-bottom: 40px !important;
}

.slider-item-product .product {
    margin-top: 0px;
}

.title-desktop.weekly-deals {
    font-weight: 350;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: Arial, Helvetica, sans-serif !important;
    justify-content: center;
    font-size: 32px !important;
}

.title-mobile.weekly-deals {
    font-size: 24px;
    font-weight: 700;
    font-family: Arial !important;
    letter-spacing: 0.64px;
    text-transform: uppercase;
    margin-bottom: 24px;
    justify-content: center;
    line-height: 28px;

    @media (max-width: 768px) {
        font-weight: 500;
    }
}

.slider-item-new-product .part .brand {
    letter-spacing: 0 !important;
}

@media (min-width: 768px) {

    .slider-item,
    .slider-item-product,
    .slider-item-parts,
    .slider-item-new-product {
        flex: 0 0 50%;
        padding: 0;
        /* tablet: 2 por vez */
    }

    .slider-container-product .slider-item.slider-item-product {
        height: 589px;
    }
}

@media (min-width: 1024px) {
    .slider-item {
        flex: 0 0 33.5%;
        /* desktop: 4 por vez */
    }

    .slider-item-parts,
    .slider-item-new-product {
        flex: 0 0 33.5%;
    }

    .slider-item.slider-item-parts {
        flex: 0 0 24.5%;
    }

    .slider-item-product,
    .slider-item-parts {
        display: flex;
        justify-content: center;
        /* desktop: 4 por vez */
    }
}

/* Botões */
.slider-nav,
.slider-nav-product {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.slider-nav button {
    color: #fff;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    background: unset;
}

.slider-nav-product button {
    color: #fff;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    background: unset;
}

.slider-nav-parts button {
    color: #fff;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    background: unset;
}

.sliderNext {
    transform: rotate(180deg);
}

.sliderNext-product {
    transform: rotate(180deg);
}

.sliderNext-parts {
    transform: rotate(180deg);
}

/* Dots */
.dots-service {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 24px;
}

.dots-parts {
    text-align: center;
    margin-top: 52px;
    margin-bottom: 24px;
}

.no-pix {
    font-size: 11px !important;
    text-transform: lowercase !important;
    margin-left: 10px;
    display: flex;
    height: 100%;
    align-items: flex-end;
}

@media (max-width:361px) {
    .no-pix {
        margin-bottom: 4px;
    }
}

@media (max-width:390px) {
    .no-pix {
        margin-bottom: 2px !important;
    }

}

.dots-product {
    text-align: center;
    margin: 24px 0 0;

    @media (max-width: 768px) {
        margin: 59px 0 0;
    }
}

.dots-service .dot-service {
    border: none;
    background: unset;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    margin: 0 4px;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid #fff;
}

.dots-service .dot-service.active {
    background: #fff;
}

.dots-product .dot-products {
    border: none;
    background: unset;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    margin: 0 4px;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid #fff;
}

.dots-product .dot-products.active {
    background: #fff;
}

.dots-parts .dot-parts {
    border: none;
    background: unset;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    margin: 0 4px;
    cursor: pointer;
    transition: background 0.3s;
    border: 1px solid #fff;
}

.dots-parts .dot-parts.active {
    background: #fff;
}

.part {
    margin: 40px 0 14px;
    text-align: left;
    letter-spacing: 0;
    font-family: "Arial" !important;
}

.part hr {
    border: none;
    height: 2px;
    background-color: #fcd100;
    width: 100%;
}

.font-weight-700 {
    font-weight: 700;
}

/* Container geral */

.container-mini-banners-background {
    height: 100%;
    width: 100%;
    background: #3f3f3f;
    padding: 32px 52px;
    display: grid;
    align-items: center;
    justify-content: center;
    position: relative;
    max-height: 137px;

    @media (max-width: 768px) {
        padding: 32px 24px;
        display: none;
    }
}

.container-mini-banners {
    height: 100%;
    width: 100%;
    display: grid;
    gap: 20px;
}

s .mini-banners {
    overflow: hidden;
}

/* Área do slider */
.mini-banner-slider {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 64px;
}

/* Cada banner */
.mini-banner-slide {
    min-width: calc(33.333% - 42.67px);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mini-banner-slide img {
    width: 100%;
    max-width: 324px;
    border-radius: 4px;
}

/* Mobile mini banner */

.container-mini-banners-background-mobile {
    height: 100%;
    width: 100%;
    background: #3f3f3f;
    padding: 32px 52px;
    display: grid;
    align-items: center;
    justify-content: center;
    position: relative;
    max-height: 137px;
    display: none;

    @media (max-width: 768px) {
        padding: 32px 24px;
        display: grid;
    }
}

.container-mini-banners-mobile {
    height: 100%;
    width: 100%;
    display: grid;
    gap: 20px;
}

.mini-banners-mobile {
    overflow: hidden;
}

/* Área do slider */
.mini-banner-slider-mobile {
    display: flex;
    transition: transform 0.4s ease-in-out;

    @media (min-width: 768px) {
        gap: 64px;
    }
}

/* Cada banner */
.mini-banner-slide-mobile {
    min-width: calc(33.333% - 42.67px);
    /* 4 por linha no desktop */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (max-width: 768px) {
        min-width: 100%;
        gap: 0 !important;
        /* Remove gap no mobile */
    }
}

.mini-banner-slide-mobile img {
    width: 100%;
    max-width: 324px;
    border-radius: 4px;
}

/* MOBILE → mostrar 1 por vez */
@media (max-width: 768px) {
    .mini-banners-mobile {
        width: 100%;
    }

    .mini-banner-slide-mobile {
        min-width: 100%;
    }
}

/* Esconder setas no mobile */
@media (max-width: 767px) {

    .slider-nav,
    .slider-nav-product,
    .slider-nav-parts {
        display: none;
    }
}

@media (min-width: 1024px) {
    .banner-prev.banner-prev-slider {
        left: 20px;
        top: 40%;
    }

    .banner-next.banner-next-slider {
        right: 20px;
        top: 40%;
    }

    .slider-container-new-product {
        flex-direction: row;
    }

    .slider-nav-parts {
        display: none;
    }

    .dots-product,
    .dot-service,
    .dot-parts {
        display: none;
    }

    .product-list.slider {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        margin: 0 auto !important;
    }

    .product-list.slider .product {
        min-width: 25%;
    }

    .part-list.slider {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        margin: 0 auto !important;
    }

    .part-list.slider .part {
        min-width: 25%;
    }
}

@media (min-width: 1024px) {
    .banner-desk {
        display: block;
    }

    .banner-mobile {
        display: none;
    }
}

@media (min-width: 1024px) {
    footer {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 72px;
    }

    header {
        flex-direction: row;
        padding: 24px 80px;
        justify-content: space-between;
        align-items: end;
    }

    header .logo-campneus {
        width: 420px;
        margin: 0;
    }

    header .container-btns::before {
        display: none;
    }

    header .call-whatsapp {
        margin-top: 0;
    }

    .container-btns-phone {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .text-phone {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 20px;
        font-weight: 350;
    }

    .container-btns {
        flex-direction: row;
        height: auto;
        gap: 24px;
    }

    .call-service {
        margin-bottom: 0;
        margin-top: 0;
    }

    .footer-info-privacy {
        margin-top: 0 !important;
    }

    .template-lp {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .banners {
        padding-top: 116.18px;
    }

    #banner-mobile {
        display: none;
    }

    #banner-desk {
        display: block;
        width: 100%;
    }

    .lp-pirelli-banner-mob,
    .lp-main-banner .lp-banner-mob {
        display: none;
    }

    .display-none-mobile {
        display: flex !important;
    }

    .lp-pirelli-banner .lp-pirelli-banner-desk {
        display: flex;
        margin: 64px 0px;
        max-width: 100%;
    }

    .product-list {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 0 80px 0;
    }

    .product {
        max-width: 390px;
        max-height: 589px;
        padding: 0;
    }

    .part {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 0 16px 0;
    }

    .part {
        max-width: 268px;
        max-height: 521px;
        padding: 0;
        margin-top: 12px;
        margin-bottom: 20px;
    }

    .brand {
        font-size: 20px;
    }

    .part .brand {
        font-size: 20px;
        height: auto;
    }

    .brand-title {
        padding-bottom: 0;
    }

    .call-me-label {
        font-size: 32px;
    }

    .benefit-card img {
        max-width: fit-content;
    }

    .benefit-card {
        padding: 12px;
    }

    .services h2 {
        font-weight: 350;
        margin-top: 8px;
        font-size: 32px;
    }

    .service-list {
        flex-direction: row;
        justify-content: space-around;
    }

    .extra-service-list {
        grid-template-columns: 1fr 1fr 1fr;
        justify-items: center;
    }

    .service-list .service:nth-child(2),
    .service-list .service:nth-child(3) {
        display: flex;
    }

    .footer-about-txt {
        text-align: left;
        padding: 0;
    }

    .parts {
        padding: 40px 16px;
    }

    .service {
        max-width: 328px;
    }

    .products {
        padding: 32px 0;
        margin: 0 auto;
    }

    footer hr {
        margin: 0 auto;
        border-color: #fed100;
    }

    .call-whatsapp {
        min-height: 44px;
        margin-top: 0;
    }

    #online-store {
        height: 44px;
    }

    .call-specialist-container.call-service {
        margin-top: 0px !important;
        margin-bottom: 40px !important;
    }

    .call-specialist-container.call-product {
        margin-top: 32px;
    }

    .footer-title-social-media {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .footer-social-media {
        margin-bottom: 25px;
    }

    footer p {
        line-height: 24px;
        justify-content: left;
    }

    .title-desktop {
        display: flex;
    }

    .title-mobile {
        display: none;
    }

    .banners-two-container {
        margin-bottom: 50px;
    }

    .call-me-button,
    .call-whatsapp {
        width: 235px;
    }

    .product .tag {
        margin-top: 22px;
    }
}

.flip-card {
    max-width: 390px;
    background: transparent;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 589px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-inner-services {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 654px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card-inner-services .flip-card-front {
    height: 100%;
    max-height: 654px;
}

.flip-card-inner-services .flip-card-back {
    height: 100%;
    max-height: 630px;
    height: 630px !important;

    @media (max-width: 768px) {
        max-height: 580px;
        height: 580px !important;
    }
}

.flip-card-inner-services .flip-card-back .product {
    max-height: 630px;
    height: 630px !important;

    @media (max-width: 768px) {
        max-height: 580px;
        height: 580px !important;
    }
}

.flip-card.flipped .flip-card-inner-services {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    top: 0;
    left: 0;
}

.flip-card-front {
    max-height: 589px;
}

.flip-card-front .product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flip-card-inner .flip-card-front .product img {
    object-fit: contain;
}

.flip-card-back {
    transform: rotateY(180deg);
    /* Verso do card */
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-page.section-products .flip-card-back .product {
    position: relative;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#parts-id .flip-card-back .product {
    position: relative;
    padding: 32px 24px;
    width: 100%;
    text-align: center;
    height: 630px;
    display: grid;
    background-color: #3f3f3f;
}

#parts-id .flip-card-back .product.card-end {
    padding: 0;
}

#parts-id .flip-card-back .product.card-end img {
    position: relative;
    top: 2%;
}

.product-content-cards {
    display: grid;
    height: 100%;
    gap: 43px;
}

.flip-left {
    position: absolute;
    top: 3%;
    left: 87%;
    cursor: pointer;
}

.flip-card-back .product .img {
    margin-bottom: 32px;
}

.flip-card-back .product.parts-service {
    padding: 0;
    justify-content: flex-start;
}

.flip-card-back .product .description-back {
    font-family: Gotham;
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 1px;
    vertical-align: middle;
    color: #ffffff;
    text-align: left;
}

.description-back-last-card {
    font-family: Gotham;
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 1px;
    vertical-align: middle;
    color: #ffffff;
}

h2.service-subtitle {
    font-size: 24px;
    line-height: 20px;
    text-transform: uppercase;
    margin: 16px 0 32px;

    @media (max-width: 768px) {
        font-family: "Gotham Book";
        font-weight: 500;
        font-style: Medium;
        font-size: 16px;
        leading-trim: NONE;
        line-height: 20px;
        letter-spacing: 0.64px;
        text-align: center;
        vertical-align: middle;
        text-transform: uppercase;
        margin: 0;
    }
}

.service-subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.32px;
    color: #fafafc;

    @media (max-width: 768px) {
        padding: 10px 0;
    }
}

.container-parts-service .description {
    font-family: "Gotham Book" !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.32px;
    color: #fafafc;
    margin-top: 16px;
    margin-bottom: 0 !important;

    @media (max-width: 768px) {
        margin: 0;
    }
}

.container-parts-service-call {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-parts-service-call .call-me-button {
    width: 276px;
    margin-bottom: 16px;
    border-radius: 9px;
    font-size: 20px;
    color: #000000;
    font-weight: 325;
    font-family: Arial, Helvetica, sans-serif !important;
}

@media (min-width: 1024px) {
    .container-parts-service-call .call-me-button {
        display: none;
    }

    #parts-id .flip-card-back .product.card-end img {
        top: -1%;
    }

    .slider-item-parts .flip-card {
        width: 293px;
    }
}

.call-button-back {
    display: block;
}

.container-parts-service-call .call-me-button span,
.container-btns .call-service.call-me-button.icon-call-me-button span,
.call-product.call-me-button.icon-call-me-button span {
    font-weight: 325;
    font-family: Arial, Helvetica, sans-serif !important;
}

.container-parts-service-call .call-whatsapp {
    width: 276px;
    border-radius: 9px;
    font-size: 20px;
    color: #000000;
    font-weight: 325;
    font-family: Arial, Helvetica, sans-serif !important;
    display: flex !important;
    margin-bottom: 28px;
}

.slider-item-parts .flip-card-back {
    height: 560px;
}

.avaliaton-section {
    margin-top: 56px;
    padding-right: 20px;
    padding-left: 20px;
}

.avaliaton-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.avaliaton-card-img {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.avaliaton-card-img img {
    width: 67px;
    height: 67px;
    border-radius: 99%;
}

.avaliaton-title {
    font-size: 20px;
    letter-spacing: 0.64px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avaliaton-card {
    display: flex;
    background: #3f3f3f;
    border-radius: 17px;
    padding: 18px 16px;
    margin-bottom: 16px;
}

.avaliaton-card-name {
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 8px;
}

.avaliaton-card-description {
    font-size: 14px;
    line-height: 20px;
    font-weight: 325;
    color: #ffffff;
    margin-top: 8px;
}

.footer-info-copyright,
.footer-info-privacy {
    font-family: "Gotham Book";
    font-weight: 350;
    font-style: Medium;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.17px;
    text-align: center;
    vertical-align: middle;
}

.footer-info-copyright a,
.footer-info-privacy a {
    color: var(--white) !important;
}

.footer-info-privacy {
    margin-top: 30px;
}

@media (min-width: 1024px) {
    .avaliaton-section {
        padding-right: 72px;
        padding-left: 72px;
    }

    .avaliaton-title {
        width: 100%;
        font-size: 32px;
        line-height: 25px;
    }

    .avaliaton-card-name {
        font-size: 20px;
        line-height: 20px;
    }

    .avaliaton-card-description {
        font-family: Arial, Helvetica, sans-serif !important;
        font-size: 16px;
        line-height: 20px;
    }

    .avaliaton-card {
        margin-bottom: 32px;
    }

    .footer-info-copyright,
    .footer-info-privacy {
        text-align: left;
    }
}

.section-two-new-banner {
    background-color: #3f3f3f;
    padding: 16px 31px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-two-new-banner .call-specialist-container .call-me-button {
    width: 275px;
    margin-top: 24px;
}

.banner-product {
    font-size: 24px;
    line-height: 30px;
    font-weight: 900;
    color: #ffc42c;
    text-align: center;
    margin-bottom: 24px;
}

.slider-wrapper-banner {
    width: 100%;
    max-width: 1235px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.4s ease-in-out;
    height: 161px;
}

.slide {
    min-width: 100%;
    text-align: center;
    display: flex;
    align-items: flex-start;
}

.slide-image {
    width: 136px;
    height: 146px;
    display: flex;
    align-items: center;
}

.slide-image img {
    max-width: 136px;
    max-height: 146px;
}

.slide-text {
    text-align: left;
    padding: 8px 0px 0px 0px;
}

.slide-text .slide-text-one,
.slide-text-two p,
.slide-text-one h3 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
    letter-spacing: 0.64px !important;
    font-weight: 325 !important;
    line-height: 20px !important;
    color: #fafafc !important;
    margin-top: 16px !important;
}

.slide-text-one h3 span {
    font-size: 32px;
    line-height: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

.slide-text-two div {
    color: #ffc42c;
    font-size: 32px;
    line-height: 20px;
    font-weight: bold;
    letter-spacing: 0.64px;
    margin-top: 8px;
}

.slider-banner-description {
    margin: 24px 0;
    text-align: center;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0.64px;
    font-weight: 325;
    color: #fafafc;
}

/* Estilo dos dots */
.dots {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
}

.dots button.active {
    background: #fedc00;
}

.btn-service-call-desktop {
    display: none;
    color: #ffc42c;
    font-size: 18px;
}

.btn-service-call-desktop p {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.btn-service-call-desktop svg {
    margin-right: 8px;
    margin-top: 8px;
}

.btn-service-call-mobile .call-me-button {
    display: flex;
}

@media (min-width: 1024px) {
    .btn-service-call-mobile .call-me-button {
        display: none;
    }

    .section-two-new-banner {
        padding: 32px 65px;
    }

    .section-two-new-banner .call-specialist-container {
        margin-top: 0;
    }

    .banner-product {
        font-size: 32px;
        line-height: 30px;
    }

    .slider {
        transform: none !important;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .slide {
        min-width: auto;
    }

    .slide-text {
        padding-top: 0px;
    }

    .call-me-button.title-desktop,
    .call-product.call-me-button.icon-call-me-button,
    .call-service.call-me-button.icon-call-me-button {
        background: none;
        color: #ffc42c;
        width: auto;
    }

    .call-button-back {
        display: none;
    }

    .flip-card-back .btn-service-call-desktop {
        padding: 0;
        text-align: left;
    }

    .btn-service-call-desktop {
        display: flex;
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .slider-item-parts .flip-card-front .product.parts-service {
        height: 630px;
        max-height: 630px;
        display: grid;
        align-content: space-between;
    }
}

.parts-service .call-me-card {
    padding: 0 24px 32px;
    margin: 0;
}

.second-part-card {
    padding: 32px 24px;
    display: grid;
    gap: 8px;
    height: 100%;
    align-content: space-between;
}

.call-me-card {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.call-me-card .call-product {
    width: 100%;
}

.call-me-card-flip .call-product {
    width: 100%;
}

.phone-number-card {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Gotham Book";
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    letter-spacing: 2%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 3px;
}

.call-whatsapp-card {
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #25d366;
    color: #000000;
    border-radius: 9px;
    text-decoration: none;
    text-transform: uppercase;
    gap: 5px;
    font-size: 20px;
    font-family: "Gotham";
    font-weight: 400;
}

.flip-card-content {
    padding: 24px;
    display: grid;
    height: 100%;
}

.call-me-card-flip {
    display: grid;
    align-content: end;
    gap: 8px;
}

.text-content-container {
    padding: 32px 72px;
    margin-top: 16px;
    display: grid;
    gap: 16px;

    @media (max-width: 768px) {
        padding: 32px 20px;
        text-align: left;
    }
}

.text-content-text {
    font-family: Gotham;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    vertical-align: middle;
    color: #ffffff;
}

.text-content-text a {
    font-family: Gotham;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    vertical-align: middle;
    color: #ffffff;
    text-decoration: underline;
}

.second-part-card-no-flip {
    height: 380px !important;

    @media (max-width: 786px) {
        height: 394px !important;
    }
}

.call-now-header {
    font-family: Gotham;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #ffc42c;
}

.call-now-text-card {
    font-family: Gotham;
    font-weight: 500;
    font-size: 18px;

    letter-spacing: 2%;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
}

.back-card-lp {
    object-fit: cover !important;
}

.offers-tittle {
    font-weight: 350 !important;
}

.services-subtitle {
    font-family: Gotham;
    font-weight: 500;
    font-size: 24px !important;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: #fafafc;

    @media (max-width: 768px) {
        font-size: 20px;
        line-height: 22px;
        letter-spacing: 0;
        text-align: center;
        vertical-align: middle;
    }
}

@media (max-width: 768px) {

    .call-now-text-card,
    .phone-number-card,
    .call-specialist-container-mobile,
    .call-product-mobile,
    .call-now-flip-card {
        display: none;
    }

    .service-subtitle-text {
        margin-bottom: 24px !important;
        padding: 0 !important;
    }
}

.dots-tires {
    gap: 8px;
}

.dots-tires button {
    @media (max-width: 768px) {
        background: unset;

        border-radius: 50%;
        width: 17px;
        height: 17px;
        cursor: pointer;
        transition: background 0.3s;
        border: 1px solid #fff;
    }
}

.dots-tires button.active {
    background: #ffffff;
}

.mini-banner-text {
    margin-left: 16px;
    font-size: 12px;
    text-transform: uppercase;
}

.mini-banner-title {
    font-weight: 400;
    margin-bottom: 2px;
    font-size: 12px;
}

.mini-banner-sub-title {
    font-weight: 700;
    font-size: 12px;
}

@media (min-width: 769px) {
    .dots-tires {
        display: none;
    }
}