/* 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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    letter-spacing: 0.02em;
    font-weight: 500;
}

:root {
    --main-bg-color: #4d4d4d;
}

@font-face {
    font-family: "Gotham Bold";
    src: url("../css/fonts/GothamBold/GothamBold.otf") format("opentype"),
        url("../css/fonts/GothamBold/GothamBold.woff2") format("woff2"),
        url("../css/fonts/GothamBold/GothamBold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.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;
}

.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: 2px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 29px;
    margin-bottom: 23px;
    font-family: "Gotham Bold", 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 Bold", 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;
    letter-spacing: 2px;
    color: #555555;
    font-family: "Gotham", 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", Arial, sans-serif;

    .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;
}

.suggestions div:hover {
    background: #eee;
}

.not-found {
    background: #fff;
    color: #000;
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    font-family: "Gotham", Arial, sans-serif;
    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;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-family: "Gotham Bold", 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;
}

.contato {
    color: #ffffff;
    font-weight: 350;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 2px;
    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;
        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;
}

body {
    margin: 0 auto;
    background-color: var(--black);
    max-width: 1920px;
}

header {
    display: flex;
    flex-direction: column;
    padding: 8px 0 24px;
    align-items: center;
    position: fixed;
    background-color: #000000;
    width: 100%;
    max-width: 1920px;
    z-index: 9999;
}

header .logo-campneus {
    width: 200px;
    margin-bottom: 16px;
}

header .container-btns::before {
    content: "Ligue agora";
    color: #FFFFFF;
    align-self: center;
}

.template-lp {
    /*/display: none;*/
    margin: 0;
    background: var(--black);
    color: var(--white);
}

.container-btns {
    gap: 4px;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.call-me-button {
    background: #FED100;
    color: #000000;
    border-radius: 4px;
    padding: 8px 0;
    width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.02em;
    font-weight: 500;
    gap: 5px;
}

.lp-pirelli-banner {
    margin: 40px 0 24px;
}

.lp-pirelli-banner-mob {
    width: 100%;
}

.call-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 4px;
    padding: 7px 0;
    width: 240px;
    text-decoration: none;
    gap: 5px;
    font-size: 16px;
}

.banners {
    padding-top: 183.18px;
}

#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 16px;
}

.products h2 {
    margin-bottom: 40px;
    font-weight: 1000;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    vertical-align: bottom;
}

.product-list {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.product {
    border-radius: 16px;
}

.product img {
    width: 100%;
}

.product p {
    justify-self: left;
}

.product .benefits {
    margin: 18px 0 10px;
    justify-self: center;
}

.product>hr {
    border: none;
    height: 2px;
    background-color: #fcd100;
    width: 100%;
}

.brand {
    font-weight: 900;
    font-size: 22px;
    line-height: 26px;
    text-align: center;
    vertical-align: bottom;
    text-transform: uppercase;
    color: #FED100;
    padding: 8px 0 16px;
    justify-self: center !important;
}

.sizes {
    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: 64px;
}

.call-specialist-container .container-btns {
    justify-content: center;
    align-items: center;
}

.call-me-label {
    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: 24px 16px;
    text-align: center;
}

.services h2 {
    font-weight: 1000;
    font-style: Ultra;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 2%;
    text-align: center;

}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#free-service {
    position: relative;
}

#free-service::before {
    content: url(../img/free-icon.png);
    position: absolute;
    left: 0;
}

.service img {
    margin-bottom: 12px;
}

strong {
    font-weight: 900;
    font-style: Black;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 2%;
    text-align: center;
    vertical-align: middle;
    height: 56px;
    align-content: center;
}

.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;
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.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: #0a0a0a;
    padding: 24px 16px;
    font-size: 12px;
    text-align: center;
}

footer p {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: -0.17px;
    vertical-align: middle;
    display: flex;
    justify-content: left;
}

.footer-info-txt {
    display: flex;
    flex-direction: column;
    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;
    justify-self: center;
}

.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;
}

.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%;
}

.banner-prev {
    left: 16px;
}

.banner-next {
    right: 16px;
}

.banner-desk {
    display: none;
    width: 100%;
}

.banner-mobile {
    display: block;
    width: 100%;
}

@media (min-width: 1024px) {
    .banner-desk {
        display: block;
    }

    .banner-mobile {
        display: none;
    }
}

@media (min-width: 1024px) {
    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;
    }

    .container-btns {
        flex-direction: row;
        height: 44px;
        gap: 24px;
    }

    .banners {
        padding-top: 116px;
    }

    #banner-mobile {
        display: none;
    }

    #banner-desk {
        display: block;
        width: 100%;
    }


    .lp-pirelli-banner-mob,
    .lp-main-banner .lp-banner-mob {
        display: none;
    }

    .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: 328px;
        max-height: 636px;
        padding: 0;
    }

    .call-me-label {
        font-size: 32px;
    }

    .benefits-container {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 40px 80px;
        justify-items: center;
    }

    .benefit-card img {
        max-width: fit-content;
    }

    .benefit-card {
        padding: 12px;
    }

    .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;
    }

    .service {
        max-width: 328px;
    }

    footer hr {
        margin: 0 auto;
        width: 1248px;
    }
}