@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');


/* =========================================================
   CONFIGURAÇÕES GERAIS
========================================================= */

:root {
    --red: #ed101b;
    --red-dark: #b90009;

    --black: #050607;
    --black-2: #0b0c0e;
    --black-3: #151618;

    --white: #ffffff;

    --gray-light: #f3f3f3;
    --gray: #777777;

    --container: 1400px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", Arial, sans-serif;

    background: var(--black);
    color: var(--white);

    overflow-x: hidden;
}


img {
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


.container {
    width: min(92%, var(--container));

    margin-left: auto;
    margin-right: auto;
}



/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;

    top: 0;

    z-index: 1000;

    height: 88px;

    background: rgba(5, 6, 7, .98);

    border-bottom:
        1px solid rgba(255, 255, 255, .06);
}


.nav {
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 28px;
}



/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;

    align-items: center;

    flex-shrink: 0;
}


.logo img {
    display: block;

    width: 265px;
    height: 72px;

    object-fit: contain;

    object-position: left center;
}



/* =========================================================
   MENU
========================================================= */

.menu {
    display: flex;

    align-items: center;

    gap: 30px;
}


.menu > a:not(.social-link) {
    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color .2s ease;
}


.menu > a:not(.social-link):hover {
    color: var(--red);
}



/* =========================================================
   REDES SOCIAIS
========================================================= */

.social-link {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    transition:
        transform .2s ease,
        background .2s ease;
}


.social-link img {
    display: block;

    width: 25px;
    height: 25px;

    object-fit: contain;

    opacity: 1;
}


.social-link:hover {
    transform: scale(1.12);

    background:
        rgba(237, 16, 27, .12);
}


.facebook-futuro {
    opacity: 1;
}



/* =========================================================
   BOTÃO WHATSAPP HEADER
========================================================= */

.btn-header {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    flex-shrink: 0;

    padding: 13px 19px;

    color: white;

    border:
        1px solid var(--red);

    border-radius: 8px;

    font-size: 13px;

    font-weight: 800;

    white-space: nowrap;

    transition:
        background .2s ease,
        transform .2s ease;
}


.btn-header img {
    width: 21px;
    height: 21px;

    object-fit: contain;
}


.btn-header:hover {
    background: var(--red);

    transform:
        translateY(-2px);
}



/* =========================================================
   MENU MOBILE
========================================================= */

.menu-mobile {
    display: none;

    border: 0;

    background: transparent;

    color: white;

    font-size: 30px;

    cursor: pointer;
}



/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 575px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 76% 50%,
            rgba(237, 16, 27, .05),
            transparent 38%
        ),
        linear-gradient(
            110deg,
            #030405 0%,
            #060708 48%,
            #101113 100%
        );
}


.hero-content {
    position: relative;

    min-height: 575px;

    display: flex;

    align-items: center;
}



/* =========================================================
   HERO - TEXTO
========================================================= */

.hero-text {
    position: relative;

    z-index: 20;

    width: 48%;

    padding:
        58px 0;
}


.hero-small {
    display: block;

    margin-bottom: 13px;

    color: #aaaaaa;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;
}


.hero h1 {
    margin-bottom: 20px;

    font-size:
        clamp(44px, 4.7vw, 72px);

    line-height: .97;

    font-weight: 900;

    font-style: italic;

    letter-spacing: -2px;
}


.hero h1 strong {
    display: block;

    color: var(--red);
}


.hero-text > p {
    color: #dddddd;

    font-size: 17px;

    line-height: 1.6;
}



/* =========================================================
   BOTÃO PRINCIPAL
========================================================= */

.btn-main {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    margin-top: 27px;

    padding: 17px 26px;

    background:
        linear-gradient(
            135deg,
            #ff1723,
            #cf000a
        );

    color: white;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 900;

    box-shadow:
        0 12px 30px
        rgba(237, 16, 27, .22);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.btn-main img {
    width: 22px;
    height: 22px;

    object-fit: contain;
}


.btn-main:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 18px 38px
        rgba(237, 16, 27, .35);
}



/* =========================================================
   BENEFÍCIOS HERO
========================================================= */

.beneficios {
    display: flex;

    align-items: center;

    gap: 35px;

    margin-top: 38px;
}


.beneficio {
    display: flex;

    align-items: center;

    gap: 10px;
}


.beneficio img {
    display: block;

    width: 26px;
    height: 26px;

    object-fit: contain;
}


.beneficio-icone,
.check {
    color: var(--red);

    font-size: 28px;

    font-weight: 900;

    line-height: 1;
}


.beneficio p {
    color: #eeeeee;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.45;
}



/* =========================================================
   CARROSSEL DO DESTAQUE

   ESTES SÃO OS VALORES QUE VOCÊ AJUSTOU
   E DISSE QUE FICARAM PERFEITOS.
========================================================= */

.hero-slider-area {
    position: absolute;

    width: 136%;

    aspect-ratio:
        1872 / 1024;

    height: auto;

    right: -18%;

    top: 65%;

    transform:
        translateY(-50%);

    z-index: 5;
}


.destaque-slider {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border: 0;

    outline: 0;

    border-radius: 0;

    background: transparent;
}



/* TODAS AS IMAGENS */

.destaque-slide {
    position: absolute;

    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    object-fit: contain;

    object-position: center;

    border: 0;

    outline: 0;

    box-shadow: none;

    opacity: 0;

    visibility: hidden;

    transform:
        translateX(20px);

    transition:
        opacity .8s ease,
        transform .8s ease;

    pointer-events: none;
}



/* IMAGEM ATIVA */

.destaque-slide.active {
    opacity: 1;

    visibility: visible;

    transform:
        translateX(0);

    z-index: 2;
}



/* =========================================================
   BOLINHAS DO CARROSSEL
========================================================= */

.destaque-dots {
    position: absolute;

    left: 50%;

    bottom: 15px;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 8px;

    z-index: 20;
}


.destaque-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, .40);

    cursor: pointer;

    transition:
        width .25s ease,
        background .25s ease;
}


.destaque-dot.active {
    width: 28px;

    background: var(--red);
}



/* =========================================================
   SEÇÃO NOSSAS MOTOS
========================================================= */

.motos {
    padding:
        50px 0 70px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #eeeeee
        );

    color: #101010;
}



/* =========================================================
   TÍTULO PRINCIPAL
========================================================= */

.section-header {
    margin-bottom: 28px;
}


.section-header h2 {
    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 31px;

    font-weight: 900;

    font-style: italic;
}


.section-header h2 span {
    display: block;

    width: 9px;
    height: 29px;

    background: var(--red);

    transform:
        skew(-15deg);
}


.section-header p {
    margin-top: 7px;

    color: #666666;

    font-size: 14px;
}



/* =========================================================
   SEPARAÇÃO POR MARCA
========================================================= */

.marca-section {
    width: 100%;

    margin-top: 32px;
}


.marca-section-yamaha {
    margin-top: 46px;
}



/* =========================================================
   NOME HONDA / YAMAHA
========================================================= */

.marca-titulo {
    display: flex;

    align-items: center;

    gap: 10px;

    margin:
        0 0 17px 0;

    color: #111111;

    font-size: 21px;

    font-weight: 900;

    font-style: italic;

    letter-spacing: .6px;
}


.marca-titulo span {
    display: block;

    width: 7px;
    height: 26px;

    flex-shrink: 0;

    background: var(--red);

    transform:
        skew(-15deg);
}



/* =========================================================
   GRID DAS MOTOS

   Sempre 3 espaços no desktop.
   A Yamaha tem duas motos e deixa
   o terceiro espaço vazio.
========================================================= */

.marca-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 22px;

    width: 100%;
}



/* =========================================================
   CARD DA MOTO
========================================================= */

.moto-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    padding: 17px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7f7f7
        );

    border:
        1px solid
        rgba(0, 0, 0, .05);

    border-radius: 13px;

    box-shadow:
        0 10px 28px
        rgba(0, 0, 0, .06);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.moto-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        0 20px 40px
        rgba(0, 0, 0, .12);
}



/* =========================================================
   FOTO DA MOTO
========================================================= */

.moto-imagem {
    width: 100%;

    height: 225px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;
}


.moto-imagem img {
    display: block;

    width: 100%;
    height: 100%;

    padding: 6px;

    object-fit: contain;

    object-position: center;

    transition:
        transform .3s ease;
}


.moto-card:hover
.moto-imagem img {
    transform:
        scale(1.04);
}



/* =========================================================
   INFORMAÇÕES DA MOTO
========================================================= */

.moto-info {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

    padding-top: 9px;
}


.moto-info h3 {
    margin-bottom: 5px;

    color: #111111;

    font-size: 18px;

    font-weight: 800;
}


.moto-info p {
    color: #777777;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .4px;
}



/* SETA */

.moto-info > a {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: var(--red);

    font-size: 27px;

    transition:
        transform .2s ease,
        background .2s ease;
}


.moto-info > a:hover {
    background:
        rgba(237, 16, 27, .08);

    transform:
        translateX(4px);
}



/* =========================================================
   PASSOS
========================================================= */

.passos-section {
    padding:
        40px 0;

    background:
        linear-gradient(
            90deg,
            #050607,
            #151618
        );
}


.passos {
    display: grid;

    grid-template-columns:
        1fr 1fr 1fr 1.45fr;

    align-items: center;

    gap: 27px;
}


.passo {
    display: flex;

    align-items: center;

    gap: 14px;
}


.passo-numero {
    color: var(--red);

    font-size: 33px;

    font-weight: 900;

    font-style: italic;
}


.passo h3 {
    margin-bottom: 5px;

    font-size: 13px;
}


.passo p {
    color: #888888;

    font-size: 11px;
}



/* =========================================================
   BOX WHATSAPP
========================================================= */

.whatsapp-box {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 19px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--red),
            var(--red-dark)
        );

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.whatsapp-box:hover {
    transform:
        scale(1.02);

    box-shadow:
        0 15px 30px
        rgba(237, 16, 27, .20);
}


.whatsapp-box > img {
    width: 37px;
    height: 37px;

    object-fit: contain;

    flex-shrink: 0;
}


.whatsapp-box span {
    display: block;

    margin-bottom: 3px;

    font-size: 10px;
}


.whatsapp-box strong {
    display: block;

    font-size: 20px;
}


.whatsapp-box .arrow {
    margin-left: auto;

    font-size: 25px;
}



/* =========================================================
   CTA FINAL
========================================================= */

.cta-final {
    padding:
        85px 0;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #fafafa,
            #e8e8e8
        );

    color: #111111;
}


.cta-content {
    max-width: 850px;
}


.tag {
    color: var(--red);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;
}


.cta-final h2 {
    margin:
        10px 0 15px;

    font-size: 47px;

    font-weight: 900;

    font-style: italic;
}


.cta-final h2 strong {
    color: var(--red);
}


.cta-final p {
    color: #666666;

    line-height: 1.7;
}



/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #050505;

    border-top:
        1px solid #202020;
}


.footer-content {
    min-height: 130px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.footer-logo {
    width: 245px;
    height: 80px;

    object-fit: contain;

    object-position: left center;
}


.footer-text p {
    margin-top: 5px;

    color: #777777;

    font-size: 13px;
}



/* =========================================================
   REDES FOOTER
========================================================= */

.footer-redes {
    display: flex;

    align-items: center;

    gap: 17px;
}


.footer-redes a {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    transition:
        transform .2s ease,
        background .2s ease;
}


.footer-redes a:hover {
    transform:
        scale(1.12);

    background:
        rgba(237, 16, 27, .12);
}


.footer-redes img {
    display: block;

    width: 25px;
    height: 25px;

    object-fit: contain;

    opacity: 1;
}



/* =========================================================
   COPYRIGHT
========================================================= */

.copyright {
    padding: 18px;

    text-align: center;

    border-top:
        1px solid #181818;

    color: #555555;

    font-size: 11px;
}



/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.whatsapp-floating {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 999;

    width: 61px;
    height: 61px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--red);

    box-shadow:
        0 10px 30px
        rgba(237, 16, 27, .40);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.whatsapp-floating:hover {
    transform:
        scale(1.10);

    box-shadow:
        0 15px 35px
        rgba(237, 16, 27, .50);
}


.whatsapp-floating img {
    display: block;

    width: 34px;
    height: 34px;

    object-fit: contain;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .menu {
        display: none;
    }


    .menu.active {
        position: absolute;

        top: 88px;

        left: 0;
        right: 0;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 22px;

        padding: 28px;

        background: #08090a;

        border-top:
            1px solid #222222;

        box-shadow:
            0 20px 30px
            rgba(0, 0, 0, .30);
    }


    .menu-mobile {
        display: block;
    }


    .btn-header {
        margin-left: auto;
    }


    .hero {
        min-height: 620px;
    }


    .hero-content {
        min-height: 620px;
    }


    .hero-text {
        width: 56%;
    }


    /*
       No tablet não usa os 136% do desktop.
    */

    .hero-slider-area {
        width: 76%;

        right: -15%;

        top: 58%;
    }


    .beneficios {
        gap: 22px;
    }


    .marca-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .passos {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}



/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 700px) {

    .header {
        height: 76px;
    }


    .nav {
        gap: 12px;
    }


    .logo img {
        width: 200px;

        height: 62px;
    }


    .menu.active {
        top: 76px;
    }


    .btn-header {
        display: none;
    }


    .hero {
        min-height: 760px;
    }


    .hero-content {
        min-height: 760px;

        align-items: flex-start;
    }


    .hero-text {
        width: 100%;

        padding-top: 45px;

        padding-bottom: 320px;
    }


    .hero-small {
        font-size: 11px;
    }


    .hero h1 {
        font-size: 42px;

        letter-spacing: -1px;
    }


    .hero-text > p {
        font-size: 14px;
    }


    .btn-main {
        padding:
            15px 20px;

        font-size: 12px;
    }


    .beneficios {
        flex-direction: column;

        align-items: flex-start;

        gap: 14px;

        margin-top: 28px;
    }


    /*
       Destaque embaixo do texto no celular.
    */

    .hero-slider-area {
        top: auto;

        left: 50%;

        right: auto;

        bottom: 40px;

        width: 108%;

        transform:
            translateX(-50%);
    }


    .destaque-dots {
        bottom: 8px;
    }


    .section-header h2 {
        font-size: 27px;
    }


    .marca-section {
        margin-top: 28px;
    }


    .marca-section-yamaha {
        margin-top: 38px;
    }


    .marca-titulo {
        font-size: 20px;
    }


    .marca-grid {
        grid-template-columns:
            1fr;
    }


    .moto-imagem {
        height: 245px;
    }


    .passos {
        grid-template-columns:
            1fr;
    }


    .whatsapp-box strong {
        font-size: 18px;
    }


    .cta-final {
        padding:
            65px 0;
    }


    .cta-final h2 {
        font-size: 36px;
    }


    .footer-content {
        padding:
            35px 0;

        flex-direction: column;

        text-align: center;
    }


    .footer-logo {
        object-position: center;
    }


    .whatsapp-floating {
        width: 55px;
        height: 55px;

        right: 17px;
        bottom: 17px;
    }

}

/* =========================================================
   STATUS DAS MOTOS
========================================================= */

.moto-card {
    position: relative;
}

.moto-card::before {
    content: "";
    display: none;
}

.moto-card.esgotado::before {
    content: "ESGOTADO" !important;
    display: block !important;
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 100;
    padding: 9px 14px;
    background: #ed101b !important;
    color: #ffffff !important;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .25);
    pointer-events: none;
}

.moto-card.esgotado .moto-imagem img {
    opacity: .35 !important;
    filter: grayscale(100%) !important;
}

.moto-card.esgotado .moto-info {
    opacity: .60;
}

/* =========================================================
   MOTO ESGOTADA - WHATSAPP DESATIVADO
========================================================= */
.moto-card.esgotado .moto-info > a {
    pointer-events: none !important;
    cursor: not-allowed;
    color: #9a9a9a !important;
    background: rgba(0, 0, 0, .05) !important;
    transform: none !important;
    opacity: .55;
}


/* =========================================================
   FOTO DA MOTO CLICÁVEL
========================================================= */
.moto-card:not(.esgotado) .moto-imagem {
    cursor: pointer;
}

.moto-card:not(.esgotado) .moto-imagem:hover img {
    transform: scale(1.04);
}

.moto-card.esgotado .moto-imagem {
    cursor: not-allowed;
}


/* =========================================================
   MOBILE HERO V6 — AJUSTE VISUAL
   Somente celular: remove os dots, reduz o vazio e faz
   o destaque preencher melhor a largura.
========================================================= */
@media (max-width: 700px) {

    .hero {
        min-height: 0;
        overflow: hidden;
    }

    .hero-content {
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-text {
        width: 100%;
        padding-top: 32px;
        padding-bottom: 22px;
    }

    .hero-slider-area {
        position: relative;
        top: auto;
        left: 50%;
        right: auto;
        bottom: auto;

        width: 108vw;
        aspect-ratio: 1872 / 1024;
        height: auto;

        margin-top: 0;
        margin-bottom: 0;

        transform: translateX(-50%);
        z-index: 5;
        overflow: hidden;
    }

    .destaque-slider {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .destaque-slide {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .destaque-dots {
        display: none !important;
    }
}


/* =========================================================
   MOBILE HEADER V7 — MENU VISÍVEL
   Mostra Nossas Motos + Como Alugar diretamente no cabeçalho.
   Desktop/tablet permanecem como antes.
========================================================= */
@media (max-width: 700px) {

    .header {
        height: 76px;
    }

    .nav {
        width: 96%;
        gap: 8px;
        justify-content: space-between;
    }

    .logo {
        flex: 0 0 auto;
    }

    .logo img {
        width: 132px;
        height: 58px;
    }

    /* No celular, o menu deixa de ser gaveta e vira parte do header. */
    .menu,
    .menu.active {
        position: static;
        display: flex;
        flex: 1 1 auto;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 7px;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    /* Esconde Início: a logo já leva ao início. */
    .menu > a[href="#inicio"] {
        display: none;
    }

    /* Mantém só os dois atalhos principais. */
    .menu > a[href="#motos"],
    .menu > a[href="como-alugar.html"] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 0 7px;
        border-radius: 7px;
        font-size: 10px;
        line-height: 1.1;
        font-weight: 800;
        letter-spacing: -.15px;
        white-space: nowrap;
    }

    .menu > a[href="como-alugar.html"] {
        border: 1px solid rgba(237, 16, 27, .72);
        background: rgba(237, 16, 27, .08);
    }

    /* Redes ficam no rodapé no celular para não apertar o cabeçalho. */
    .menu .social-link {
        display: none;
    }

    .menu-mobile {
        display: none !important;
    }

    .btn-header {
        display: none;
    }
}

/* Telefones bem estreitos */
@media (max-width: 390px) {
    .logo img {
        width: 116px;
    }

    .menu {
        gap: 4px;
    }

    .menu > a[href="#motos"],
    .menu > a[href="como-alugar.html"] {
        padding: 0 5px;
        font-size: 9px;
    }
}


/* MOBILE HEADER V8 — dois botões em vermelho */
@media (max-width: 700px) {
    .menu > a[href="#motos"],
    .menu > a[href="como-alugar.html"] {
        border: 1px solid rgba(237, 16, 27, .72);
        background: rgba(237, 16, 27, .08);
    }
}


/* =========================================================
   PREÇOS E PROMOÇÕES DAS MOTOS
========================================================= */
.moto-preco{margin-top:8px;padding-top:12px;border-top:1px solid rgba(0,0,0,.07)}
.precos-linha{display:flex;align-items:baseline;gap:7px;flex-wrap:wrap}.precos-linha strong{color:#111;font-size:21px;font-weight:900;letter-spacing:-.5px}.precos-linha small{color:#777;font-size:10px;font-weight:700;text-transform:uppercase}.preco-antigo{color:#999;font-size:12px;font-weight:700;text-decoration:line-through}.promo-selo{display:inline-block;margin-bottom:7px;padding:5px 8px;border-radius:5px;background:#ed101b;color:#fff;font-size:9px;font-weight:900;letter-spacing:1px}.moto-card.esgotado .moto-preco{opacity:.55}


/* =========================================================
   MOBILE V9 — HERO DIRETO PARA NOSSAS MOTOS
   Somente celular:
   - remove o carrossel destaque1/2/3/4
   - remove os benefícios do hero
   - após "QUERO ALUGAR AGORA!" já começa NOSSAS MOTOS
   Desktop permanece inalterado.
========================================================= */
@media (max-width: 700px) {

    .hero {
        min-height: 0 !important;
        height: auto !important;
    }

    .hero-content {
        min-height: 0 !important;
        height: auto !important;
        display: block !important;
    }

    .hero-text {
        width: 100% !important;
        padding-top: 32px !important;
        padding-bottom: 34px !important;
    }

    .hero-slider-area {
        display: none !important;
    }

    .beneficios {
        display: none !important;
    }

    .motos {
        padding-top: 38px;
    }
}


/* =========================================================
   MOBILE V11 — SEM CARROSSEL, BENEFÍCIOS MANTIDOS
========================================================= */
@media screen and (max-width: 800px) {
    .hero-slider-area {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .hero .beneficios {
        display: flex !important;
    }

    .hero,
    .hero-content {
        min-height: 0 !important;
        height: auto !important;
    }

    .hero-content {
        display: block !important;
    }

    .hero-text {
        width: 100% !important;
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .motos {
        padding-top: 38px !important;
    }
}

/* ===== COTAÇÃO INTELIGENTE BETA 10 ===== */
.cotacao-box{margin-top:13px;padding-top:12px;border-top:1px solid rgba(0,0,0,.07)}
.cotacao-abrir{width:100%;min-height:42px;border:1px solid #ed101b;border-radius:8px;background:#fff;color:#ed101b;font-size:10px;font-weight:900;letter-spacing:.7px;cursor:pointer}
.cotacao-painel{display:none;margin-top:10px;padding:14px;border-radius:12px;background:#f7f7f7;border:1px solid #e8e8e8}.cotacao-painel.aberto{display:block}
.cotacao-top{display:flex;justify-content:space-between;gap:8px;align-items:flex-start;margin-bottom:13px}.cotacao-top strong{font-size:13px;color:#111}.cotacao-top span{font-size:9px;color:#777}
.cotacao-painel label{display:block;font-size:10px;font-weight:800;color:#555;margin-bottom:8px}
.cotacao-controle{display:flex;align-items:center;justify-content:center;gap:18px}.cotacao-controle button{width:34px;height:34px;border:0;border-radius:50%;background:#111;color:#fff;font-size:19px;cursor:pointer}.cotacao-controle b{font-size:24px;color:#111}.cotacao-controle small{color:#666}
.cotacao-range{width:100%;accent-color:#ed101b;margin:10px 0 13px}
.cotacao-resultado{padding:12px;border-radius:9px;background:#fff;text-align:center}.cotacao-resultado span,.cotacao-resultado small{display:block;color:#777;font-size:10px}.cotacao-resultado strong{display:block;margin:3px 0;color:#111;font-size:20px}
.cotacao-economia{margin:9px 0;color:#17864c;font-size:10px;font-weight:800;text-align:center}
.cotacao-whatsapp{display:flex;align-items:center;justify-content:center;min-height:42px;border-radius:8px;background:#25d366;color:#fff!important;font-size:10px;font-weight:900;text-decoration:none}
.moto-card.esgotado .cotacao-box{display:none}
@media(max-width:700px){.cotacao-painel{padding:12px}.cotacao-top{flex-direction:column}.cotacao-resultado strong{font-size:19px}}
