@media (max-width: 768px) {

    /* (Removed fixed-position marquee rules and fallback to restore original styling.) */
    /* ===== RESPONSIVE MOBILE (max-width: 800px) ===== */
    /* Corrige scroll sensível e snap no mobile */
    body {
        /* Removido scroll-snap-type para mobile */
        scroll-behavior: smooth;
        overflow-y: auto;
    }

    section {
        /* Removido scroll-snap-align para mobile */
        scroll-behavior: smooth;
        overflow-y: auto;
    }


    /* Bloqueia scroll quando menu móvel está aberto */
    body.menu-open,
    html.menu-open {
        overflow: hidden !important;
        position: fixed !important;

        padding: 0;
    }


    /* Indicador de seleção de bike */
    .bike-selection-indicator {
        /* O posicionamento do vídeo do tênis será feito via JavaScript para máxima robustez. */
        width: 100vw;
        height: fit-content;
        display: flex;
        align-items: center;
        justify-content: right;
    }

    .bike-selection-indicator svg {
        right: clamp(-20vw, -20vw - 1vw, 0vw);
        top: 23vh;
        width: 75vw;
        opacity: 1;
        mix-blend-mode: overlay;
        z-index: 2;
    }

    /* Menu mobile compacto */
    .menu-links-mobile.compact-links>li>a {
        font-size: 1rem;
        gap: 0.2rem;
        padding: 0.3em 0;
        text-align: left;
        justify-content: flex-start;
        align-items: flex-start;
        transition: font-size 0.4s, color 0.2s, gap 0.2s, padding 0.2s, margin-top 0.2s;
    }

    .menu-links-mobile.compact-links {
        gap: 0.2rem;
        margin-top: 17vh;
        height: 100vh;
        transition: margin-top 0.2s;
    }

    /* Gradiente de fundo do menu mobile */
    #menu-expanded-mobile.menu-mobile {
        position: relative;
        background: #000;
        transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #menu-expanded-mobile.menu-mobile::after {
        content: '';
        pointer-events: none;
        position: absolute;
        inset: 0;
        z-index: 0;
        opacity: 0;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(90deg, #000000 0%, #B7CD00 100%);
    }

    #menu-expanded-mobile.menu-mobile.bikes-gradient-bg::after {
        opacity: 1;
    }

    /* Esconde header desktop */
    .main-header-desk {
        display: none;
    }

    .main-header-mobile {
        display: flex;
        flex-direction: column;

        max-height: 100vh;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: fixed;
        background: linear-gradient(180deg, #000000 0%, rgba(102, 102, 102, 0) 100%);
        z-index: 999999999999;
    }

    .menu-fixed-mobile {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        z-index: 5;
        background: linear-gradient(180deg, #000000 0%, rgba(102, 102, 102, 0) 100%);
        transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Background transparente quando bikes+ estiver expandido */
    body.bikes-expanded .menu-fixed-mobile {
        background: transparent;
    }

    .menu-title-mobile img {
        width: clamp(10rem, 10rem + 3vw, 10rem);
    }

    .menu-hamburguer {
        background-color: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-svg-wrapper {
        display: inline-block;
    }

    /* Animação do botão hamburguer */
    .menu-toggle-svg .bar {
        transition: transform 0.4s ease, opacity 0.3s;
        transform-origin: 21px 13px;
    }

    .menu-toggle-svg .bar1 {
        transform-origin: 21px 3.2px;
    }

    .menu-toggle-svg .bar3 {
        transform-origin: 21px 20.4px;
    }

    .menu-hamburguer.active .menu-toggle-svg .bar1 {
        transform: translateY(10.8px) rotate(45deg);
    }

    .menu-hamburguer.active .menu-toggle-svg .bar2 {
        opacity: 0;
    }

    .menu-hamburguer.active .menu-toggle-svg .bar3 {
        transform: translateY(-10.8px) rotate(-45deg);
    }

    .rectangle-mobile {
        position: fixed;
        right: 0;
        top: -25vw;
        width: 50vw;
        height: 90vh;
        background: #E4FF00;
        mix-blend-mode: overlay;
        border-radius: 50vw;
        opacity: 0.1;
        z-index: 1;
        pointer-events: none;
    }

    #menu-expanded-mobile.menu-mobile {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100vw;
        z-index: 0;
        font-size: 1.1rem;
        margin: 0;
        padding: 0;
        background: #000;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Links do menu */
    .menu-mobile a {
        color: #fff;
        text-decoration: none;
        font-weight: 900;
        font-family: 'Archivo', sans-serif;
        letter-spacing: 0.5px;
        transition: color 0.2s;
        font-style: italic;
    }

    .menu-mobile a:hover {
        color: #E4FF03;
        border-bottom: #E4FF00 solid 1px;
    }

    .menu-mobile a:focus {
        color: #E4FF03;
        border-bottom: #E4FF00 solid 1px;


    }

    .menu-links-mobile {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
        margin-top: 20vh;
        overflow-x: hidden;
        position: relative;
        z-index: 2;
        transition: margin-top 0.2s, gap 0.2s;
    }

    .menu-links-mobile svg {
        position: fixed;
        width: 50vw;
        height: 85vh;
        right: 0;
        top: -10vh;
        z-index: -2 !important;

        mix-blend-mode: overlay !important;
        border-radius: 103px;

    }

    #menu-expanded-mobile.menu-mobile.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        height: 100vh;
    }





    .bikes-submenu-mobile {
        width: 100vw;
        display: flex;
    }



    .bikes-submenu-flex-mobile {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        align-items: normal;
        height: 60vh;
        position: relative;
    }

    .bikes-models-list-mobile {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        flex: 1 1 0;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        position: relative;
        z-index: 1;
    }

    .bike-image-mobile {
        flex: 1 1 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 133px;
        position: relative;
        z-index: 1;
    }

    .bike-model-item-mobile  {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        height: clamp(3.5rem, 7vw, 7rem);
        width: 90vw;
        opacity: 1;
        transform: none;
        transition: all 0.4s ease-out;
        cursor: pointer;
    }
    

    

    .bike-model-name-mobile {
        font-family: 'Audiowide', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: clamp(2rem, 10vw, 5rem);
        line-height: 100%;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #E4FF00;
        opacity: 1;
        margin: 0;
        transition: color 0.3s ease, opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: left;
        padding-left: 1rem;
        text-align: center;
        width: 100%;
        height: 100%;
        min-height: clamp(3.5rem, 6vw, 6rem);
    }

    .bike-model-img-mobile {
        width: var(--bike-img-width);
        height: 100px;
        margin-left: calc(var(--bike-img-margin) + 1.5rem);

    }

    /* Animação para expandir/colapsar bikes-submenu-mobile */
    .bikes-submenu-mobile {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        background: none !important;
    }

    .bikes-submenu-mobile.expanded {
        max-height: 60vh;
    }

    /* Carousel 3D Mobile */
    .carousel-mobile {
        width: clamp(180px, 50vw, 250px);
        height: clamp(180px, 50vw, 250px);
        position: relative;
        transform-style: preserve-3d;
        transform-origin: 50% 50%;
        transition: transform 400ms cubic-bezier(.2, .8, .2, 1);
        will-change: transform;
        touch-action: pan-y pinch-zoom;
        margin: 0 auto;
        touch-action: pan-x pan-y;
        -webkit-user-select: none;
        user-select: none;
        pointer-events: auto !important;
    }

    /* Garante que o item ativo do carousel seja clicável/touchable */
    .carousel .item.active,
    #carousel-mobile .item-mobile.active {
        pointer-events: auto !important;
    }

    /* Mobile carousel: garantir que toda a área receba touch/drag vertical */
    .carousel-mobile {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        /* permitir que o container receba gestos e evitar o comportamento de scroll nativo */
        touch-action: none;
        -ms-touch-action: none;
        /* 3D carousel behavior */
        position: relative;
        height: var(--size);
        transform-style: preserve-3d;
        transform-origin: 50% 50%;
        transition: transform var(--duration) cubic-bezier(.2, .8, .2, 1);
        will-change: transform;
        touch-action: none;
        -webkit-user-select: none;
        user-select: none;
        pointer-events: auto !important;
        padding: 0.5rem 0;
    }

    .carousel-mobile .item-mobile {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        height: var(--item-h);
        line-height: var(--item-h);
        transform-origin: center center;
        transform: translate(-50%, -50%) rotateX(0deg) translateZ(calc(var(--radius) * 1px));
        text-align: center;
        font-family: 'Audiowide', sans-serif;
        font-weight: 500;
        color: inherit;
        font-size: 42px;
        filter: blur(3px);
        opacity: 0.2;

    }

    /* Full-viewport sections (use --vh to mitigate mobile browser UI issues) */
    :root {
        /* --vh will be set via JS to reflect the actual viewport height on mobile browsers */
        --vh: 1vh;
    }

    /* Apply full viewport height to top-level sections */


    /* If a section contains a scrollable inner container, use .section-scroll to enable inner scrolling */
    .section-scroll {
        height: 100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* mobile safe-area padding helpers (account for iPhone bottom bar) */
    .with-safe-bottom {
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }


    .carousel-mobile .item-mobile.active {
        opacity: 1;
        filter: blur(0);
        transform: translate(-50%, -50%) rotateX(0deg) translateZ(calc(var(--radius) * 1px)) translateZ(40px) scale(1.03);
        color: #e4ff03;
        font-size: clamp(52px, 5vw, 82px);
        z-index: 10;
    }



    .bike-active-display-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70%;
        height: auto;
        position: relative;
        flex-shrink: 0;
    }

    .bike-active-display-mobile img {
        max-width: 80%;
        max-height: 100%;
        object-fit: contain;
        transition: opacity 0.3s ease;
    }

    .bike-placeholder-mobile {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(180px, 40vw, 250px);
        height: clamp(120px, 25vw, 180px);
        background: rgba(255, 255, 255, 0.1);
        border: 2px dashed #666;
        border-radius: 8px;
        color: #666;
        font-size: clamp(12px, 3vw, 16px);
        transition: opacity 0.3s ease;
    }

    /* Redefinir layout do bikes-submenu-flex-mobile */
    .bikes-submenu-flex-mobile {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 40vh;

        position: relative;
        overflow: hidden;
        padding: clamp(0.5rem, 2vh, 1rem);
    }

    .bikes-submenu-flex-mobile::before {
        display: none;
    }

    /* Section 2 - slider bikes */
    .tit-slider {
        top: 20vh;
        width: 100%;

    }

    #slider-bikes-home,
    .slider-mask,
    .slider-mask.expanded {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        border-radius: 0 !important;
        z-index: 5 !important;
        background: transparent !important;
        transition: border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: none !important;
        max-height: 100vh !important;
    }

    /* Mobile: Expande a máscara do slider sincronizada com o círculo verde */
    /* Mobile fix for slider centering and sizing */



    #slider-bikes-home .slider-mask {
        width: 100vw;
        height: 70vw;
        min-height: 320px;
        max-width: 100vw;
        max-height: 100vh;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    #slider-bikes-home .slider-container {
        height: 70vw;
        min-height: 320px;
        max-height: 100vh;
        align-items: center;
        justify-content: center;
        gap: 8vw;
    }

    #slider-bikes-home .slider-item {
        height: 70vw;
        min-height: 320px;
        max-height: 80vh;
        align-items: center;
        justify-content: center;
        width: 80vw;
        max-width: 70vw;
    }

    .slider-item {
        top: -15%;
    }


    #slider-bikes-home .slider-item.centered-mobile {
        top: 50% !important;
        transform: translateY(-135%) !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ensure slides with extra content keep their relative bottom-positioning */
    #slider-bikes-home .slideBikeConteudoExtra {
        bottom: -6%;
    }


    .slide-container-bikes {
        width: 100%;
        height: 100vh !important;
        position: relative;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slideBikeConteudoExtra {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        bottom: -9%;
        justify-content: space-between;
        gap: 2rem;
        width: 100%;
        height: 25%;
    }

    .btn-ver-todos {
        position: absolute;
        bottom: 9%;
    }

    .btn-ver-todos-modelos {
    position: absolute;
    bottom: -56%;
            left: -49%;
    width: 67%;
    height: 28%;
}

    .box-altura-recomendada {
        width: 100%;
        font-size: 0.5rem;
    }

    .iconeAltura {
        margin: 0 0.2rem 0 0 !important;
    }

    .sliderArrowsController {
        position: absolute;
        width: 80%;
        bottom: 22%;
    }

    .sliderArrowsController svg {
        width: 5rem;
    }

    #green-circle {
        top: 50vh;
    }

#bike-parallax {
  position: fixed;
  bottom: 0;
  left: 95%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
}

#bike-parallax img {
    width: 160vw;
    height: auto;
}

#sections-parallax {
    background-size: 333.15%!important;
}


    /* Seção 12 MESES DE SEGURO GRÁTIS */

    .conteudo-seguro-gratis {
        width: 50vw;
        margin-top: 30vw;
        margin-left: 2vw;
        height: auto;
        background: transparent !important;
    }

    .conteudo-seguro-gratis p {
        font-size: calc(1rem + 0.5vw);
        margin: 0.5em 0 0 0;
        padding: 0;
        width: 90% !important;
    }

    .conteudo-seguro-gratis .destaque-gratis {
        color: var(--color-primary);
    }

    /* Destaque: 12 MESES DE SEGURO GRÁTIS */
    .conteudo-seguro-gratis h2 {
        font-size: calc(2rem + 1vw);
        margin: 0;
        padding: 0;
    }

   





    /* SECTION 3 - BENEFÍCIOS */

    #section3 {
        background: url('../imgs/bike-girl-mobile.jpg') center/cover no-repeat;
        background-position-x: 87%;
    }

    #section3 span {
        font-size: calc(1.5rem + 2vw);
    }

    #section3 span:nth-child(1) {
        --tab-final: 1rem;
    }

    #section3 span:nth-child(2) {
        --tab-final: 2rem;
    }

    #section3 span:nth-child(3) {
        --tab-final: 3rem;
    }

    /* SECTION 4 - MADE IN BRAZIL */



    #section4 {
        height: 100vh;
        flex-direction: column;
        justify-content: flex-end;
    }

    .conteudo-section4 {
        width: 100vw;
        padding: 0 0.5rem;
        align-items: center;

        justify-content: center;
        gap: 0;
        top: 2rem;
        height: 88%;
        flex-direction: column;
    }

    .txt-madeinbrasil {
        position: relative;
        width: 100vw;
        left: 0;
        top: -0.7rem;
        font-size: 12vw;
        height: auto;
        line-height: 0;
        opacity: 0.2;
        text-align: center;
        z-index: 0;
        pointer-events: none;
        white-space: nowrap;
        /* Impede a quebra de linha */
    }



    .box-sem-placa {

            width: 100vw;
            min-height: 400px;
            /* height: 400px; */
            background-size: 100%;
            background-position: center;
            background-repeat: no-repeat;
            background-image: url(/wp-content/uploads/2025/10/madeinbrasil-destaque-mobile.png);
            padding: 0;
            align-self: center !important;
    }

    .placa img {
        position: relative;
        width: clamp(120px, 40vw, 201px);
        height: auto;
        left: -5rem;
        top: 0rem;
        max-width: 90vw;
    }

   

    .conteudo-section5 {
        width: 100% !important;
    }

    .swiperDepoimentos {
        align-self: center !important;
        justify-self: center !important;
        height: 59% !important;
        width: 100% !important;
    }

    .swiperSlideDepo {
        width: 100% !important;
        height: 80% !important;
    }

    .swipperWrapperDepo {
        width: 100% !important;
    }

    .slide-content-depoimento {
        font-size: 0.8rem;
    }

    

    /* Contadores */
  #section6 {
        height:100%;
    }

    /* SECTION 6 - numbers */
    .conteudo-section6 {
        width: 100%;
        align-items: center;
        height: 80%;
    }

  .conteudo-section6 .box-contadores {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    align-items: center;
    text-align: center;
  }

  .contadores-line {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem 0;
    justify-content: left;
  }

  .anim-numbers {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .counter-kg {
    font-size: clamp(1rem, 4vw, 1.4rem);
  }

  .txt-numbers {
    font-size: clamp(0.8rem, 3.5vw, 1rem);
    max-width: 95%;
  }

  .btnSection6 {
    margin-top: 2rem;
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    width: 100%;
    text-align: center;
  }




    /* SECTION 7 - ONDE COMPRAR */



    .pontos-de-venda {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        height: 100vh;
    }

    .busca-form {
        width: 100%;
    }

    .campo-de-busca {
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding:0;
    }

    #endereco-localizacao {
        display: flex;
        width: 100%;
    }

    .box-onde-comprar {
        justify-content: center;
        gap: 1rem;
        width: 100%;
        height: 100%;
        margin-top: 1rem;
        width: 92%;
    }


    .box-onde-comprar.compact {
        gap: 1rem;
        height: 50%;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
        width: 92%;
    }



    .onde-comprar-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 3%;
        width: 100%;
        transition: transform 0.6s ease, opacity 0.3s ease;
        transform-origin: left center;
    }


    .mapa {
        width: 100%;
        height: 48% !important;
        padding-top: 8% !important;
    }

    .mapa img {
        width: 100%;
        height: auto;
    }

    .mapa.compact {
        width: auto;
        height: 15%;

        padding: 0;
    }

    .mapa.compact img {
        height: 100%;

    }

    .quadradinho-pin {
        width: clamp(40px, 5vw, 115px);
    }

    .lista-lojas-container {
        width: 100%;
        height: 50%;
    }

    .lista-lojas {
        gap:1.5rem;
    }

    /* SECTION 8 - NOTÍCIAS */

    #section8 {
        justify-content: center;
        background: #E4FF03;

    }

    .conteudo-section8 {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        height: fit-content !important;
        margin-bottom:10%;
        margin-top: 20%;
    }

    .noticia-destaque {
        width: 100%;
        height: fit-content;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 0;
    }

    .tit-noticias {
        width: 100%;
        padding: 0;
        margin-top: 1rem;
        font-size: 3.5rem;
        text-align: center;
    }

    .img-destaque-noticia {
        width: 100%;
        margin: 0 0 1rem 0;
        left: 0;

    }

    .img-destaque-noticia img {
        width: 100%;
        height: auto;
    }

    .noticia-destaque-box {
        width: 90%;
        margin-top: 11%;
    }

    .rodape-noticia-destaque {
        height: fit-content;
        width: 100%;
        gap: 3rem;
    }

    /* section 9 --- MAIS NOTICIAS */

    .conteudo-section9 {
        width: 100%;
        height: 100%;
        margin-top: 0;
    }

    span.tituloNoticia br {
        display: none;
    }

    .noticiaBox {
        gap: 0rem !important;
    }

    .maisNoticias {
        font-size: clamp(24px, 5vw, 4rem);
    }

    .maisNoticias {
        margin-bottom: 1rem;
        margin-top: 1rem !important;
    }

    .swiperNoticias .swiper-pagination,
    .swiper-pagination-noticias {
        margin-top: 1rem !important;
    }

    /* FOOTER */

    #main-footer {
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .conteudo-footer {
        margin-top: 1rem;
        width: 90%;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        height: 100% !important;
    }

    .tit-footer {
        font-size: clamp(17px, 5vw, 26px);
        margin: 0;
    }

    .form-footer {
        justify-content: space-between;
        height: 50% !important;
    }

    .inputs-footer {
        margin-top: 0.5rem;
        flex-direction: column;
        width: 100%;
        height: 100% !important;
        gap: 1rem;

    }

    #nome {
        background-color: transparent;
        font-size: clamp(14px, 5vw, 18px);
    }

    #email {
        background-color: transparent;
        font-size: clamp(14px, 5vw, 18px);
    }

    .checkbox-footer {
        margin-top: 0.5rem;
        font-size: clamp(12px, 2vw, 18px);
        font-weight: 100;
        width: 100%;
        gap: 0.2rem;
        display:flex;

    }

    .item-checkbox {
        align-items: center;
        justify-content: left;
        width: 100% !important;
        border: none !important;
        box-shadow: none !important;
    }

    .item-checkbox label {

        width: 80%;
        text-align: left;
        overflow-wrap: break-word;
    }

    .links-footer {
        flex-direction: column !important;
        justify-content: space-around !important;
        gap: 1rem;
        height: 100%;


    }

    .menu-footer-left {
        margin: 0;
    }

    .menu-footer-right {
        margin: 0;
    }

    .right-footer {
        flex-direction: column;
        justify-content: left;
        width: 100%;
        align-items: center;
        height: 100%;
        gap: 2rem;
    }

    .links-redes-footer {
        width: 100%;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .links-redes-footer img {
        width: 60%;
        height: auto;
    }

    .links-uteis {
        width: 100%;
    }

    .menu-footer-columns {
        gap: 0;
        justify-content: center;
        padding:0.5rem;
    }

    .menu-footer-columns ul {
    display: grid
;
    grid-template-columns: repeat(2, auto);
    gap: 8px 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    padding: 0.5rem;
}

    .menu-footer-left {
        padding: 0;
    }

    .info-contato {

        justify-content: flex-start;
        height: fit-content;
        margin: 0;
        gap: 0.5rem
    }



    .links-redes-footer {
        order: 1;
    }

    .info-contato {
        order: 2;
    }

    .info-footer {
        order: 3;
    }

    .direitosReservados {
        bottom: 1%;
        position: relative;
        font-size: clamp(10px, 2vw, 14px);
        margin-top:10%;
    }

    .mail-footer {
        font-size: clamp(13px, 2vw, 16px);
    }

    /* SECTION INTERNA - BIKES HOME */

    .ImenuBikesSection {
        background-size: 0;
        

    }

    .ImenuBikes::before {
  content: "";
  position: absolute;
  background-image: url("/wp-content/uploads/2025/10/grafismo-bikes-bikes.svg");
  background-size: auto;
  background-repeat: no-repeat;
  width: 100vw;
  height: auto;
  background-position: top center;
  z-index: 0;
  mix-blend-mode: soft-light;
  opacity: 1
}

    .ImenuBikes {
        flex-direction: column;
        margin-top: 30%;
        margin-bottom: 10%;
    }

    .tit-ImenuBikes {
        width: 90%;
    }

    .bolaBike {
        width: 90%;
        height: 90%
    }

    .ImenuBikesImg {
        width: 100% !important;
    }

    .bolaBike::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        display: block !important;
        width: max-content !important;
        max-width: 90vw !important;
        white-space: nowrap !important;
        pointer-events: none !important;
        font-size: 6em;
    }

    .ImenuBikes>div.bolaBike:nth-child(6)::after {
        font-size: 5em;
    }





    .seguro-gratis-interna {
        background-image: url("../imgs/bg-12meses-interna.jpg");
        background-repeat: no-repeat;
        background-position-x: -472px;
        background-size: cover;

    }

    .conteudo-seguro-gratis-interna {
        width: 83%;

    }

    .sr-only {
        display: none !important;
    }

    /* Section Stories */

    #section-stories {
        background-color: var(--color-primary);
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .conteudo-sectionStories {
        color: var(--color-text-dark);
        font-family: var(--font-primary);
        font-style: italic;
        font-weight: 900;
        font-size: clamp(1rem, 6vw, 3rem);
        line-height: 100%;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        

    }

    /* Swiper de Depoimentos */
    .swiperStories {
        width: clamp(260px, 30vw, 435px) !important;
        height: clamp(450px, 60vw, 774px) !important;
    }

    .stories-dot {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        /* use semi-transparent light by default so bullets are visible on dark backgrounds */
        background: rgb(255, 255, 255);
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    /* Pagination container used by the stories swiper (JS uses .stories-dots) */
    .stories-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 0px;
        position: relative;
        z-index: 9999;
    }

    /* Fix: force each slide to match the Swiper container on small viewports
     so slides don't overflow the visible area and pagination aligns. */
    .swiperStories .swiper-slide,
    .swiperStories .swiper-slide.swiperSlideStories {
        width: 100% !important;
        flex: 0 0 100% !important;
        box-sizing: border-box !important;
    }

    /* Make sure video content scales to the slide container */
    .swiperStories .swiper-slide video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        display: block;
    }

    /* Ensure pagination container and bullets receive pointer events */
    .stories-dots {
        pointer-events: auto;
    }

    .stories-rightColumn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 95%;
        height: auto;
        gap: 1rem;
        text-align: center;
    }

    .bgzao-bolas {
        display: none;
       
    }

    .features-modelo {
        gap: 0.3rem;
        padding: 0;
        margin-top: 5%;
    }

    .features-modelo li b {
        font-size: 0.8rem !important;
    }

    .modalConteudoModeloDetalhe {
        grid-template-columns: 1fr;
        grid-template-rows: 45% 50%;
        background-color: var(--color-primary)!important;
        padding: 1% 0;
        background-image:none!important;
        height:100vh!important;
    }

    .modal-coluna-direita-mobile {
        bottom: -8%!important;
    }

    .modal-tit-modelo {
        position:absolute;
        top:0%;
        font-size:6rem;
        font-family: var(--font-family-display);
    }

    .modal-altura-txt-mobile {
        top: 54%!important;
        left: 57%!important;
    }

   .vantagens-modal-mobile {    
    gap: 0.3rem !important;
  }

  .smallMobile {
    margin-top: 18rem !important;
  }

  .mulherAlturaMobile {
    bottom: 5% !important;
  }

    .linhaAltura {
        top: 48%;
        left: 20%;
        bottom: 17%;
    }

    .modal-coluna-esquerda {
        align-items: flex-start;
        text-align: left;
        padding: 1rem;
        height: fit-content;
        justify-content: flex-start;
    }

    .modal-coluna-esquerda small {

        font-size: 0.6em;
        align-self: center;
        margin-bottom: 0;
        margin-top: 1rem;
        margin-right: 2%;
        white-space: nowrap;
    }

    .tit-modelo {
        color: #ffffff;
        font-size: 5rem;
    }

    .modal-coluna-direita {
        position: relative;
        flex-direction: column;
        height: 64vh;
        bottom: 16%;
        padding: 0;
    }

    .mulherAltura {
        position: relative;
        height: 84%;
        max-width: 200%;
        width: 84%;
        left: 51%;
        bottom: 0%;
        align-self: flex-start;

    }

    #modalBikeModelo {
        position: relative;
        width: 118%;
        margin-top: 1rem;
        left: 47%;
        bottom: 15%;
        max-width: 130%;
    }

    .modal-altura-txt {
        position: absolute;
        top: 46%;
        left: 60%;
        transform: none;
        color: #000;
        text-shadow: none;
        margin-top: 1rem;
        font-size: 0.7rem;
    }

            .close {
           left: 77%;
            width: 90%;
            top: 11%;
            z-index: 99999;
        }
       
    .btn-ver-mais-detalhes {
        display: none;
    }

    .btn-ver-mais-detalhes-mobile {
        position: relative;
        display: block;
        bottom: 11%;
        width: 80%;

    }

    .luzBola {
        display: none;
    }

    #container-interna-bike {
        display: flex;
        flex-direction: column;
        justify-content: space-between !important;
        height: fit-content;
    }

    .internaBikeFeats {
        min-height: fit-content !important;

    }



    .hero-interna-modelo-bike {
        background-image: url("../imgs/hero-interna-s12-mobile.jpg");
        background-size: cover;
        height: 100vh;
    }

    .titulo-hero-interna {
        margin-right: 0;
        margin-left: 0;
        width: 100vw;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    #interna-bike-features {
        justify-content: flex-start;
    }

    .interna-feats-cores {
        flex-direction: column;
        gap: 2rem;
        padding: 0;
        justify-content: center;

    }

    .swiper-container-interna-cores {
        width: 100%;
        height: auto;
    }

    .swiper-interna-cores {
        width: 100%;
        height: auto;
        border-radius: 0;
    }



    .cores h3 {
        text-align: center;
        font-size: 1rem
    }

    #interna-feats-seguranca {
        flex-direction: column-reverse !important;
        height: fit-content !important;
        justify-content: flex-end;
        
    }

    .seguranca-box {
        width: 100%;
        gap: 1rem;
        justify-content: flex-start;
        align-items: flex-start;
        height: fit-content !important;
        padding: 14% 5%;
    }

    .titSeguranca {
        font-size: 2rem;
    }

    .txtSeguranca {
        width: 95%;
        text-align: left;
        font-size:5.5vw;
        line-height: 7vw;
    }

    .tooltip {
        width: 30px;
    }

    .modalConteudoFeatsSeguranca {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(/wp-content/uploads/2025/10/bg-modal2.jpg);
    background-size: cover;
    height: 100vh;
    z-index:100000000;
}

.modalConteudoFeatsSeguranca img {
    width: 100%;
    height: auto;
}

    .imgModalSeguranca {
        width: 100% !important;
    }

    .bg-bola-1,
    .bg-bola-2 {
        display: none;
    }

    .espacoDeCorte {
        height: 100%;
        background-color: var(--amarelo);
    }

    .sem-placa-interna {
        background: url("../imgs/bg-sem-placa-mobile.png");
        background-size: 80% auto;
        background-position: center;
        background-repeat: no-repeat;
        align-items: normal;
    }

    .placa-mobile img {

        width: clamp(120px, 60vw, 201px);
        height: auto;
        left: 4rem;
    }





    .modalConteudoModelo {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0;
        gap: 1.5rem;
        border-radius: 0;
        /* modal ocupa tela cheia */
        width: 100%;
        height: 100%;
        justify-content: center;
        background: url('../imgs/bg-modal-mobile.jpg') center/cover no-repeat;
    }

    .modalSeg {
        background: linear-gradient(270deg, rgba(74, 73, 80, 1) 0%, rgba(0, 0, 0, 1) 84%);
    }


    .imgModalSeguranca {
        width: 80%;
        max-width: 320px;
    }

    .modalSegurancaTextos {
        width: 100%;
        padding: 0;
    }

    .titSegurancaFeat {
        font-size: 1.5rem;
    }

    .txtSegurancaFeat {
        font-size: 0.95rem;
        line-height: 1.4rem;
    }

    .menu-alturas {
        flex-direction: column;
        height: 100vh;
        align-items: normal;
    }

    .coluna-altura {
        flex: 1;
        padding: 15px;
        transition: flex 0.5s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .coluna-altura.expandida {
        flex: 4;
    }

    .coluna-altura.reduzida {
        flex: 0.4;
    }

    .coluna-altura .titulo-altura {
        font-size: 2.5rem;
    }

    .coluna-altura .conteudo-altura {
        top: 3%;
    }

    .coluna-altura.expandida .conteudo-altura {
        display: block;
    }

    .coluna-altura .txtColunaModel {

        display: block;
        font-size: 0.7rem;
        position: absolute;
        bottom: 2%;
        width: 80%;
        opacity: 0;

    }

    .coluna-altura.expandida .txtColunaModel {
        display: block;
        font-size: 0.7rem;
        position: absolute;
        bottom: 2%;
        width: 80%;
        opacity: 1;

    }



    .imgAltura {
        position: relative;
        max-width: 100%;
        max-height: 264px;
        margin-top: 0px;
        left: 5%;
    }

    .formSejaRevendedorMobile {
        flex-direction: column;
        justify-content: flex-start;
        height: auto !important;
        margin-top: 10% !important;

    }

    .titFormRevendedor {

        padding: 0 2%;
    }

#form-seja-revendedor .form-colEsq {
        width: 100%;
            height: 50vh;
        margin-top:0;
        margin-left:0;
        background-size: cover!important;
        background-image: url('/wp-content/uploads/2025/10/bg-revendedorEsq.png')!important;

    }

    .container-colEsq {
        width:100%;
        height:100%;
        top: 16%;
    left: 8%;
    
    }


    .form-colDir {
        width: 100%;
        height: 50%;
        padding: 2% 2%;
    }

    .srForm-container {

        height: 100%;
    }

    .srForm-title {
        font-size: 18px;
    }

    .srForm input,
    .srForm button {
        font-size: 14px;
    }

    .srForm-checkbox-group {
        width: 80%;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: #fff;
        flex-wrap: wrap;
    }
    #seguro-gratis-pagina {
        
        display:flex;
        flex-direction: column;
        background-image: url("/wp-content/uploads/2025/10/bg-12meses-interna-mobile.jpg")!important;
        background-repeat: no-repeat!important;
        background-size: cover;
        justify-content: space-between!important;
        
    }

    .ativarSeguroSection {
        position:relative;
        height:300vh!important;
        width:100vw!important;
    }

    .btn-secondary-ativarSeguro {
       width:300px;
        align-self: center;        
        margin-bottom: 2rem;
    }


    .como-ativar-seguro {
        position:relative;
        bottom:0;
        height: 12% !important;
    }

    .como-ativar-seguro span {
        font-size: 1rem;
    }

    #ativSegPagina {
        flex-direction: column;
        gap:2rem;
       
    }
    .ativSegCol {
        padding: 0 6%;
        height:fit-content;
        width: 100%;
    }

    .ativSegCol:nth-child(4) {
        margin-bottom:10%;
    }

    .ativSegTexto {    
    font-size: 1.0em;
    width:100%;
    }

    .ativSegTitulo {
    
    font-size: 10.5vw;
   
}

    

    #validadeSeg {
    position:relative;
    height:100%!important;
    width:100%!important;
    }

    .conteudoValidadeSeg {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    
}

.conteudoValidadeSeg .imgBikeSegInt {
             width: 140%;
            height: auto;
            align-self: last baseline;
            left: 17%;
            position: relative;
            bottom: -48px;
}

.placaSegInterna-raio {


    width: 20%;
    
}

.placaSegInterna {
    width: min(55vw, 650px);
    background: #ffffff;
    padding: 45px 55px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 14px 14px 1px rgba(0, 0, 0, 1);
}

    .promoRegulamento {
        position:relative;
            font-size: 0.7rem;
            bottom:0;
            z-index:100;
    }
    
    .placaTermos {    
    width: 98%;
    left: 0%;
    align-self: center;
    top:-17%;
    z-index:100;
}

    .placaTermos img{    
    width: 100%;
    position:relative;
    top:-4%;
    
}

.bgSegValidade {
    display:block;
    position:absolute;
    top:-32%;

}

.verTodosModelos {
    position: relative;
    transition: none;
    top: 31%;
    left: 0%;
    font-size: 1rem;
    width:90%;
    align-self: center;
}


.conteudo-garantia-interna {
    
        margin-left: 1vw;
        width:85%!important;
}

.btManual {
    width:85%;
}

.ativarSeguroSection {
    height: 100% !important;
}

.ativarSeguroSection::after {
    width: 88%;
    max-width: 90%;
    height: 99%;
}

.garantiaSection {
    margin-bottom: 20%!important;
}

#seguro-gratis-pagina.garantia-pagina {
    background-image: url('../imgs/bg-garantia-pagina.jpg')!important;
    background-position-x: 50% !important;
    background-position-y: 10% !important;
    background-size: 420% !important;
}

.termosEcondicoesBox {
    width:95%;
    height: 54% !important;
    min-height: 62vh !important;
    padding: 2% 0%;
}

.garantiaTermosTit {
    width:95%;
    text-align:left;
    font-size: 1.1rem;
    margin: 10% 0%;
    
}
.garantiaTermosTxt {
    width:85%;
    line-height:130%;
    font-size: 5vw;
    
}

.aNoticiaFull { 
    width:90%;
    height:fit-content
}



.conteudoSliderMaisNoticias {
    height:100%;
}

#interna-feats-seguranca.sobreNosDestaque {
    flex-direction: column-reverse;
}

  .parallax-sobre-nos-bolinhas .dot {
    opacity: 0.5;
    filter: blur(var(--blur, 5px))!important;
  }

#seguro-gratis.sobreNosHero {
    background-image: url('/wp-content/uploads/2025/10/img-hero-sobre-nos-mobile.jpg');
    background-size: cover;
    height:100vh!important;
    background-position: bottom;
    
}

.seguranca-box .boxVisaoMissao .boxVisaoMissaoContent {
  
  width:100%!important;
  height:600px!important;
  gap:1rem;
}

.bike-container.missaoVisaoContainer {
    width: 100%!important;
    height: 100%!important;

}

.sobreNosBox2 .seguranca-box {
    position:relative;
    width:92%;
    left:-5%;
    height:100%;
}

.sobreNosBox1,.sobreNosBox2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width:100%;
    
    height:100%;
}

.sobreNosBox2 .seguranca-box .boxVisaoMissao {
    align-items: center;
}

.bike-container.manifesto-container {
  display:flex;
  align-items: center;
  justify-content: center;
  width:100%;
  height:100%;
}

.sobreNosBox1 .seguranca-box {
    width:90%;
    margin-bottom:10%;
}

#faixa-preta-marquee, .faixa-preta-track {
    display:none;
}

.imgModalSeguranca {
        width: 90%;
        max-width: 260px;
    }

    .titSegurancaFeat {
        font-size: 1.25rem;
    }

    .txtSegurancaFeat {
        font-size: 0.9rem;
    }

     /* Menu mobile compacto */
    .menu-links-mobile.compact-links>li>a {
        font-size: 1rem;
        gap: 0.2rem;
        padding: 0.3em 0;
        text-align: left;
        justify-content: flex-start;
        align-items: flex-start;
        transition: font-size 0.4s, color 0.2s, gap 0.2s, padding 0.2s, margin-top 0.2s;
    }

    .menu-links-mobile.compact-links {
        gap: 0.2rem;
        margin-top: 17vh;
        height: 100vh;
        transition: margin-top 0.2s;
    }

    /* Gradiente de fundo do menu mobile */
    #menu-expanded-mobile.menu-mobile {
        position: relative;
        background: #000;
        transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #menu-expanded-mobile.menu-mobile::after {
        content: '';
        pointer-events: none;
        position: absolute;
        inset: 0;
        z-index: 0;
        opacity: 0;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(90deg, #000000 0%, #B7CD00 100%);
    }

    #menu-expanded-mobile.menu-mobile.bikes-gradient-bg::after {
        opacity: 1;
    }

    /* Esconde header desktop */
    .main-header-desk {
        display: none;
    }

    .main-header-mobile {
        display: flex;
        flex-direction: column;

        max-height: 100vh;
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: fixed;
        background: linear-gradient(180deg, #000000 0%, rgba(102, 102, 102, 0) 100%);
        z-index: 9999;
    }

    .menu-fixed-mobile {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        z-index: 5;
        background: linear-gradient(180deg, #000000 0%, rgba(102, 102, 102, 0) 100%);
        transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Background transparente quando bikes+ estiver expandido */
    body.bikes-expanded .menu-fixed-mobile {
        background: transparent;
    }

    .menu-title-mobile img {
        width: clamp(10rem, 10rem + 3vw, 10rem);
    }

    .menu-hamburguer {
        background-color: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-svg-wrapper {
        display: inline-block;
    }

    /* Animação do botão hamburguer */
    .menu-toggle-svg .bar {
        transition: transform 0.4s ease, opacity 0.3s;
        transform-origin: 21px 13px;
    }

    .menu-toggle-svg .bar1 {
        transform-origin: 21px 3.2px;
    }

    .menu-toggle-svg .bar3 {
        transform-origin: 21px 20.4px;
    }

    .menu-hamburguer.active .menu-toggle-svg .bar1 {
        transform: translateY(10.8px) rotate(45deg);
    }

    .menu-hamburguer.active .menu-toggle-svg .bar2 {
        opacity: 0;
    }

    .menu-hamburguer.active .menu-toggle-svg .bar3 {
        transform: translateY(-10.8px) rotate(-45deg);
    }

    .rectangle-mobile {
        position: fixed;
        right: 0;
        top: -25vw;
        width: 50vw;
        height: 90vh;
        background: #E4FF00;
        mix-blend-mode: overlay;
        border-radius: 50vw;
        opacity: 0.1;
        z-index: 1;
        pointer-events: none;
    }

    #menu-expanded-mobile.menu-mobile {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100vw;
        z-index: 0;
        font-size: 1.1rem;
        margin: 0;
        padding: 0;
        background: #000;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Links do menu */
    .menu-mobile a {
        color: #fff;
        text-decoration: none;
        font-weight: 900;
        font-family: 'audiowide', sans-serif;
        letter-spacing: 0.5px;
        transition: color 0.2s;
        font-style: italic;
    }

    .menu-mobile a:hover {
        color: #E4FF03;
        border-bottom: #E4FF00 solid 1px;
    }

    .menu-mobile a:focus {
        color: #E4FF03;
        border-bottom: #E4FF00 solid 1px;


    }

    .menu-links-mobile {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
        margin-top: 20vh;
        overflow-x: hidden;
        position: relative;
        z-index: 2;
        transition: margin-top 0.2s, gap 0.2s;
    }

    .menu-links-mobile svg {
        position: fixed;
        width: 50vw;
        height: 85vh;
        right: 0;
        top: -10vh;
        z-index: -2 !important;

        mix-blend-mode: overlay !important;
        border-radius: 103px;

    }

    #menu-expanded-mobile.menu-mobile.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        height: 100vh;
    }





    .bikes-submenu-mobile {
        width: 100vw;
        display: flex;
    }



    .bikes-submenu-flex-mobile {
        display: flex;
        width: 100%;
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
        height: 42vh;
        position: relative;
    }

    .bikes-models-list-mobile {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        flex: 1 1 0;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        position: relative;
        z-index: 1;
    }

    .bike-image-mobile {
        flex: 1 1 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 133px;
        position: relative;
        z-index: 1;
    }

    .bike-model-item-mobile {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        height: clamp(3.5rem, 7vw, 7rem);
        width: 90vw;
        opacity: 1;
        transform: none;
        transition: all 0.4s ease-out;
        cursor: pointer;
    }

    .bike-model-name-mobile {
        font-family: 'Audiowide', sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: clamp(2rem, 10vw, 5rem);
        line-height: 100%;
        letter-spacing: 0%;
        text-transform: uppercase;
        color: #E4FF00;
        opacity: 1;
        margin: 0;
        transition: color 0.3s ease, opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: left;
        padding-left: 1rem;
        text-align: center;
        width: 100%;
        height: 100%;
        min-height: clamp(3.5rem, 6vw, 6rem);
    }

    .bike-model-img-mobile {
        width: var(--bike-img-width);
        height: 100px;
        margin-left: calc(var(--bike-img-margin) + 1.5rem);

    }

    /* Animação para expandir/colapsar bikes-submenu-mobile */
    .bikes-submenu-mobile {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        background: none !important;
    }

    .bikes-submenu-mobile.expanded {
        max-height: 60vh;
    }

    /* Carousel 3D Mobile */
    .carousel-mobile {
        width: clamp(180px, 50vw, 250px);
        height: clamp(180px, 50vw, 250px);
        position: relative;
        transform-style: preserve-3d;
        transform-origin: 50% 50%;
        transition: transform 400ms cubic-bezier(.2, .8, .2, 1);
        will-change: transform;
        touch-action: pan-y pinch-zoom;
        margin: 0 auto;
        touch-action: pan-x pan-y;
        -webkit-user-select: none;
        user-select: none;
        pointer-events: auto !important;
    }

    /* Garante que o item ativo do carousel seja clicável/touchable */
    .carousel .item.active,
    #carousel-mobile .item-mobile.active {
        pointer-events: auto !important;
    }

    /* Mobile carousel: garantir que toda a área receba touch/drag vertical */
    .carousel-mobile {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        width: 100%;
        /* permitir que o container receba gestos e evitar o comportamento de scroll nativo */
        touch-action: none;
        -ms-touch-action: none;
        /* 3D carousel behavior */
        position: relative;
        height: var(--size);
        transform-style: preserve-3d;
        transform-origin: 50% 50%;
        transition: transform var(--duration) cubic-bezier(.2, .8, .2, 1);
        will-change: transform;
        touch-action: none;
        -webkit-user-select: none;
        user-select: none;
        pointer-events: auto !important;
        padding: 0.5rem 0;
    }

    .carousel-mobile .item-mobile {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        height: var(--item-h);
        line-height: var(--item-h);
        transform-origin: center center;
        transform: translate(-50%, -50%) rotateX(0deg) translateZ(calc(var(--radius) * 1px));
        text-align: center;
        font-family: 'Audiowide', sans-serif;
        font-weight: 500;
        color: inherit;
        font-size: 42px;
        filter: blur(3px);
        opacity: 0.2;
    }

        #section4 {
            justify-content: flex-start;
            min-height:130vh;
        }

         .conteudo-section4::before {
           display:none;
        }

    .conteudo-section4 {
        justify-content: space-around;
    }

    .vantagens-container {
    width: 97%;
    padding: 0 1rem;
    justify-content: flex-start;
    height:100%;
    
  }

  .vantagens-container .vantagens {
    
    
    top: 8%;
    position: relative;
}

  .conteudo-section4.vantagens {
    width: 95%;
    margin-top: 5%;
    align-items: center; /* centraliza */
    gap: 0rem;
    
    padding-top:0;
    
    
  }

  .vantagem-row {
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    align-self: flex-start;    
  }

  .vantagens-mobile {
    display:flex;
    flex-direction: column;
    position:absolute;
    top:clamp(17%,25vw,30%);
    gap:1rem;
  }

  .vantagens a {
    align-self: center;
  }

  .vantagem-row-mobile {
    opacity:1;
  }

   .vantagem-row-mobile span{
    margin: 0.1rem 0;
  }

  .vantagem-row span {
    font-size: clamp(1rem, 4vw, 1.2rem); /* reduz fonte no mobile */
    text-align: left;
  }

  .vantagem-row img {
    width: 1.2rem; /* ícones menores */
  }

  .btn-vantagens {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    width:95%;
  }

  .bt-vantagens-home {
    
    width:100%;
    
  }

  .texto-juridico {
    font-size: 0.75rem;
    max-width: 95%;
  }

  #section8.interna-da-noticia {
        height: 59vh !important;
        max-height: none !important;
        min-height: fit-content !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start!important;
  
}

#container-interna-da-noticia {
background-color: var(--color-background-white);
display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  
}
.container-conteudoNoticia {
  width:85%;
  color:var(--color-text-dark);
  height:100%;
}

.noticia-destaque-interna {
    height:fit-content!important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.img-destaque-noticia {
    width:90%;
    padding:0;
}

.noticia-destaque-box-mobile {
            width: 85%;
        margin-top: 8%;
}

.noticia-destaque-txt {
    font-size: 0.8rem;
}

.rodape-noticia-destaque {
    margin-top:5%;
}

#seta-preta-voltar {
    width:10%;
    height: auto;
    top:4%;
    left:6%;
    
}

.conteudo-faq-interna {
                background-image: url(/wp-content/uploads/2025/10/faq-hero-mobile.jpg) !important;
            margin: 0;
            width: 96% !important;
            background-size: 125% !important;
            background-position-x: 82% !important;
            background-position-y: -8% !important;
}

.tit-faq{
    display:flex;
    justify-content: center;
    align-items: center;
    height:100px!important;
}

.tit-faq span {
    padding:0;    
    line-height:normal;
    

}

.faq-question{
    font-size: 0.9rem;
    gap: 1rem;
}

.faq-item {
    
    padding: 1.2rem 1rem;
}

#legislacao {
background-image: url('/wp-content/uploads/2025/10/bg-faq-2-1024x576.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
display:flex;
flex-direction: column;
align-items: center;
justify-content: center;
height:100%!important;
}

.cards-legislacao {
  
display:flex;
flex-direction: column;
width:90%;
height:100%;
justify-content: center;
align-items: center;
gap:clamp(0.5rem, 5vw, 1rem);
}

.cards-legislacao img {
width: clamp(101%, 10vw, 90%);
            height: auto;
            padding: 2% clamp(1%, 5vw, 2%);
  
  
}

.legislacao-titulo {
  font-family: 'Archivo';
  font-style: italic;
  font-weight: 900;
  font-size: 2REM;
  line-height: 101.76%;
  text-transform: uppercase;
  color: white;
  margin:10% 0;
 
}

#seguro-gratis.hero-interna-modelo-bikeS14 {
    background-image:url('/wp-content/uploads/2025/11/hero-interna-s14-mobile.jpg');
}

#seguro-gratis.hero-interna-modelo-bikeS17 {
    background-image:url('/wp-content/uploads/2025/11/hero-interna-s17-mobile.jpg');
}

#seguro-gratis.hero-interna-modelo-bikeS27 {
    background-image:url('/wp-content/uploads/2025/11/hero-interna-s27-mobile.jpg');
}

#seguro-gratis.hero-em-construcao {
  background-image: url("/wp-content/uploads/2025/11/hero-interna-em-construcao-mobile.jpg");
  background-position: center;
  background-size: cover;
}

.interna-feats-destaquesolo {
    flex-direction: column;
    padding: 0 5%;
    height:100%;
}

.interna-feats-destaquesolo img:nth-of-type(1) {
    width: 180%;
}

.bateria-duradoura img:nth-of-type(1) {
  width: 30%;
  
}

#interna-feats-seguranca.internaBikeFeatsYellow {
    flex-direction: column!important;
}

.modulo-generico-interna-s14 {
    background-image: url('/wp-content/uploads/2025/10/lifestyle-bg-mobile.jpg');
}

.conteudo-generico-interna span:nth-of-type(1),
.conteudo-generico-interna span:nth-of-type(2) {
    font-size: 1.6rem;
    white-space: unset;
}

#segurancaInternaSingle {
    display:flex;
    flex-direction: column;
    width:100%;
    background-position: center;
    background-size: cover;
                height: 100% !important;
    
}

.segurancaInternaDouble img:nth-of-type(1) {
    width: 130%!important;
    position:absolute;
    bottom:0!important;
    left: 1% !important;
}

#segurancaInternaSingle .segurancaInternaDouble-linha2 .bike-traseira-destaque-s17 {
    
    left: -19% !important;
}

.interna-seguranca-box-txt {
    width:100%;
    align-self: center;
    justify-content: center;
    left:0;
    top:15%;
    padding: 0 5%;
}

#segurancaInternaSingle span:nth-of-type(1) {
    font-size: 2rem;

}

#segurancaInternaSingle span:nth-of-type(2) {
     font-size: 1.5rem;
}

.tituloInternaHeroBikeS17 {
    align-items: flex-start;
}

#segurancaInternaSingle img:nth-of-type(2) {
    width: 100%!important;
    left:-1%;
  top:14%;
}

.bike-traseira-destaque {
    position:absolute;
  width:140%!important;
  bottom:0!important;
  left:-20%;
  top:none!important;
}

.segurancaInternaDouble-linha2 {
    flex-direction: column-reverse;
    padding:0;
}



.interna-seguranca-box-txt2 {
    width: 92% !important;
}

.onde-comprar-tit-internas {
        font-size: clamp(2.3rem, 7vw, 5rem)!important;
}

.bike-traseira-destaque-s27 {
    width:100%!important;
    left:1%
}



#section4.section-interna-placa {
    min-height:100%;
}

.segurancaInternaDouble-linha1 {
  
  flex-direction:column-reverse;
  justify-content: center;
  padding:0;
  align-items: center;
}

#segurancaInternaSingle.segurancaInternaDouble .segurancaInternaDouble-linha1 img {
    width: 130%;
}

.interna-seguranca-box-txt-s14 {
    left:0;
    width:95%!important;
    bottom:-73vw;
}

#segSingleImg {
    width: 140%!important;
    align-self: center;
    left:-20vw!important;
    top: -51% !important;
}

#segurancaInternaSingle.segurancaInternaDouble {
                height: 196vh !important;
}

#segurancaInternaSingle .interna-seguranca-box-txt1-s17 {
    left: -19%;
    top: 29vw;
}

}
