@font-face {
    src: url(https://suzuki.com.co/themes/eikon/css/font/SuzukiPRORegular.otf);
    font-family: "suzuki-regular";
}
@font-face {
    src: url(https://suzuki.com.co/themes/eikon/css/font/SuzukiPROBold.otf);
    font-family: "suzuki-bold";
}
@font-face {
    src: url(https://suzuki.com.co/themes/eikon/css/font/SuzukiPROHeadline.otf);
    font-family: "suzuki-head";
}

:root {
    --primary-color: #000;
    --secondary-color: #e50011;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: "suzuki-regular", 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

body h1, body h2, body h3, body h4, body h5, body h6, body strong {
    font-family: "suzuki-bold", 'Poppins', sans-serif;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: #191919; }
a:hover { opacity: 0.8; }

/* ===== HEADER ===== */
header#navbar-test {
    position: relative;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-bottom: solid 1px #ccc;
}

header#navbar-test #head {
    position: relative;
    z-index: 2;
    background-color: #fff;
    display: flex;
    align-items: center;
}

header#navbar-test .logo {
    display: block;
    width: 200px;
    margin: 0;
}

header#navbar-test .logo a { display: block; }
header#navbar-test .logo img { width: 100%; height: auto; }

/* Mobile distribuidor logo (hidden on desktop) */
header#navbar-test .mobile-distribuidor-logo {
    display: none;
}

/* Mobile menu button */
header#navbar-test .sp-navi-btn { display: none; }

header#navbar-test .sp-navi-btn .gnavi-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

header#navbar-test .sp-navi-btn .gnavi-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Navigation */
header#navbar-test nav {
    width: calc(100% - 200px);
}

header#navbar-test #menu-box {
    height: 100%;
}

/* Global menu (top bar) */
header#navbar-test #menu-box .global-menu {
    position: relative;
    width: 100%;
    height: 45px;
    border-bottom: solid 1px #cccccc;
}

header#navbar-test #menu-box .global-menu ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

header#navbar-test #menu-box .global-menu li { display: inline-block; }

header#navbar-test #menu-box .global-menu li a {
    display: inline-block;
    padding: 0 18px;
    line-height: 45px;
    color: #999;
    font-size: 12px;
}

header#navbar-test #menu-box .global-menu li a:hover { color: #191919; }

/* Main nav menu */
header#navbar-test #menu-box .nav-menu {
    border-top: 4px solid #fff;
    margin-top: 0;
    font-size: 0;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

header#navbar-test #menu-box .nav-menu > li {
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    font-size: 15px;
    display: inline-block;
    position: relative;
}

header#navbar-test #menu-box .nav-menu > li a {
    display: inline-block;
    padding: 0 12px;
    line-height: 50px;
    color: #333333;
}

header#navbar-test #menu-box .nav-menu > li:last-child {
    margin-left: 0;
}

header#navbar-test #menu-box .nav-menu > li.store-logo {
    margin-left: auto;
    display: flex;
    align-items: center;
}

header#navbar-test #menu-box .nav-menu > li.store-logo .distribuidor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 6px 16px;
    height: 100%;
}

header#navbar-test #menu-box .nav-menu > li.store-logo .distribuidor-logo img {
    display: block;
    width: 200px;
    height: 50px;
    object-fit: contain;
}

header#navbar-test #menu-box .nav-menu > li:first-child > a {
    padding-left: 25px;
}

/* Dropdown arrow */
header#navbar-test #menu-box .nav-menu > li.smgs span {
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

header#navbar-test #menu-box .nav-menu > li.smgs span:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    margin-top: -2px;
    border-style: solid;
    border-width: 5px 3.5px 0 3.5px;
    border-color: #191919 transparent transparent transparent;
}

/* Dropdown panel */
header#navbar-test #menu-box .nav-menu .mddwrap {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    display: none;
    width: 100%;
    min-width: 250px;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.85);
}

header#navbar-test #menu-box .nav-menu > li.smgs:hover .mddwrap {
    display: block;
}

header#navbar-test #menu-box .nav-menu .mddwrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header#navbar-test #menu-box .nav-menu .mddwrap li {
    display: flex;
    justify-content: center;
    align-items: center;
}

header#navbar-test #menu-box .nav-menu .mddwrap li a {
    display: block;
    line-height: 1;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
    font-family: "suzuki-regular", 'Poppins', sans-serif;
}

header#navbar-test #menu-box .nav-menu .mddwrap li a:hover {
    opacity: 0.7;
}

header#navbar-test #menu-box .nav-menu .mddwrap li a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}

header#navbar-test #menu-box .nav-menu .mddwrap li:first-child:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}

header#navbar-test #menu-box .nav-menu .mddwrap .flex {
    display: flex;
    justify-content: center;
}

/* ===== BANNER HERO ===== */
.main-motos { width: 100%; }

.ban {
    background-color: #000;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ban h1 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
}

.ban p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ===== MOTOS SECTION ===== */
.motos {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Sidebar */
.side {
    width: 200px;
    flex-shrink: 0;
    padding-right: 30px;
}

.tipos { position: sticky; top: 120px; }
.tipos p { margin-bottom: 15px; text-transform: uppercase; }

.tipos a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
}

.tipos a:hover, .tipos a.active {
    color: var(--secondary-color);
}

/* Content Grid */
.content { flex: 1; }

.items {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: stretch;
}

/* ===== PRODUCT CARD ===== */
.moto-info {
    width: 25%;
    padding: 15px;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.moto-info .carousel-inner {
    flex-shrink: 0;
}

.moto-info .title-cont {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.moto-info .contp {
    flex-shrink: 0;
}

.moto-info .mas {
    flex-shrink: 0;
    margin-top: auto;
}

.moto-info:hover { background: #f5f5f5; }

.freno-image {
    position: absolute;
    right: 25px;
    top: 140px;
    max-width: 50px;
    z-index: 4;
}

.freno-image img { width: 100%; }

.carousel-inner {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

.carousel-inner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 10px 0;
}

.carousel-indicators span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #999;
    cursor: pointer;
}

.title-cont {
    padding: 10px 0;
}

.title-cont h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 5px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
}

.title-cont > div:first-child p {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
}

.action {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.action .btn {
    flex: 1;
    padding: 8px 12px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    border-radius: 0;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
}

.action .btn:hover { background-color: #333; }

.action .btn.cotiza {
    background-color: var(--primary-color);
}

/* Price section */
.contp {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
}

.title-info {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px;
    text-align: right;
    width: 100%;
}

.precio-financiera {
    font-size: 24px;
    font-weight: 600;
    color: #565656;
    text-align: right;
    margin-bottom: 10px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    line-height: 1;
}

.finaciera {
    font-weight: 300;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 0;
    font-family: "suzuki-regular", 'Poppins', sans-serif;
}

.precio {
    font-size: 22px;
    font-weight: 600;
    color: #565656;
    text-align: right;
    margin: 0 0 5px;
    line-height: 1;
    font-family: "suzuki-head", 'Poppins', sans-serif;
}

.precio span {
    display: block;
    font-size: 10px;
    color: #666;
    font-weight: 400;
    margin-top: 5px;
    font-family: "suzuki-regular", 'Poppins', sans-serif;
}

.otro-medio {
    display: block;
    font-size: 12px;
    color: #999;
    text-align: right;
    margin-bottom: 10px;
    font-family: "suzuki-regular", 'Poppins', sans-serif;
}

.sub-precio {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: right;
    margin: 10px 0;
    text-transform: uppercase;
}

.legal {
    font-size: 11px;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
    text-align: left;
}

.mas { padding: 10px 0; }

.mas .btn {
    display: block;
    color: #5d5d5f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    padding: 0;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    line-height: 2;
    background: none;
    border: none;
}

.mas .btn:hover { color: var(--secondary-color); }

/* ===== INFORMATIVO ===== */
.informativo {
    display: flex;
    justify-content: center;
    padding: 5rem 2rem;
}

.informativo > a {
    flex: 1;
    max-width: 25%;
    border-right: 1px solid #ccc;
    padding: 3rem;
    text-decoration: none;
    color: #333;
}

.informativo > a:last-child { border-right: none; }

.informativo > a > div:first-child {
    display: flex;
    color: var(--primary-color);
    align-items: center;
    margin-bottom: 2rem;
}

.informativo > a > div:first-child > img {
    width: 10%;
    margin-right: 2rem;
}

.informativo > a > div:first-child > p {
    font-size: 1.2rem;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    margin: 0;
}

.informativo > a > p {
    color: #7c7c7c;
    font-size: 14px;
    margin: 0;
}

/* ===== SEDES FOOTER ===== */
.sedes-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.sedes-footer h3 {
    font-size: 20px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.sedes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.sede-card {
    border: 1px solid #333;
    padding: 20px;
    transition: background-color 0.3s;
}

.sede-card:hover {
    background-color: #2a2a2a;
}

.sede-nombre {
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    font-size: 16px;
    margin-bottom: 8px;
}

.sede-direccion,
.sede-celular {
    font-size: 13px;
    color: #aaa;
    margin: 4px 0;
}

@media (max-width: 992px) {
    .sedes-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ===== FOOTER ===== */
.foo {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-color);
    color: #fff;
}

.foo, .foo a { color: #fff; font-weight: 400; }

.top {
    padding: 40px 20px;
    margin-top: 60px;
    padding-bottom: 5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    width: 100%;
}

.footer-col .titulo { margin-bottom: 2rem; }

.footer-col .titulo p {
    font-size: 20px;
    font-weight: bold;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
}

.phone p {
    margin-bottom: 1rem;
    font-size: 14px;
}

.phone img {
    filter: grayscale(1) brightness(2);
    float: left;
    margin-right: 5px;
    width: 16px;
}

.terminos {
    display: flex;
    flex-direction: column;
    margin-bottom: 75px;
}

.terminos a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 1rem;
}

.terminos a:hover { text-decoration: underline; }

.redes {
    display: flex;
    gap: 10px;
    align-items: center;
}

.redes a { margin-right: 10px; }

.redes img {
    width: 30px;
    filter: grayscale(1) brightness(2);
}

.redes img:hover { opacity: 0.7; }

.nit {
    border-top: 1px solid #fff;
    display: flex;
    padding: 2rem;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    width: 100%;
    text-align: center;
    flex-direction: column;
    gap: 5px;
}

.nit span { font-weight: 600; }
.nit p { line-height: 1.4; margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .moto-info { width: 33.33%; }
}

@media (max-width: 992px) {
    .moto-info { width: 50%; }
    .top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    header#navbar-test {
        background: #fff;
        position: relative;
    }

    header#navbar-test #head {
        width: 100%;
        justify-content: space-between;
        padding: 10px 15px;
    }

    header#navbar-test .mobile-distribuidor-logo {
        display: flex;
        align-items: center;
        margin-right: 60px;
    }

    header#navbar-test .mobile-distribuidor-logo img {
        width: 120px;
        height: 40px;
        object-fit: contain;
    }

    header#navbar-test h1.logo { width: 140px; }

    header#navbar-test .sp-navi-btn { display: block; }

    header#navbar-test nav { display: none; width: 100%; }
    header#navbar-test nav.active { display: block; }

    header#navbar-test #menu-box .nav-menu {
        flex-direction: column;
        align-items: stretch;
        border-top: none;
        margin-top: 0;
    }

    header#navbar-test #menu-box .nav-menu > li {
        display: block;
    }

    header#navbar-test #menu-box .nav-menu > li a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: 12px;
        border-bottom: solid 1px #d2d2d2;
        line-height: 1.4;
    }

    header#navbar-test #menu-box .nav-menu > li:last-child {
        margin-left: 0;
    }

    header#navbar-test #menu-box .nav-menu .mddwrap {
        position: static;
        background: #f5f5f5;
        padding: 10px 0;
    }

    header#navbar-test #menu-box .nav-menu .mddwrap li a {
        color: #333;
        text-align: left;
        padding: 10px 40px;
        font-size: 12px;
    }

    header#navbar-test #menu-box .nav-menu .mddwrap li a:before { display: none; }
    header#navbar-test #menu-box .nav-menu .mddwrap li:first-child:after { display: none; }
    header#navbar-test #menu-box .nav-menu .mddwrap .flex { flex-direction: column; }

    .ban h1 { font-size: 24px; }
    .ban p { font-size: 13px; }

    .motos { flex-direction: column; }

    .side {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .tipos {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .moto-info { width: 50%; }

    .informativo { flex-direction: column; }

    .informativo > a {
        border-right: none;
        border-bottom: 1px solid #ccc;
    }

    .top {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding: 20px;
    }

    .foo .titulo { margin-top: 2rem; }
    .terminos { margin-bottom: 10px; }
    .nit { font-size: 10px; }
}

@media (max-width: 480px) {
    .moto-info { width: 100%; }
}


/* ===== DETALLE MOTOCICLETA (estilo Suzuki) ===== */
.main-moto { width: 100%; }

/* Portada / Banner */
.portada { width: 100%; }
.portada img { width: 100%; height: auto; display: block; }

/* Main info: colores + datos */
.main-info {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    gap: 30px;
}

.moto-color { flex: 1.4; }
.moto-datos { flex: 1; }

/* Carrusel de colores */
.carrusel-moto { position: relative; }

.carrusel-inner {
    width: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.carrusel-item { display: none; width: 100%; text-align: center; }
.carrusel-item.active { display: block; }
.carrusel-item img { max-width: 100%; max-height: 350px; object-fit: contain; margin: 0 auto; }

.carrusel-indicators {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
    margin: 0;
}

.carrusel-indicators li {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #999;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}

.carrusel-indicators li:hover,
.carrusel-indicators li.active {
    transform: scale(1.15);
    border-color: var(--secondary-color);
}

/* Datos de la moto */
.moto-datos .titulo h1 {
    font-size: 32px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #000;
    margin: 0 0 5px;
    line-height: 1.1;
}

.moto-datos .categoria {
    font-size: 13px;
    color: #999;
    text-transform: lowercase;
    margin: 0 0 20px;
}

.moto-datos .precio-section {
    border-top: 1px solid #ccc;
    padding-top: 15px;
    margin-top: 15px;
}

.moto-datos .precio-moto div {
    font-size: 28px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #565656;
    line-height: 1;
}

.moto-datos .otro-medio {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* Descripción */
.descripcion-moto {
    margin: 20px 0;
    padding: 15px 0;
}

.descripcion-moto p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* Legales (iconos ABS, luces) */
.legales {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    flex-wrap: wrap;
}

.item-legal { display: flex; align-items: center; justify-content: center; }
.item-legal img { height: 50px; width: auto; object-fit: contain; }

/* Botones de acción */
.calcula { padding: 20px 0; }

.calcula .action {
    display: flex;
    gap: 10px;
}

.calcula .action .btn {
    flex: 1;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.calcula .action .btn:hover { background-color: #333; }
.calcula .action .btn.cotiza { background-color: var(--secondary-color); }
.calcula .action .btn.cotiza:hover { background-color: #c0000e; }

/* Legal section: modelo y condiciones */
.legal-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 30px;
    border-top: 1px solid #eee;
}

.modelo-label {
    font-size: 16px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    color: #333;
    margin: 0 0 10px;
}

.condiciones-row { display: flex; gap: 20px; }
.condiciones-col { flex: 1; }

.sub-precio-text {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Grilla de imágenes de características */
.galeria-moto-section {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 30px;
}

.galeria-moto-section .img-galeria {
    flex: 1 1 25%;
    min-width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.galeria-moto-section .img-galeria::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.galeria-moto-section .img-galeria:hover::before {
    opacity: 1;
}

.galeria-moto-section .img-galeria::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.galeria-moto-section .img-galeria:hover::after {
    opacity: 1;
}

.galeria-moto-section .img-galeria a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    font-size: 14px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 80%;
}

.galeria-moto-section .img-galeria:hover a {
    opacity: 1;
}

/* Iconos de características */
.products-icon-list-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.products-icon-list-section ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.products-icon-list-section .item-icon img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Ficha técnica */
.ficha-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

.ficha-items {
    display: flex;
    flex-wrap: wrap;
}

.ficha-item {
    width: 25%;
    padding: 10px;
}

.ficha-item-inner {
    text-align: center;
    padding: 15px 10px;
}

.ficha-icon { margin-bottom: 10px; }
.ficha-icon img { height: 65px; width: auto; margin: 0 auto; object-fit: contain; filter: brightness(0); }

.ficha-text h3 {
    font-size: 16px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    color: #333;
    margin: 0 0 5px;
}

.ficha-text p {
    font-size: 18px;
    color: #666;
    margin: 0;
    list-style: none;
}

/* Galería de fotos */
.galeria-fotos-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    border-top: 1px solid #eee;
}

.galeria-fotos-section .title h3,
.galeria-videos-section .title h3 {
    font-size: 20px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #000;
    margin: 0 0 20px;
}

.galeria-fotos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.galeria-foto-slide { overflow: hidden; border-radius: 4px; }
.galeria-foto-slide img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
.galeria-foto-slide:hover img { transform: scale(1.03); }

/* Videos */
.galeria-videos-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
    border-top: 1px solid #eee;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.video-slide { position: relative; overflow: hidden; border-radius: 4px; }

.video-link { display: block; position: relative; }
.video-link .content-item { position: relative; }
.video-link img { width: 100%; height: auto; display: block; }

.play-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: background 0.3s;
}

.video-link:hover .play-button { background: rgba(229, 0, 17, 0.8); }

/* Volver */
.volver-catalogo {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px 50px;
    text-align: center;
}

.volver-catalogo a {
    color: #5d5d5f;
    font-size: 14px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    text-decoration: none;
}

.volver-catalogo a:hover { color: var(--secondary-color); }

/* Responsive detalle */
@media (max-width: 768px) {
    .main-info { flex-direction: column; }
    .moto-datos .titulo h1 { font-size: 26px; }
    .moto-datos .precio-moto div { font-size: 24px; }
    .calcula .action { flex-direction: column; }
    .ficha-item { width: 50%; }
    .galeria-moto-section .img-galeria { flex: 1 1 50%; }
    .galeria-fotos-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
    .item-legal img { height: 35px; }
    .condiciones-row { flex-direction: column; }
}

@media (max-width: 480px) {
    .ficha-item { width: 50%; }
    .galeria-moto-section .img-galeria { flex: 1 1 100%; }
    .galeria-fotos-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
}


/* ===== SEDES EN FOOTER ===== */
.sedes-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sede-item p {
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.sede-item .sede-nombre {
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 2px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 247px;
}

/* ===== TALLERES ===== */

/* Estadísticas */
.talleres-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 20px 15px;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 28px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #000;
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

/* Sección talleres */
.talleres-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px 60px;
}

.talleres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.taller-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.taller-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Imagen de sede */
.taller-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.taller-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.taller-card:hover .taller-img img {
    transform: scale(1.05);
}

.taller-img-placeholder {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.taller-placeholder-inner {
    opacity: 0.5;
}

/* Cuerpo de la card */
.taller-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.taller-card h3 {
    font-size: 18px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 15px;
}

.taller-info {
    border-top: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 20px;
    flex: 1;
}

.taller-direccion,
.taller-celular {
    font-size: 13px;
    color: #555;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.taller-direccion svg,
.taller-celular svg {
    flex-shrink: 0;
    color: #999;
}

/* Botones */
.taller-actions {
    display: flex;
    gap: 8px;
}

.btn-taller {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background-color: #25d366;
    color: #fff;
    font-size: 11px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.btn-taller:hover {
    background-color: #1da851;
    color: #fff;
}

.btn-taller-outline {
    background-color: transparent;
    color: #333;
    border: 1px solid #ccc;
}

.btn-taller-outline:hover {
    background-color: #f5f5f5;
    color: #000;
    border-color: #999;
}

/* Título de sección talleres */
.talleres-section-title {
    font-size: 24px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #000;
    text-align: center;
    margin: 0 0 8px;
    letter-spacing: 1px;
}

.talleres-section-sub {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin: 0 0 35px;
}

/* Tags de servicios en tarjeta */
.taller-servicios-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.taller-tag {
    font-size: 10px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    background: #f0f0f0;
    color: #555;
    border-radius: 3px;
}

/* ===== SERVICIOS DE MANTENIMIENTO ===== */
.servicios-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 60px;
}

.servicios-header {
    text-align: center;
    margin-bottom: 40px;
}

.servicios-header h2 {
    font-size: 24px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #000;
    margin: 0 0 10px;
    letter-spacing: 1px;
}

.servicios-header p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.servicio-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px 25px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.servicio-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.servicio-icon {
    width: 60px;
    height: 60px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.servicio-card h3 {
    font-size: 16px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.servicio-card > p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 15px;
}

.servicio-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.servicio-lista li {
    font-size: 13px;
    color: #555;
    padding: 5px 0;
    padding-left: 18px;
    position: relative;
}

.servicio-lista li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

/* ===== PLAN DE MANTENIMIENTO ===== */
.plan-section {
    background: #f8f8f8;
    padding: 50px 20px 40px;
}

.plan-header {
    text-align: center;
    margin-bottom: 35px;
}

.plan-header h2 {
    font-size: 24px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #000;
    margin: 0 0 10px;
    letter-spacing: 1px;
}

.plan-header p {
    font-size: 14px;
    color: #777;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.plan-tabla-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.plan-tabla {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 13px;
}

.plan-tabla thead th {
    background: #000;
    color: #fff;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    padding: 14px 16px;
    text-align: center;
    letter-spacing: 0.5px;
}

.plan-tabla thead th:first-child {
    text-align: left;
}

.plan-tabla tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    text-align: center;
    color: #555;
}

.plan-tabla tbody td:first-child {
    text-align: left;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    color: #333;
}

.plan-tabla tbody tr:hover {
    background: #fafafa;
}

.check-mark {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 16px;
}

.plan-nota {
    max-width: 900px;
    margin: 15px auto 0;
    font-size: 11px;
    color: #999;
    text-align: center;
}

/* ===== REPUESTOS ORIGINALES ===== */
.repuestos-section {
    padding: 60px 20px;
}

.repuestos-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.repuestos-texto h2 {
    font-size: 24px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #000;
    margin: 0 0 15px;
    letter-spacing: 1px;
}

.repuestos-texto > p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 25px;
}

.repuestos-beneficios {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.beneficio-item svg {
    flex-shrink: 0;
}

.repuestos-categorias {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.repuesto-cat {
    background: #f8f8f8;
    border: 1px solid #eee;
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: box-shadow 0.3s, transform 0.3s;
    color: #555;
}

.repuesto-cat:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    color: var(--secondary-color);
}

.repuesto-cat span {
    font-size: 12px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    text-transform: uppercase;
}

/* ===== CTA AGENDAR ===== */
.cta-agendar {
    background: #000;
    padding: 60px 20px;
    text-align: center;
}

.cta-agendar-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-agendar h2 {
    font-size: 24px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: 1px;
}

.cta-agendar p {
    font-size: 14px;
    color: #aaa;
    margin: 0 0 25px;
    line-height: 1.7;
}

.cta-agendar-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #25d366;
    color: #fff;
    font-size: 13px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.cta-agendar-btn:hover {
    background: #1da851;
    color: #fff;
}

/* ===== TALLERES RESPONSIVE ===== */
@media (max-width: 992px) {
    .talleres-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .repuestos-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

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

    .talleres-stats {
        flex-direction: column;
        gap: 0;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .taller-actions {
        flex-direction: column;
    }

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

    .servicios-header h2,
    .plan-header h2,
    .repuestos-texto h2,
    .cta-agendar h2,
    .talleres-section-title {
        font-size: 20px;
    }

    .repuestos-categorias {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-tabla {
        font-size: 12px;
    }

    .plan-tabla thead th,
    .plan-tabla tbody td {
        padding: 10px 8px;
    }
}

/* Modelo año en catálogo */
.modelo-anio {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 2px;
}

/* ===== MODAL GALERÍA ===== */
.modal-galeria-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-galeria-overlay.active {
    display: flex;
}

.modal-galeria-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-galeria-content img,
.modal-galeria-content iframe {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
}

.modal-galeria-content iframe {
    width: 80vw;
    height: 45vw;
    max-height: 80vh;
    border: none;
}

.modal-galeria-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
    background: none;
    border: none;
    font-family: sans-serif;
    line-height: 1;
    transition: opacity 0.2s;
}

.modal-galeria-close:hover {
    opacity: 0.7;
}

.modal-galeria-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    z-index: 10000;
    background: none;
    border: none;
    padding: 10px;
    font-family: sans-serif;
    line-height: 1;
    transition: opacity 0.2s;
    user-select: none;
}

.modal-galeria-nav:hover {
    opacity: 0.7;
}

.modal-galeria-prev { left: 20px; }
.modal-galeria-next { right: 20px; }

.modal-galeria-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    font-family: "suzuki-regular", 'Poppins', sans-serif;
    z-index: 10000;
}

/* ===== MODAL CALCULAR CRÉDITO ===== */
.modal-credito-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-credito-overlay.active {
    display: flex;
}

.modal-credito-box {
    background: #fff;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 35px 30px;
    position: relative;
}

.modal-credito-box h2 {
    font-size: 22px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #000;
    margin: 0 0 25px;
    text-align: center;
}

.modal-credito-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.modal-credito-close:hover {
    color: var(--secondary-color);
}

.credito-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.credito-field label {
    display: block;
    font-size: 12px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.credito-field input,
.credito-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: "suzuki-regular", 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.credito-field input:focus,
.credito-field select:focus {
    border-color: var(--secondary-color);
}

.credito-field input[readonly] {
    background: #f5f5f5;
    color: #666;
}

.credito-field-cuota {
    grid-column: 1 / -1;
    background: #000;
    padding: 15px;
    margin-top: 5px;
}

.credito-field-cuota label {
    color: #fff;
}

.credito-field-cuota input {
    background: #000;
    color: #fff;
    border-color: #444;
    font-size: 22px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    text-align: center;
}

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

    .modal-credito-box {
        padding: 30px 20px 20px;
    }

    .credito-field-cuota input {
        font-size: 18px;
    }
}

/* ===== MODAL AGENDAR CITA ===== */
.modal-cita-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-cita-overlay.active {
    display: flex;
}

.modal-cita-box {
    background: #fff;
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 35px 30px;
    position: relative;
}

.modal-cita-box h2 {
    font-size: 22px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #000;
    margin: 0 0 25px;
    text-align: center;
}

.modal-cita-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.modal-cita-close:hover {
    color: var(--secondary-color);
}

.cita-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cita-field label {
    display: block;
    font-size: 12px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.cita-field .req {
    color: var(--secondary-color);
}

.cita-field input,
.cita-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    font-family: "suzuki-regular", 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.cita-field input:focus,
.cita-field select:focus {
    border-color: var(--secondary-color);
}

.cita-field-full {
    grid-column: 1 / -1;
}

.cita-checks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cita-check {
    font-size: 13px !important;
    text-transform: none !important;
    color: #555 !important;
    display: flex !important;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.cita-check input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-cita-enviar {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 14px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 5px;
}

.btn-cita-enviar:hover {
    background-color: #c0000e;
}

.btn-cita-enviar:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.cita-msg-ok {
    color: var(--secondary-color);
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    font-size: 18px;
    text-align: center;
    padding: 40px 20px;
    line-height: 1.5;
}

.cita-msg-error {
    color: #c0000e;
    font-family: "suzuki-regular", 'Poppins', sans-serif;
    font-size: 14px;
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
    background: #fff0f0;
    border: 1px solid #fcc;
}

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

    .modal-cita-box {
        padding: 30px 20px 20px;
    }

    .cita-checks {
        flex-direction: column;
        gap: 10px;
    }
}


/* ===== POLÍTICA DE DATOS ===== */
.politica-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.politica-header {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
    margin: 0 -20px 40px;
}

.politica-header h1 {
    font-size: 28px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    margin: 0 0 10px;
    letter-spacing: 1px;
}

.politica-header p {
    font-size: 16px;
    opacity: 0.8;
    margin: 0;
}

.politica-content h2 {
    font-size: 18px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    color: #000;
    margin: 35px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--secondary-color);
}

.politica-content h3 {
    font-size: 15px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    color: #333;
    margin: 25px 0 10px;
}

.politica-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 12px;
    text-align: justify;
}

.politica-content ol,
.politica-content ul {
    padding-left: 25px;
    margin: 0 0 15px;
}

.politica-content li {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
    text-align: justify;
}

.politica-content li span,
.politica-content p span {
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    color: #000;
}

.empresa-info {
    background: #f5f5f5;
    padding: 25px 30px;
    margin-bottom: 30px;
}

.empresa-info p {
    margin: 5px 0;
    font-size: 14px;
}

.contacto-datos {
    background: #f5f5f5;
    padding: 20px 25px;
    margin: 15px 0;
}

.contacto-datos p {
    margin: 5px 0;
}

.paragrafo {
    background: #fff8e1;
    padding: 15px 20px;
    border-left: 3px solid #ffc107;
    margin: 15px 0;
}

@media (max-width: 768px) {
    .politica-header h1 { font-size: 22px; }
    .politica-content h2 { font-size: 16px; }
    .politica-section { padding: 0 15px 40px; }
}


/* ============================================
   MOBILE APP CATALOG EXPERIENCE
   ============================================ */

/* --- Bottom Navigation Bar --- */
.app-bottom-nav {
    display: none;
}

@media (max-width: 768px) {

    /* Safe area for bottom nav */
    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
    }

    /* --- APP HEADER: compact sticky --- */
    header#navbar-test {
        position: sticky;
        top: 0;
        z-index: 200;
        box-shadow: 0 1px 8px rgba(0,0,0,0.08);
    }

    header#navbar-test #head {
        padding: 8px 16px;
    }

    header#navbar-test h1.logo {
        width: 110px;
    }

    header#navbar-test .sp-navi-btn .gnavi-toggle {
        width: 50px;
        height: 50px;
        gap: 5px;
    }

    header#navbar-test .sp-navi-btn .gnavi-toggle span {
        width: 24px;
        height: 2px;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Hamburger animation */
    header#navbar-test .sp-navi-btn .gnavi-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    header#navbar-test .sp-navi-btn .gnavi-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    header#navbar-test .sp-navi-btn .gnavi-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile nav overlay */
    header#navbar-test nav.navi-child {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 300;
        display: none;
    }

    header#navbar-test nav.navi-child.active {
        display: block;
        animation: fadeIn 0.2s ease;
    }

    header#navbar-test nav.navi-child #menu-box {
        background: #fff;
        width: 85%;
        max-width: 320px;
        height: 100%;
        overflow-y: auto;
        animation: slideInLeft 0.3s ease;
        padding-top: 20px;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    }

    header#navbar-test #menu-box .global-menu {
        height: auto;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }

    header#navbar-test #menu-box .global-menu ul {
        flex-direction: column;
    }

    header#navbar-test #menu-box .global-menu li a {
        line-height: 2.5;
        padding: 0 20px;
        font-size: 13px;
    }

    header#navbar-test #menu-box .nav-menu > li a {
        padding: 14px 20px;
        font-size: 14px;
        border-bottom: 1px solid #f0f0f0;
    }

    header#navbar-test #menu-box .nav-menu > li.store-logo {
        padding: 20px;
        justify-content: center;
    }

    header#navbar-test #menu-box .nav-menu > li.store-logo .distribuidor-logo img {
        width: 160px;
        height: 40px;
    }

    /* --- BOTTOM NAV BAR (app style) --- */
    .app-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9000;
        background: #fff;
        border-top: 1px solid #e0e0e0;
        padding: 6px 0 calc(6px + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
        justify-content: space-around;
        align-items: center;
    }

    .app-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #999;
        font-size: 10px;
        font-family: "suzuki-bold", 'Poppins', sans-serif;
        gap: 3px;
        padding: 4px 12px;
        transition: color 0.2s;
        -webkit-tap-highlight-color: transparent;
    }

    .app-nav-item svg {
        width: 22px;
        height: 22px;
    }

    .app-nav-item.active {
        color: var(--secondary-color);
    }

    .app-nav-item:hover {
        opacity: 1;
        color: var(--secondary-color);
    }

    .app-nav-wa {
        color: #25D366;
    }

    .app-nav-wa:hover {
        color: #128C7E;
        opacity: 1;
    }

    /* --- BANNER: compact for app --- */
    .ban {
        padding: 24px 16px;
    }

    .ban h1 {
        font-size: 20px;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
    }

    .ban p {
        font-size: 11px;
        line-height: 1.6;
        opacity: 0.7;
    }

    /* --- CATEGORY FILTERS: horizontal chips --- */
    .motos {
        padding: 0;
        flex-direction: column;
    }

    .side {
        width: 100%;
        padding: 0;
        margin-bottom: 0;
        position: sticky;
        top: 50px;
        z-index: 50;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }

    .tipos {
        position: static;
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 12px 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tipos::-webkit-scrollbar {
        display: none;
    }

    .tipos p {
        margin: 0;
        flex-shrink: 0;
    }

    .tipos a {
        display: inline-block;
        padding: 6px 16px;
        background: #f0f0f0;
        border-radius: 20px;
        font-size: 11px;
        color: #555;
        white-space: nowrap;
        transition: all 0.2s;
    }

    .tipos a:hover,
    .tipos a.active {
        background: var(--secondary-color);
        color: #fff;
    }

    /* --- PRODUCT CARDS: app catalog style --- */
    .content {
        padding: 8px;
    }

    .items {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .moto-info {
        width: 100%;
        padding: 0;
        margin-bottom: 0;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        overflow: hidden;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .moto-info:hover {
        background: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .moto-info:active {
        transform: scale(0.98);
    }

    .moto-info .carousel-inner {
        height: 180px;
        padding: 16px;
        background: #fafafa;
        border-radius: 12px 12px 0 0;
    }

    .moto-info .carousel-indicators {
        padding: 8px 16px;
        gap: 6px;
    }

    .moto-info .carousel-indicators span {
        width: 20px;
        height: 20px;
        border-width: 2px;
        transition: transform 0.2s;
    }

    .moto-info .carousel-indicators span:active {
        transform: scale(1.2);
    }

    .moto-info .title-cont {
        padding: 0 16px 8px;
    }

    .moto-info .title-cont h4 {
        font-size: 16px;
        text-align: left;
        margin-bottom: 2px;
    }

    .moto-info .title-cont > div:first-child p {
        text-align: left;
        margin-bottom: 8px;
    }

    .moto-info .action {
        padding: 0 16px;
        gap: 8px;
        margin-bottom: 0;
    }

    .moto-info .action .btn {
        padding: 10px 16px;
        font-size: 12px;
        border-radius: 8px;
        -webkit-tap-highlight-color: transparent;
    }

    .moto-info .action .btn.cotiza {
        background-color: var(--secondary-color);
    }

    .moto-info .contp {
        margin: 0 16px;
        padding: 12px 0;
    }

    .moto-info .precio {
        font-size: 20px;
    }

    .moto-info .mas {
        padding: 8px 16px 16px;
    }

    .moto-info .mas .btn {
        font-size: 12px;
        color: var(--secondary-color);
    }

    /* --- INFORMATIVO: compact cards --- */
    .informativo {
        padding: 20px 12px;
        gap: 12px;
    }

    .informativo > a {
        max-width: 100%;
        border-right: none;
        border-bottom: none;
        padding: 16px;
        background: #f8f8f8;
        border-radius: 12px;
    }

    .informativo > a > div:first-child {
        margin-bottom: 8px;
    }

    .informativo > a > div:first-child > img {
        width: 24px;
        margin-right: 12px;
    }

    .informativo > a > div:first-child > p {
        font-size: 14px;
    }

    .informativo > a > p {
        font-size: 12px;
    }

    /* --- FOOTER: compact for app --- */
    .foo .top {
        padding: 30px 16px;
        margin-top: 20px;
        gap: 24px;
    }

    .footer-col .titulo p {
        font-size: 16px;
    }

    .sedes-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .nit {
        padding: 16px 12px;
        font-size: 9px;
        margin-bottom: calc(env(safe-area-inset-bottom, 0px));
    }

    /* --- DETALLE MOTO: app experience --- */
    .main-moto .portada img {
        border-radius: 0;
    }

    .main-info {
        padding: 16px;
        gap: 0;
    }

    .moto-datos .titulo h1 {
        font-size: 22px;
    }

    .moto-datos .precio-moto div {
        font-size: 22px;
    }

    .calcula .action {
        flex-direction: row;
        gap: 8px;
    }

    .calcula .action .btn {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 8px;
    }

    .descripcion-moto p {
        font-size: 13px;
    }

    .legal-section {
        padding: 16px;
    }

    .ficha-item {
        width: 50%;
        padding: 8px;
    }

    .ficha-item-inner {
        padding: 12px 8px;
        background: #f8f8f8;
        border-radius: 10px;
    }

    .ficha-icon img {
        height: 45px;
    }

    .ficha-text h3 {
        font-size: 13px;
    }

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

    .galeria-moto-section .img-galeria {
        flex: 1 1 50%;
        height: 150px;
        border-radius: 8px;
        overflow: hidden;
    }

    .galeria-fotos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .galeria-foto-slide {
        border-radius: 8px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .video-slide {
        border-radius: 8px;
    }

    .volver-catalogo {
        padding: 20px 16px 30px;
    }

    .volver-catalogo a {
        display: inline-block;
        padding: 12px 24px;
        background: #f0f0f0;
        border-radius: 8px;
        font-size: 13px;
    }

    /* --- TALLERES: card style --- */
    .talleres-section {
        padding: 20px 12px 40px;
    }

    .talleres-section-title {
        font-size: 20px;
    }

    .talleres-section-sub {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .talleres-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .taller-card {
        border-radius: 12px;
        border: none;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }

    .taller-card h3 {
        font-size: 16px;
    }

    .btn-taller {
        border-radius: 8px;
        padding: 12px 20px;
        font-size: 12px;
        width: 100%;
        text-align: center;
        display: block;
        background-color: #25D366;
    }

    .btn-taller:hover {
        background-color: #128C7E;
    }

    /* --- SERVICIOS: mobile --- */
    .servicios-section {
        padding: 30px 12px 40px;
    }

    .servicios-header h2 {
        font-size: 20px;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .servicio-card {
        border-radius: 12px;
        border: none;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        padding: 24px 20px;
    }

    /* --- PLAN: mobile --- */
    .plan-section {
        padding: 30px 12px;
    }

    .plan-header h2 {
        font-size: 20px;
    }

    .plan-tabla-wrapper {
        border-radius: 12px;
        overflow: hidden;
    }

    /* --- REPUESTOS: mobile --- */
    .repuestos-section {
        padding: 30px 12px;
    }

    .repuestos-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .repuestos-texto h2 {
        font-size: 20px;
    }

    .repuestos-categorias {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .repuesto-cat {
        border-radius: 10px;
        padding: 16px 10px;
    }

    /* --- CTA: mobile --- */
    .cta-agendar {
        padding: 40px 16px;
    }

    .cta-agendar h2 {
        font-size: 20px;
    }

    .cta-agendar-btn {
        width: 100%;
        justify-content: center;
        border-radius: 8px;
        padding: 14px 20px;
    }

    /* --- MODALS: full screen on mobile --- */
    .modal-credito-overlay,
    .modal-cita-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal-credito-box,
    .modal-cita-box {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px 16px 0 0;
        padding: 24px 16px calc(20px + env(safe-area-inset-bottom, 0px));
        animation: slideUp 0.3s ease;
    }

    .modal-credito-box h2,
    .modal-cita-box h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .modal-credito-close,
    .modal-cita-close {
        top: 8px;
        right: 14px;
        font-size: 28px;
    }

    /* --- POLÍTICA: readable on mobile --- */
    .politica-section {
        padding: 0 16px 40px;
    }

    .politica-header {
        padding: 30px 16px;
        margin: 0 -16px 24px;
    }

    .politica-header h1 {
        font-size: 18px;
    }

    .empresa-info,
    .contacto-datos {
        padding: 16px;
        border-radius: 8px;
    }

    /* --- GALERÍA MODAL: touch friendly --- */
    .modal-galeria-nav {
        font-size: 36px;
        padding: 16px;
    }

    .modal-galeria-prev { left: 4px; }
    .modal-galeria-next { right: 4px; }

    .modal-galeria-close {
        top: 12px;
        right: 16px;
        font-size: 32px;
    }

    .modal-galeria-content img {
        max-width: 95vw;
    }

    .modal-galeria-content iframe {
        width: 95vw;
        height: 55vw;
    }
}

/* --- Extra small devices --- */
@media (max-width: 380px) {
    .ban h1 { font-size: 18px; }
    .moto-info .title-cont h4 { font-size: 15px; }
    .moto-info .precio { font-size: 18px; }
    .moto-datos .titulo h1 { font-size: 20px; }
    .app-nav-item span { font-size: 9px; }
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* --- Smooth scrolling & touch --- */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Hide scrollbars but keep functionality */
    .items::-webkit-scrollbar,
    .tipos::-webkit-scrollbar {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════
   FUERA DE BORDA - Estilos específicos
   ═══════════════════════════════════════════════════ */

.ban-fueraborda {
    background: linear-gradient(135deg, #003366 0%, #006699 100%);
}

.bono-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 3px;
    z-index: 2;
    margin: 0;
    line-height: 1.3;
}

/* Motor detalle - Header */
.motor-header {
    display: flex;
    gap: 30px;
    padding: 30px 20px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.motor-header-img {
    flex: 0 0 40%;
    text-align: center;
}

.motor-header-img img {
    max-width: 100%;
    height: auto;
}

.motor-header-info {
    flex: 1;
}

.motor-header-info h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 8px 0 16px;
    color: #111;
}

.tipo-motor-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #006699;
    letter-spacing: 1px;
}

.motor-descripcion {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* Variantes y precios */
.motor-variantes-section {
    padding: 30px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.motor-variantes-section h2,
.motor-caract-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.motor-variantes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.motor-variante-card {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #eee;
}

.motor-variante-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.variante-precio {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.variante-bono {
    display: inline-block;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 3px;
    margin-top: 6px;
}

/* Características */
.motor-caract-section {
    padding: 30px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.motor-caract-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.motor-caract-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.caract-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.caract-text {
    padding: 16px;
}

.caract-text h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
    text-transform: uppercase;
}

.caract-text p {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

/* Responsive motor */
@media (max-width: 768px) {
    .motor-header {
        flex-direction: column;
        padding: 20px 16px;
    }

    .motor-header-img {
        flex: none;
        width: 100%;
    }

    .motor-header-info h1 {
        font-size: 22px;
    }

    .motor-variantes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .motor-caract-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .motor-variantes-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== PROMOCIONES ===== */
.promociones-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.promociones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.promo-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.promo-img {
    width: 100%;
    overflow: hidden;
}

.promo-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-img img {
    transform: scale(1.03);
}

.promo-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.promo-card h3 {
    font-size: 20px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 15px;
    text-align: center;
}

.promo-precio {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 12px 0;
    text-align: right;
    margin-bottom: 15px;
}

.promo-desde {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-valor {
    display: block;
    font-size: 24px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: #565656;
    line-height: 1.3;
}

.promo-iva {
    display: block;
    font-size: 10px;
    color: #666;
    margin-top: 3px;
}

.promo-condiciones {
    font-size: 11px;
    color: #888;
    line-height: 1.6;
    flex: 1;
    margin: 0 0 15px;
}

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

/* ===== CORPORATIVO / HISTORIA ===== */
.corp-hero {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.corp-hero h1 {
    font-size: 36px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    letter-spacing: 2px;
    margin: 0 0 15px;
}

.corp-hero p {
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
    line-height: 1.7;
}

.corp-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.corp-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 50px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--secondary-color);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--secondary-color);
    z-index: 2;
}

.timeline-item.left .timeline-dot {
    right: -7px;
}

.timeline-item.right .timeline-dot {
    left: -7px;
}

.timeline-content {
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

.timeline-content:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.timeline-year {
    font-size: 28px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.timeline-img {
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 3px;
}

.timeline-img img {
    width: 100%;
    height: auto;
    display: block;
}

.timeline-content p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .corp-hero h1 { font-size: 26px; }

    .corp-timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding: 0 20px 40px 50px;
        text-align: left;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        text-align: left;
    }

    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 13px;
        right: auto;
    }
}


/* ===== CARRUSEL PROMOCIONES BANNER ===== */
.promo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.promo-carousel-track {
    position: relative;
    width: 100%;
    height: 420px;
}

.promo-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

.promo-slide.active {
    opacity: 1;
    z-index: 1;
}

.promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.promo-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    text-align: left;
}

.promo-slide-info h2 {
    font-size: 24px;
    font-family: "suzuki-head", 'Poppins', sans-serif;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.promo-slide-info span {
    font-size: 18px;
    font-family: "suzuki-bold", 'Poppins', sans-serif;
    opacity: 0.9;
}

.promo-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 24px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-carousel-btn:hover { background: rgba(0,0,0,0.7); }
.promo-carousel-btn.prev { left: 10px; }
.promo-carousel-btn.next { right: 10px; }

.promo-carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 8px;
}

.promo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.promo-dot.active { background: #fff; }

@media (max-width: 768px) {
    .promo-carousel-track { height: 280px; }
    .promo-slide-info h2 { font-size: 18px; }
    .promo-slide-info span { font-size: 15px; }
    .promo-carousel-btn { width: 36px; height: 36px; font-size: 18px; }
}

@media (max-width: 480px) {
    .promo-carousel-track { height: 220px; }
    .promo-slide-info { padding: 12px 15px; }
    .promo-slide-info h2 { font-size: 15px; }
    .promo-slide-info span { font-size: 13px; }
}

/* ===== HERO PROMO CAROUSEL (dual images) ===== */
.hero-promo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-promo-track {
    position: relative;
    width: 100%;
    aspect-ratio: 2.4 / 1;
}

.hero-promo-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: flex;
}

.hero-promo-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-promo-half {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-promo-half img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.hero-promo-half:hover img {
    transform: scale(1.03);
}

.hero-promo-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0,0,0,0.45);
    color: #fff;
    border: none;
    font-size: 24px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hero-promo-btn:hover { background: rgba(229,0,17,0.8); }
.hero-promo-btn.prev { left: 14px; }
.hero-promo-btn.next { right: 14px; }

.hero-promo-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-promo-track {
        aspect-ratio: 1 / 1;
    }

    .hero-promo-slide {
        flex-direction: row;
        overflow: hidden;
    }

    .hero-promo-half {
        flex: 0 0 100%;
        width: 100%;
    }

    .hero-promo-half:nth-child(2) {
        display: none;
    }

    .hero-promo-half img {
        object-fit: cover;
    }

    .hero-promo-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* Burbuja flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
