/* ================= MOTORCYCLE PAGE ================= */

body {
    background: #ffffff;
    color: #111;
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* ================= HEADER ================= */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.moto-header {
    background: #000;
    height: 120px;              /* ALTURA FIXA */
    display: flex;
    align-items: center;
}

.moto-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.moto-header img {
    max-height: 165px;           /* controla tamanho máximo */
    height: auto;
    width: auto;
    transition: transform .3s ease;
}

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

.moto-actions-lang select {
    /*background: rgba(255,255,255,0.12);*/
    border: none;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
}

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

.moto-hero {
    padding: 0px 0 40px; 
    background: linear-gradient(180deg, #000 0%, #0e0e0e 100%);
    text-align: center;
    color: #fff;
}

.moto-hero h1 {
    font-size: 58px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 22px;
}

.moto-hero p {
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.75;
}

/* ================= ZIGZAG SECTION ================= */

.moto-zigzag {
    padding: 70px 0 110px;
    background: #f3f3f3;
}

.moto-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 160px;
}

.moto-row:last-child {
    margin-bottom: 0;
}

/* Alternar lados sem usar direction (mais elegante) */
.moto-row.reverse {
    grid-template-columns: 1fr 1fr;
}

.moto-row.reverse .moto-img {
    order: 2;
}

.moto-row.reverse .moto-text {
    order: 1;
}

/* ================= IMAGEM ================= */

.moto-img {
    position: relative;
}

.moto-img img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
    transition: transform .5s ease, box-shadow .5s ease;
}

.moto-img img:hover {
    transform: scale(1.03);
    box-shadow: 0 50px 100px rgba(0,0,0,0.18);
}

/* ================= TEXTO ================= */

.moto-text h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 26px;
}

.moto-emotional {
    font-size: 17px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 32px;
}

.moto-emotional p {
    margin-bottom: 18px;
}

.moto-price {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

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

.moto-btn {
    display: inline-block;
    padding: 15px 34px;
    background: #000;
    color: #fff;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all .3s ease;
}

.moto-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.moto-cta {
    background: #000;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.moto-cta h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.moto-cta p {
    font-size: 18px;
    opacity: .75;
    max-width: 620px;
    margin: 0 auto 40px;
}

.moto-cta-btn {
    display: inline-block;
    padding: 16px 38px;
    background: #fff;
    color: #000;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.moto-cta-btn:hover {
    transform: translateY(-3px);
}

.main-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;   /* proporção fixa elegante */
    overflow: hidden;
    border-radius: 12px;
}

.main-moto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* mantém proporção sem deformar */
    transition: opacity 0.3s ease;
}

/* THUMBNAILS PADRONIZADAS */
.moto-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.thumb {
    width: 70px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.2s ease;
}

.thumb:hover,
.thumb.active {
    opacity: 1;
    transform: scale(1.05);
}

.lang-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-wrapper img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.lang {
    background: transparent;
    color: #fff;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

.moto-back{
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
  }
  
.moto-back:hover{
    background: rgba(0,0,0,0.5);
}
  
/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {

    .moto-row {
        gap: 60px;
    }

}

@media (max-width: 900px) {

    .moto-row {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-bottom: 90px;
    }

    /* RESET TOTAL DE ORDER */
    .moto-img,
    .moto-text {
        order: unset !important;
        width: 100%;
    }

    .moto-hero h1 {
        font-size: 40px;
    }

    .moto-text h2 {
        font-size: 32px;
    }

    .moto-emotional {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .moto-header img {
        max-height: 105px;           /* controla tamanho máximo */
    }
    .moto-row {
        grid-template-columns: 1fr;   /* vira 1 coluna */
        gap: 40px;
        margin-bottom: 80px;
    }

    .moto-row.reverse .moto-img,
    .moto-row.reverse .moto-text {
        order: unset; /* remove inversão no mobile */
    }

    .moto-img,
    .moto-text {
        width: 100%;
    }

    .moto-thumbs {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .thumb {
        width: 60px;
        height: 65px;
    }

    .moto-text {
        text-align: center;
    }

    .moto-btn {
        display: block;
        width: 100%;
    }
}