@charset "utf-8";
@font-face{
    font-family:'Lato';
    src:url("../../system/font/Lato/Lato-Light.ttf") format('truetype');
    font-weight:300;
    font-style:normal;
    font-display:swap;
}
@font-face{
    font-family:'Lato';
	src:url("../../system/font/Lato/Lato-Regular.ttf") format('truetype');
    font-weight:400;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Lato';
	src:url("../../system/font/Lato/Lato-Bold.ttf") format('truetype');
    font-weight:700;
    font-style:normal;
    font-display:swap;
}

/* =========================
   RESET / BASE
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    width:100%;
    min-height:100%;
    margin:0;
    background:#fff;
}

body{
    width:100%;
    min-height:100vh;
    margin:0;
    background:#fff;
    color:#000;
    font-family:'Lato', sans-serif;
    font-size:18px;
    font-weight:400;
    line-height:1.4;
    overflow-x:hidden;
}

/* Layout vertical reutilizable para todas las páginas de Radar Motos */
body.sitePage{
    display:flex;
    flex-direction:column;
}

body.sitePage > .headerWrap{
    flex:0 0 auto;
}

body.sitePage > .container{
    flex:1 0 auto;
}

body.sitePage > footer,
body.sitePage > .footerWrap{
    flex:0 0 auto;
}

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

li{
    list-style:none;
}

/* =========================
   HEADER
========================= */
.headerWrap{
    position:relative;
    width:100%;
}

.headerLogo{
    position:absolute;
    top:4px;
    left:30px;
    z-index:10;
}

.headerLogo img{
    width:300px;
    height:auto;
    display:block;
}

.headerMenu{
    position:relative;
    width:100%;
    height:60px;
    padding-right:30px;
    background:#d3d3d3;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.headerMenu::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(to right, #00aaff, #8c8c8c);
    box-shadow:
        0 0 8px rgba(0,170,255,.9),
        0 0 15px rgba(0,170,255,.5);
    z-index:2;
}

.btnHeader01{
    margin-right:20px;
    cursor:pointer;
    user-select:none;
    font-size:13px;
    font-weight:500;
    letter-spacing:1.5px;
}

.btnHeader01:hover{
    color:#ca0f16;
}

.btnHeader01 .ico50{
    margin-right:4px;
    font-size:22px;
    vertical-align:middle;
}


/* =========================
   HAMBURGER
========================= */
.hamburger{
    display:none;
    width:34px;
    height:28px;
    cursor:pointer;
    flex-direction:column;
    justify-content:space-between;
    z-index:20;
}

.hamburger span{
    width:100%;
    height:3px;
    background:#111;
    border-radius:3px;
    transition:.25s;
}

.menuItems{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:30px;
}

/* =========================
   LOADER
========================= */
.loader{
    position:fixed;
    inset:0;
    z-index:9999;
    background:url("../../system/img/loader.gif") 50% 50% no-repeat rgb(249,249,249);
    opacity:.8;
}

/* =========================
   LAYOUT
========================= */
.container{
    width:100%;
    display:flex;
    flex:1 0 auto;
    flex-direction:row;
    justify-content:space-between;
    align-items:stretch;
    min-height:0;
}

.co_left{
    width:30%;
}

.filters{
    width:70%;
    margin:30px auto 0 auto;
    padding:10px 20px 10px 60px;
    background:aliceblue;
    border-radius:5px;
}

.adver{
    width:70%;
    margin:30px auto 30px auto;
    padding:10px 20px;
    background:#f5f5f5;
    border-radius:5px;
    align-self:stretch;
}

/* =========================
   FILTROS
========================= */
.menuReset,
.menuBuscar,
.menuEstados,
.menuMunicipios,
.menuCategorias,
.menuMarcas,
.menuModelos,
.menuPrecio{
    width:300px;
    display:flex;
    flex-direction:column;
    overflow:hidden;
}

.menuReset,
.menuBuscar{
    margin-bottom:15px;
}

.menuCategorias{
    margin-top:15px;
}

.tituloFiltro{
    font-size:18px;
    font-weight:700;
}

.itemMarca{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:4px 10px;
    color:#333;
    border-bottom:1px solid #eee;
    transition:.2s;
    font-size:12px;
    line-height:1.5;
}

.itemMarca:hover{
    background:#f5f5f5;
    padding-left:20px;
}

.itemMarca:last-child{
    border-bottom:none;
}

.cantidad{
    padding:2px 4px;
    border-radius:10px;
    background:slategray;
    color:#fff;
    font-size:11px;
}

.cantidadActiva{
    background:crimson !important;
}

.cantidad02{
    padding:1px 6px;
    border-radius:50px;
    background:darkcyan;
    color:#fff;
    font-size:12px;
}

/* =========================
   BUSCADOR
========================= */
.buscarWrap{
    position:relative;
    width:100%;
    margin-top:10px;
}

.inputBuscarMarket{
    width:100%;
    height:38px;
    padding:0 38px 0 10px;
    border:1px solid #ccc;
    border-radius:8px;
    background:#fff;
    font-size:13px;
    outline:none;
}

.inputBuscarMarket:focus{
    border-color:crimson;
}

.cerrarBusqueda{
    position:absolute;
    top:50%;
    right:9px;
    width:20px;
    height:20px;
    transform:translateY(-50%);
    border:1px solid #ddd;
    border-radius:50%;
    background:#fff;
    color:#111;
    display:none;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:12px;
    font-weight:700;
    transition:.2s;
}

.cerrarBusqueda:hover{
    background:crimson;
    color:#fff;
}

/* =========================
   TAGS DE FILTROS ACTIVOS
========================= */
.vinculos{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
}

.tagFiltro{
    display:flex;
    align-items:center;
    gap:10px;
    padding:2px 6px;
    border-radius:5px;
    background:lightsteelblue;
    color:#000;
    font-size:12px;
}

.cerrarTag{
    width:20px;
    height:20px;
    border-radius:50%;
    background:#fff;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}


/* =========================
   PRECIO
========================= */
.precioInputs{
    width:100%;
    display:flex;
    gap:8px;
    margin-top:10px;
}

.inputPrecio{
    width:100%;
    height:38px;
    padding:0 10px;
    border:1px solid #ccc;
    border-radius:8px;
    background:#fff;
    font-size:14px;
    outline:none;
}

.inputPrecio:focus{
    border-color:crimson;
}

.btnPrecio{
    min-width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#ddd;
    color:#555;
    cursor:pointer;
    font-size:22px;
    line-height:1;
}

.btnPrecio:hover{
    background:crimson;
    color:#fff;
}

/* =========================
   RESULTADOS / TARJETAS
========================= */
.resFiltro{
    width:100%;
    margin-bottom:15px;
    color:#333;
    font-size:16px;
    font-weight:600;
}

.tbl05{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    padding:0;
    margin:0;
}

.tbl_col05{
    width:calc(25% - 12px);
    display:flex;
    justify-content:center;
    align-items:stretch;
}

.linkMoto{
    width:100%;
    color:inherit;
    text-decoration:none;
    display:flex;
}

.linkMoto .view01{
    transition:all .25s ease;
    border:2px solid transparent;
}

.linkMoto:hover .view01{
    background:#fff7f7;
    border-color:crimson;
    box-shadow:0 0 18px rgba(202,15,22,.25);
    transform:translateY(-3px);
}

.view01{
    width:100%;
    height:100%;
    min-width:220px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:rgba(17,17,26,.1) 0 0 16px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
}

.pic01{
    width:100%;
    height:105px;
    overflow:hidden;
    background:#f5f5f5;
    display:flex;
    justify-content:center;
    align-items:center;
}

.viewpic_img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.sinFoto{
    width:100%;
    height:100%;
    background:#f5f5f5;
    color:slategray;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-size:13px;
    line-height:1.4;
}

.sinFoto span{
    margin-bottom:5px;
    font-size:28px;
}

.sinResultados{
    width:100%;
    padding:25px 15px;
    background:#fff;
    border-radius:10px;
    color:slategray;
    font-size:16px;
    text-align:center;
    box-shadow:rgba(17,17,26,.1) 0 0 16px;
}

.cl25{
    width:90%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cl30{
    font-size:17px;
    font-weight:600;
    letter-spacing:1px;
}

.cl31{
    font-size:12px;
    font-weight:300;
    text-align:center;
}

.cl32{
    margin-bottom:15px;
    color:slategray;
    font-size:12px;
    font-weight:300;
    line-height:1.5;
    text-align:center;
}

.cl33{
    color:darkred;
    font-size:16px;
    font-weight:600;
}

.cl34{
    width:90%;
    margin:5px auto 0 auto;
    color:#253e51;
    font-size:13px;
    font-weight:700;
    line-height:1.25;
    text-align:center;
}

.cl35{
    width:100%;
    margin:3px auto 1px auto;
    color:slategray;
    font-size:11px;
    line-height:1.2;
    text-align:center;
}

.nego01{
    width:auto;
    padding:2px 5px;
    border:1px solid #d11e21;
    color:#d11e21;
    display:inline-block;
    font-size:10px;
    line-height:1;
}

/* =========================
   PAGINADOR
========================= */
.paginadorSEC{
    width:100%;
    margin-top:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:4px;
    flex-wrap:wrap;
}

.pagBtn{
    min-width:20px;
    height:20px;
    padding:1px 6px;
    border:1px solid #c50000;
    border-radius:4px;
    background:#fff;
    color:#c50000;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    font-size:10px;
    font-weight:600;
    line-height:1;
}

.pagBtn:hover,
.pagActivo{
    background:#c50000;
    color:#fff;
}

/* =========================
   BOTÓN FILTROS MOBILE
========================= */
.btnFiltrosMobile{
    display:none;
}

/* =========================
   TABLET
========================= */
@media only screen and (max-width:1100px){
    .container{
        flex-direction:column;
        justify-content:flex-start;
        align-items:stretch;
    }

    .co_left,
    .adver{
        width:92%;
    }

    .filters{
        width:auto;
        padding:15px;
    }

    .menuReset,
    .menuBuscar,
    .menuEstados,
    .menuMunicipios,
    .menuCategorias,
    .menuMarcas,
    .menuModelos,
    .menuPrecio{
        width:100%;
    }

    .tbl_col05{
        width:calc(33.333% - 10px);
    }
}

/* =========================
   MOBILE
========================= */
@media only screen and (max-width:767px){
    .container{
        width:100%;
        justify-content:flex-start;
        align-items:stretch;
        gap:0;
        min-height:0;
        overflow:hidden;
    }

    .headerLogo{
        position:relative;
        top:0;
        left:0;
        width:100%;
        padding:8px 0;
        background:#fff;
        display:flex;
        justify-content:center;
    }

    .headerLogo img{
        width:220px;
    }

    .headerMenu{
        height:auto;
        min-height:55px;
        padding:12px 15px;
        background:rgba(0,0,0,.70);
        justify-content:flex-start;
        align-items:flex-start;
        flex-direction:column;
        gap:0;
    }

    .hamburger{
        display:flex;
    }

    .hamburger span{
        background:#fff;
    }

    .menuItems{
        display:none;
        width:100%;
        margin-top:15px;
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }

    .menuItems.menuActivo{
        display:flex;
    }

    .btnHeader01{
        width:100%;
        margin-right:0;
        padding:8px 0;
        color:#fff;
        text-align:left;
        font-size:12px;
    }

    .btnHeader01:hover{
        color:#CA0F16;
    }

    .hamburgerActivo span:nth-child(1){
        transform:rotate(45deg) translate(8px, 8px);
    }

    .hamburgerActivo span:nth-child(2){
        opacity:0;
    }

    .hamburgerActivo span:nth-child(3){
        transform:rotate(-45deg) translate(9px, -9px);
    }

    .btnFiltrosMobile{
        width:92%;
        margin:18px auto 0 auto;
        padding:10px 14px;
        border-radius:8px;
        background:#c50000;
        color:#fff;
        display:flex;
        justify-content:center;
        align-items:center;
        cursor:pointer;
        user-select:none;
        font-size:14px;
        letter-spacing:1px;
    }

    .co_left{
        width:92%;
        margin:0 auto;
        display:none;
    }

    .co_left.filtrosActivo{
        display:block;
    }

    .filters{
        margin-top:10px;
        padding:15px;
    }

    .adver{
        width:92%;
        margin:10px auto 20px auto;
        padding:10px;
        align-self:auto;
    }

    .tbl05{
        gap:12px;
    }

    .tbl_col05{
        width:100%;
    }

    .view01{
        min-width:0;
    }

    .pic01{
        height:180px;
    }

    .buscarWrap{
        margin-top:8px;
    }

    .inputBuscarMarket{
        height:42px;
        padding:0 42px 0 12px;
        font-size:14px;
    }

    .vinculos{
        gap:6px;
        margin-bottom:12px;
    }

    .tagFiltro{
        width:100%;
        justify-content:space-between;
        padding:6px 8px;
        font-size:12px;
    }

    .cerrarTag{
        flex-shrink:0;
    }

    .precioInputs{
        flex-direction:column;
        gap:8px;
    }

    .inputPrecio{
        height:42px;
        font-size:14px;
    }

    .btnPrecio{
        width:100%;
        height:42px;
        border-radius:8px;
    }
}


/* =========================================================
   AJUSTE FINAL MENÚ MÓVIL ESTILO INDEXZ
========================================================= */
@media only screen and (max-width:767px){

    .headerWrap{
        position:relative;
        width:100%;
        height:72px;
        min-height:72px;
        padding:0;
        background:#fff;
        border-bottom:1px solid #e7e7e7;
        box-shadow:0 4px 14px rgba(0,0,0,.07);
        z-index:1000;
    }

    .headerLogo{
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);
        width:auto;
        padding:0;
        margin:0;
        text-align:center;
        background:transparent;
        z-index:15;
        pointer-events:none;
    }

    .headerLogo img{
        width:220px;
        max-width:58vw;
        height:auto;
        margin:0 auto;
        display:block;
    }

    .headerMenu{
        position:relative;
        width:100%;
        height:72px;
        min-height:72px;
        padding:0 15px;
        margin:0;
        display:flex;
        justify-content:flex-start;
        align-items:center;
        flex-wrap:nowrap;
        gap:0;
        background:#fff;
        overflow:visible;
    }

    .hamburger{
        display:flex;
        position:relative;
        width:34px;
        height:28px;
        flex:0 0 34px;
        margin:0;
        padding:0;
        flex-direction:column;
        justify-content:space-between;
        align-items:stretch;
        gap:0;
        cursor:pointer;
        pointer-events:auto;
        touch-action:manipulation;
        z-index:10001;
    }

    .hamburger span{
        width:100%;
        height:3px;
        background:#111;
        border-radius:3px;
        transition:transform .25s ease, opacity .25s ease;
    }

    .hamburgerActivo span:nth-child(1){
        transform:translateY(12px) rotate(45deg);
    }

    .hamburgerActivo span:nth-child(2){
        opacity:0;
    }

    .hamburgerActivo span:nth-child(3){
        transform:translateY(-13px) rotate(-45deg);
    }

    .menuItems{
        display:none;
        position:absolute;
        top:72px;
        left:0;
        width:100%;
        margin:0;
        padding:14px 18px 16px;
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
        background:#fff;
        border-top:1px solid #ececec;
        box-shadow:0 8px 14px rgba(0,0,0,.08);
        visibility:visible;
        opacity:1;
        z-index:9999;
    }

    .menuItems.menuActivo{
        display:flex !important;
        pointer-events:auto;
    }

    .menuItems .btnHeader01{
        width:100%;
        margin:0;
        padding:9px 0;
        display:flex;
        align-items:center;
        justify-content:flex-start;
        color:#000;
        background:#fff;
        border:0;
        border-radius:0;
        text-align:left;
        font-size:12px;
        letter-spacing:1.5px;
    }

    .menuItems .btnHeader01 span{
        width:auto;
        margin-right:8px;
        color:#000;
    }

    .menuItems .btnHeader01:hover,
    .menuItems .btnHeader01:hover span{
        color:#ca0f16;
        background:#fff;
    }
}

@media only screen and (max-width:420px){
    .headerLogo img{
        width:195px;
        max-width:60vw;
    }
}


@media only screen and (max-width:767px){
  .headerMenu{
    justify-content:flex-start !important;
    align-items:center !important;
    position:relative;
  }
  .hamburger{
    position:absolute !important;
    left:15px !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    margin:0 !important;
    flex:none !important;
  }
}
