:root {
    --dark-900: #1A1A1A; /* era #2f4ee9 (azul) */
    --dark-800: #222222; /* era #3a28bf (azul) */
    --dark-700: #2a2a2a;
    --ink: #0E1116;
    --green: #12A350;
    --green-dk: #0E8B44;
    --radius: 16px;
    --shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    background: #fff;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
}

.container {
    width: min(1120px, 92%);
    margin-inline: auto
}

.site-header {
    background: var(--dark-800);
    padding: 12px 0
}

.header-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px
}

.header-logo {
    height: 50px;
    object-fit: contain
}

.banner {
    background: var(--dark-900)
}

.banner picture {
    display: block
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.grid-motos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: 28px 0 36px;
}

@media (max-width:980px) {
    .grid-motos {
        grid-template-columns: 1fr;
    }
}

.moto-card {
    background: #fff;
    border: 3px solid var(--dark-700);
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 1.15fr .9fr;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.moto-card::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 2px solid var(--dark-800);
    border-radius: 12px;
    pointer-events: none;
}

.moto-left {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
    padding: 10px;
    min-height: clamp(220px, 28vw, 320px);
}

.moto-photo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.moto-right {
    display: flex;
    flex-direction: column;
    background: #fff
}

.moto-title {
    margin: 0;
    padding: 18px 18px 16px;
    background: var(--dark-800);
    color: #fff;
    font-size: 26px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.moto-box {
    background: #fff;
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.moto-list {
    list-style: none;
    margin: 0;
    padding: 12px 14px;
    background: #f5f7fb;
    border-radius: 10px;
    line-height: 1.5;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.moto-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
}

.moto-list li::before {
    content: "✓";
    color: #fff;
    background: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}

.moto-promo {
    text-align: center;
    font-weight: 900;
    font-size: 18px;
    line-height: 1.05;
    letter-spacing: .4px;
    padding: 14px;
    border-radius: 10px;
    color: #fff;
    background: var(--dark-800);
    border: 2px solid var(--dark-900);
}

.btn-wrapper {
    display: flex;
    justify-content: center
}

.moto-cta {
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 20px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(18, 163, 80, .28);
    transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
    border: none;
    cursor: pointer;
}

.moto-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(18, 163, 80, .38);
    filter: brightness(1.03);
}

.features {
    background: var(--dark-800);
    color: #fff;
    text-align: center;
    padding: 48px 0 30px
}

.features h2 {
    margin: 0 0 22px;
    font-weight: 900;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 20px
}

.features-grid.ref {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px
}

@media(max-width:900px) {
    .features-grid.ref {
        grid-template-columns: 1fr
    }
}

.feature-card.split {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: stretch;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 12px;
    overflow: hidden;
    background: transparent
}

.feature-side {
    display: grid;
    place-items: center
}

.feature-side--icon {
    background: #222
}

.feature-side--text {
    background: #fff;
    color: #111;
    display: grid;
    place-items: center;
    padding: 14px 16px;
    font-weight: 600
}

.icon {
    color: #fff
}

.btn-cta {
    display: inline-block;
    margin: 8px auto 18px;
    background: #fff;
    color: #111;
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .4px;
    text-decoration: none;
    font-size: 14px
}

.btn-cta:hover {
    background: #efefef
}

.brand-row {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    opacity: .95;
    margin-top: 12px;
    flex-wrap: wrap;
}

.brand-row img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.site-footer {
    background: var(--dark-900);
    color: #fff;
    text-align: center;
    padding: 18px 0 24px
}

.site-footer .footer-line {
    width: min(1120px, 92%);
    margin: 14px auto 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, .25)
}

.site-footer small {
    opacity: .85
}

.whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    border: 3px solid #fff
}

.whatsapp svg {
    width: 32px;
    height: 32px
}

@media (max-width:980px) {
    .grid-motos {
        grid-template-columns: 1fr
    }

    .moto-card {
        grid-template-columns: 1fr
    }

    .moto-title {
        border-radius: 0
    }

    .moto-left {
        min-height: clamp(220px, 44vw, 300px)
    }

    .brand-row img {
        height: 56px
    }
}

@media (max-width:560px) {
    .brand-row img {
        height: 48px
    }
}
