/* =========================================================
   ZERO LLANTAS
   STYLE.CSS V39
========================================================= */

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

:root {
    --red: #ed0a0a;
    --black: #050505;
    --white: #ffffff;
    --bg: #f4f4f2;
    --soft: #e9e9e6;
    --gray: #6b6b6b;
    --line: #d9d9d6;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--black);
    font-family: Inter, Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}


/* =========================================================
   PROMO SUPERIOR
========================================================= */

.promo {
    min-height: 34px;
    padding: 9px 20px;
    background: var(--black);
    color: var(--white);
    text-align: center;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.promo i {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 14px 2px;
    border-radius: 50%;
    background: var(--red);
}


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

header {
    position: relative;
    z-index: 50;
    min-height: 86px;
    padding: 16px 3%;
    display: grid;
    grid-template-columns: auto minmax(260px, 520px) auto;
    align-items: center;
    gap: 30px;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.logo {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    text-decoration: none;
    white-space: nowrap;
}

.logo b {
    font-size: 31px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
}

.logo span {
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.head-search {
    display: flex;
    width: 100%;
    height: 44px;
}

.head-search input {
    min-width: 0;
    flex: 1;
    padding: 0 15px;
    border: 1px solid #cfcfcb;
    outline: none;
    background: #fff;
    font-size: 12px;
}

.head-search button {
    padding: 0 22px;
    border: 0;
    background: var(--black);
    color: #fff;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
}

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

header nav a {
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .7px;
}

header nav a:hover {
    color: var(--red);
}

.cart strong {
    display: inline-flex;
    width: 21px;
    height: 21px;
    margin-left: 5px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 10px;
}


/* =========================================================
   ELEMENTOS GENERALES
========================================================= */

.over,
.kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--red);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 2px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    border: 0;
    text-decoration: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .4px;
}

.button.hot {
    background: var(--red);
    color: #fff;
}

.button.dark {
    background: var(--black);
    color: #fff;
}

.button.ghost {
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
}

.button.full {
    width: 100%;
}


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

.hero {
    position: relative;
    min-height: 680px;
    padding: 80px 5% 120px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    background: #111;
    color: #fff;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(54px, 6vw, 96px);
    line-height: .88;
    letter-spacing: -5px;
    font-weight: 900;
}

.hero h1 em {
    color: var(--red);
    font-style: normal;
}

.hero-copy > p {
    max-width: 660px;
    margin: 28px 0;
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.8;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-real {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-real img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-real-label {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 17px 20px;
    background: var(--red);
}

.hero-real-label b,
.hero-real-label span {
    display: block;
}

.hero-real-label b {
    font-size: 11px;
}

.hero-real-label span {
    margin-top: 4px;
    font-size: 8px;
    letter-spacing: .8px;
}

.hero-stats {
    position: absolute;
    right: 5%;
    bottom: 0;
    left: 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #080808;
}

.hero-stats > div {
    padding: 23px 25px;
    border-right: 1px solid #282828;
}

.hero-stats > div:last-child {
    border-right: 0;
}

.hero-stats b,
.hero-stats span {
    display: block;
}

.hero-stats b {
    font-size: 11px;
}

.hero-stats span {
    margin-top: 6px;
    color: #777;
    font-size: 8px;
    letter-spacing: .8px;
}


/* =========================================================
   INTRODUCCIONES
========================================================= */

.section-intro {
    max-width: 750px;
    margin-bottom: 45px;
}

.section-intro h2,
.work-copy h2,
.gallery-head h2,
.fit-copy h2,
.title-row h2,
.final-cta h2 {
    margin: 0;
    font-size: clamp(40px, 5vw, 70px);
    line-height: .94;
    letter-spacing: -3px;
    font-weight: 900;
}

.section-intro p {
    max-width: 650px;
    margin-top: 20px;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

.section-intro.compact {
    margin-bottom: 28px;
}


/* =========================================================
   SERVICIOS
========================================================= */

.services-pro {
    padding: 90px 5%;
    background: #fff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-grid article {
    min-height: 230px;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-grid article > span {
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
}

.service-grid h3 {
    margin: 40px 0 12px;
    font-size: 19px;
    font-weight: 900;
}

.service-grid p {
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.6;
}

.service-cta {
    background: var(--black);
    color: #fff;
}

.service-cta p {
    color: #aaa;
}

.service-cta a {
    display: inline-block;
    margin-top: 20px;
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
}


/* =========================================================
   TRABAJO / ANTES Y DESPUÉS
========================================================= */

.work-showcase {
    padding: 90px 5%;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 60px;
    background: #e8e8e5;
}

.work-copy p {
    margin: 25px 0;
    color: #666;
    font-size: 12px;
    line-height: 1.8;
}

.before-after {
    position: relative;
    margin: 0;
}

.before-after img {
    display: block;
    width: 100%;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 15px;
    padding: 8px 11px;
    background: #000;
    color: #fff;
    font-size: 9px;
    font-weight: 900;
}

.ba-before {
    left: 15px;
}

.ba-after {
    right: 15px;
    background: var(--red);
}

.before-after figcaption {
    padding: 14px;
    background: #000;
    color: #fff;
    font-size: 9px;
    letter-spacing: .8px;
}


/* =========================================================
   GALERÍA
========================================================= */

.finish-gallery {
    padding: 90px 5%;
    background: #111;
    color: #fff;
}

.gallery-head {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: end;
    gap: 50px;
}

.gallery-head p {
    margin: 0;
    color: #888;
    font-size: 11px;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 8px;
}

.gallery-grid figure {
    position: relative;
    min-height: 420px;
    margin: 0;
    overflow: hidden;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-grid figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 18px;
    background: linear-gradient(transparent, rgba(0,0,0,.85));
}

.gallery-grid figcaption b,
.gallery-grid figcaption span {
    display: block;
}

.gallery-grid figcaption b {
    font-size: 10px;
}

.gallery-grid figcaption span {
    margin-top: 4px;
    color: #aaa;
    font-size: 8px;
}


/* =========================================================
   CONSULTA
========================================================= */

.consult-strip {
    padding: 45px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: var(--red);
    color: #fff;
}

.consult-strip .over {
    color: #fff;
}

.consult-strip h2 {
    margin: 0;
    font-size: 35px;
    font-weight: 900;
    letter-spacing: -1px;
}

.consult-strip p {
    max-width: 720px;
    margin: 10px 0 0;
    font-size: 11px;
    line-height: 1.6;
}

.consult-strip .button.hot {
    flex-shrink: 0;
    background: #000;
}


/* =========================================================
   PROCESO
========================================================= */

.process {
    padding: 85px 5%;
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}

.process-grid > div {
    padding: 25px;
    border-right: 1px solid var(--line);
}

.process-grid > div:last-child {
    border-right: 0;
}

.process-grid b {
    color: var(--red);
    font-size: 11px;
}

.process-grid h3 {
    margin: 28px 0 10px;
    font-size: 15px;
}

.process-grid p {
    margin: 0;
    color: #777;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   BUSCADOR POR MEDIDA
========================================================= */

.fitment {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: end;
    background: #e9e9e6;
}

.fit-copy p {
    max-width: 530px;
    color: #666;
    font-size: 12px;
    line-height: 1.7;
}

.fit-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.fit-form label {
    color: #555;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .6px;
}

.fit-form select {
    width: 100%;
    height: 50px;
    margin-top: 8px;
    padding: 0 12px;
    border: 1px solid #cfcfcb;
    background: #fff;
    outline: none;
    font-size: 11px;
    font-weight: 700;
}

.fit-form button {
    grid-column: 1 / -1;
    margin-top: 5px;
}


/* =========================================================
   CATEGORÍAS
========================================================= */

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #000;
}

.categories a {
    min-height: 74px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 1px solid #282828;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
}

.categories a:last-child {
    border-right: 0;
}

.categories a:hover {
    background: var(--red);
}


/* =========================================================
   CATÁLOGO
========================================================= */

main#productos {
    padding: 80px 1%;
    background: #f4f4f2;
}

.title-row {
    margin: 0 2% 35px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.title-row p {
    margin: 0;
    color: #777;
    text-align: right;
    font-size: 9px;
    line-height: 1.6;
    font-weight: 700;
}

.toolbar {
    margin: 0 2% 22px;
    display: grid;
    grid-template-columns: 1fr 230px 230px;
    gap: 8px;
}

.toolbar input,
.toolbar select {
    height: 48px;
    padding: 0 14px;
    border: 1px solid #d2d2cf;
    outline: none;
    background: #fff;
    color: #222;
    font-size: 11px;
}


/* =========================================================
   TARJETAS DE PRODUCTO
   4 POR FILA EN ESCRITORIO
========================================================= */

.grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

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


/* =========================================================
   FOTO DEL PRODUCTO
========================================================= */

.photo {
    position: relative;
    width: 100%;
    height: 370px;
    padding: 14px;
    overflow: hidden;

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

    background: #fff;
    text-decoration: none;
}

.photo img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    margin: 0;
    padding: 0;

    object-fit: contain;
    object-position: center;

    transition: transform .25s ease;
}

.card:hover .photo img {
    transform: scale(1.025);
}


/* =========================================================
   ETIQUETA
========================================================= */

.tag {
    position: absolute;
    z-index: 5;
    top: 12px;
    left: 12px;

    padding: 8px 10px;

    background: #f2c500;
    color: #1b1b1b;

    border-radius: 4px;

    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}


/* =========================================================
   INFORMACIÓN DE TARJETA
========================================================= */

.card-body {
    flex: 1;
    padding: 12px 13px 13px;

    display: flex;
    flex-direction: column;
}


/*
   Ya NO mostramos la medida como bloque separado.
   El nombre del producto es el título principal.
*/

.card .measure,
.card .mega-measure {
    display: none !important;
}


/*
   Ocultamos la marca independiente para acercarnos
   al diseño de referencia.
*/

.card .brand {
    display: none;
}


.card h3 {
    min-height: 42px;

    margin: 0 0 16px;

    color: #666;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
}


/* =========================================================
   PRECIOS
========================================================= */

.prices {
    display: block;

    margin: 0;
    padding: 0;

    border: 0;
}

.prices > div {
    width: 100%;
}

.prices small {
    display: none;
}


/* PRECIO NORMAL */

.prices > div:first-child b {
    display: block;

    color: #333;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size: 23px;
    line-height: 1.1;
    font-weight: 800;
}


/* PRECIO EFECTIVO */

.prices .cash {
    margin-top: 8px;
}

.prices .cash::before {
    content: "CON TRANSFERENCIA O DEPÓSITO BANCARIO";

    display: block;

    margin-bottom: 3px;

    color: #333;

    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;
}

.prices .cash b {
    color: #333;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
}


/* =========================================================
   CUOTAS
========================================================= */

.quota {
    margin: 8px 0 17px;

    color: var(--red);

    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;
}

.quota b {
    font-weight: 500;
}


/* =========================================================
   BOTÓN COMPRAR
========================================================= */

.card .button.full {
    min-height: 38px;

    margin-top: auto;
    padding: 0 12px;

    background: #050505;
    color: #fff;

    border-radius: 2px;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
}

.card .button.full:hover {
    background: var(--red);
}


/* =========================================================
   SIN RESULTADOS
========================================================= */

.empty {
    display: none;
    margin-top: 20px;
    padding: 35px;
    border: 1px solid var(--line);
    background: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
}


/* =========================================================
   MARCAS
========================================================= */

.brands {
    padding: 65px 5%;
    background: #111;
    color: #fff;
    text-align: center;
}

.brands > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    font-size: clamp(20px, 3vw, 45px);
    font-weight: 900;
    letter-spacing: -2px;
}

.brands i {
    color: #555;
    font-style: normal;
}


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

.final-cta {
    padding: 100px 5%;
    background: #fff;
    text-align: center;
}

.final-cta p {
    margin: 22px 0;
    color: #777;
    font-size: 11px;
    line-height: 1.7;
}


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

footer {
    padding: 50px 5%;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    background: #050505;
    color: #fff;
}

.logo.foot {
    align-self: start;
}

footer > div > b:not(.logo b) {
    display: block;
    margin-bottom: 12px;
    color: #777;
    font-size: 9px;
    letter-spacing: 1px;
}

footer p {
    margin: 0;
    color: #aaa;
    font-size: 9px;
    line-height: 1.6;
}


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

.wa-float {
    position: fixed;
    z-index: 100;
    right: 20px;
    bottom: 20px;

    padding: 14px 18px;

    background: #000;
    color: #fff;

    border: 1px solid #333;

    text-decoration: none;

    font-size: 10px;
    font-weight: 900;
}


/* =========================================================
   RESPONSIVE - NOTEBOOK / TABLET GRANDE
========================================================= */

@media (max-width: 1250px) {

    header {
        grid-template-columns: auto 1fr;
    }

    header nav {
        grid-column: 1 / -1;
        justify-content: center;
    }

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

    .photo {
        height: 350px;
    }

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 950px) {

    .hero {
        grid-template-columns: 1fr;
        padding-bottom: 180px;
    }

    .hero-real {
        min-height: 420px;
    }

    .hero-real img {
        height: 420px;
    }

    .work-showcase,
    .fitment {
        grid-template-columns: 1fr;
    }

    .gallery-head {
        grid-template-columns: 1fr;
    }

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

    .gallery-wide {
        grid-column: 1 / -1;
    }

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

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

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

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

    .toolbar input {
        grid-column: 1 / -1;
    }

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

    .photo {
        height: 360px;
    }

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

}


/* =========================================================
   RESPONSIVE - CELULAR
========================================================= */

@media (max-width: 650px) {

    .promo {
        font-size: 8px;
    }

    .promo i {
        margin-right: 7px;
        margin-left: 7px;
    }

    header {
        padding: 14px;
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .logo {
        justify-content: center;
    }

    .head-search {
        height: 42px;
    }

    header nav {
        grid-column: auto;
        gap: 13px;
        flex-wrap: wrap;
    }

    .hero {
        min-height: 0;
        padding: 55px 20px 185px;
        gap: 35px;
    }

    .hero h1 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .hero-real {
        min-height: 320px;
    }

    .hero-real img {
        height: 320px;
    }

    .hero-stats {
        right: 20px;
        left: 20px;
    }

    .hero-stats > div {
        padding: 14px 10px;
    }

    .hero-stats b {
        font-size: 8px;
    }

    .hero-stats span {
        font-size: 6px;
    }

    .services-pro,
    .work-showcase,
    .finish-gallery,
    .process,
    .fitment,
    .final-cta {
        padding-right: 20px;
        padding-left: 20px;
    }

    .section-intro h2,
    .work-copy h2,
    .gallery-head h2,
    .fit-copy h2,
    .title-row h2,
    .final-cta h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-wide {
        grid-column: auto;
    }

    .gallery-grid figure {
        min-height: 330px;
    }

    .consult-strip {
        padding: 35px 20px;
        align-items: flex-start;
        flex-direction: column;
    }

    .fit-form {
        grid-template-columns: 1fr;
    }

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

    main#productos {
        padding: 55px 10px;
    }

    .title-row {
        margin: 0 0 25px;
        align-items: flex-start;
        flex-direction: column;
    }

    .title-row p {
        text-align: left;
    }

    .toolbar {
        margin: 0 0 15px;
        grid-template-columns: 1fr;
    }

    .toolbar input {
        grid-column: auto;
    }

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

    .photo {
        height: 245px;
        padding: 8px;
    }

    .tag {
        top: 8px;
        left: 8px;
        padding: 6px 7px;
        font-size: 8px;
    }

    .card-body {
        padding: 10px;
    }

    .card h3 {
        min-height: 42px;
        margin-bottom: 12px;
        font-size: 12px;
        line-height: 1.35;
    }

    .prices > div:first-child b {
        font-size: 19px;
    }

    .prices .cash::before {
        font-size: 8px;
    }

    .prices .cash b {
        font-size: 12px;
    }

    .quota {
        font-size: 9px;
    }

    .card .button.full {
        min-height: 36px;
        font-size: 9px;
    }

    footer {
        padding: 40px 20px;
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   CELULARES PEQUEÑOS
========================================================= */

@media (max-width: 430px) {

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

    .photo {
        height: 350px;
        padding: 14px;
    }

    .card-body {
        padding: 13px;
    }

    .card h3 {
        min-height: 0;
        font-size: 15px;
    }

    .prices > div:first-child b {
        font-size: 23px;
    }

    .prices .cash::before {
        font-size: 10px;
    }

    .prices .cash b {
        font-size: 15px;
    }

    .quota {
        font-size: 11px;
    }

}