

/* =========================================================
   AUTORETOQUES — DÓNDE ENCONTRAR CÓDIGO OEM
   Usa las variables globales de main.css
========================================================= */

.at-oem-page {
    background: var(--at-white);
    color: var(--at-text);
}

.at-oem-page mark {
    padding: 0;
    background: transparent;
    color: var(--at-yellow);
}

.at-oem-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--at-yellow);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .12em;
}


/* HERO */

.at-oem-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--at-navy-900);
    color: var(--at-white);
}

.at-oem-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(13,24,42,.99) 0%,
            rgba(13,24,42,.94) 42%,
            rgba(13,24,42,.62) 70%,
            rgba(13,24,42,.48) 100%
        ),
        url("https://autoretoques.com/wp-content/uploads/2026/08/autoretoques9.webp");
    background-size: cover;
    background-position: center right;
}

.at-oem-hero__grid {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
    gap: 80px;
    align-items: center;
}

.at-oem-hero__content {
    max-width: 760px;
    padding: 60px 0;
}

.at-oem-breadcrumb {
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
}

.at-oem-breadcrumb a {
    color: rgba(255,255,255,.78);
}

.at-oem-hero h1 {
    max-width: 760px;
    margin: 0 0 20px;
    color: var(--at-white);
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.045em;
}

.at-oem-hero__content > p {
    max-width: 650px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.65;
}


/* BOTONES */

.at-oem-btn {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .025em;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background-color .22s ease;
}

.at-oem-btn--primary {
    background: var(--at-yellow);
    color: var(--at-navy-900);
    box-shadow: 0 10px 28px rgba(247,181,0,.15);
}

.at-oem-btn--primary:hover {
    color: var(--at-navy-900) !important;
    background: #ffc328;
    transform: translateY(-2px);
}


/* ETIQUETA HERO */

.at-oem-hero__visual {
    display: flex;
    justify-content: center;
}

.at-oem-label-demo {
    position: relative;
    width: min(100%, 430px);
    padding: 30px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 18px;
    background: rgba(5,10,17,.84);
    box-shadow: 0 30px 70px rgba(0,0,0,.34);
    backdrop-filter: blur(10px);
}

.at-oem-label-demo__brand {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,.62);
    font-size: 11px;
    letter-spacing: .13em;
}

.at-oem-label-demo > strong {
    display: block;
    margin-bottom: 24px;
    color: #fff;
    font-size: 18px;
    letter-spacing: .02em;
}

.at-oem-label-demo__row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.65);
    font-size: 12px;
}

.at-oem-label-demo__row b {
    color: #fff;
}

.at-oem-label-demo__paint {
    position: relative;
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid var(--at-yellow);
    border-radius: 8px;
    background: rgba(247,181,0,.08);
}

.at-oem-label-demo__paint small {
    display: block;
    margin-bottom: 5px;
    color: var(--at-yellow);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.at-oem-label-demo__paint strong {
    color: #fff;
    font-size: 30px;
}

.at-oem-label-demo__pointer {
    position: absolute;
    top: 65%;
    right: -115px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--at-yellow);
    font-size: 11px;
    font-weight: 600;
}

.at-oem-label-demo__pointer span {
    width: 68px;
    height: 1px;
    background: var(--at-yellow);
}


/* HEADINGS */

.at-oem-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.at-oem-heading > span {
    display: block;
    margin-bottom: 10px;
    color: var(--at-yellow);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.at-oem-heading h2,
.at-oem-map__copy h2,
.at-oem-recognise__content h2,
.at-oem-cta__copy h2 {
    margin: 0;
    color: var(--at-navy-900);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.at-oem-heading p {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--at-muted);
    font-size: 15px;
    line-height: 1.65;
}


/* UBICACIONES */

.at-oem-intro {
    padding: 86px 0 92px;
}

.at-oem-locations {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.at-oem-location-card {
    position: relative;
    min-height: 300px;
    padding: 28px;
    border: 1px solid var(--at-line);
    border-radius: var(--at-radius);
    background: var(--at-white);
    box-shadow: 0 12px 35px rgba(13,24,42,.045);
    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.at-oem-location-card:hover {
    transform: translateY(-4px);
    border-color: rgba(247,181,0,.58);
    box-shadow: 0 20px 45px rgba(13,24,42,.08);
}

.at-oem-location-card__number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #c6cad2;
    font-size: 12px;
    font-weight: 600;
}

.at-oem-location-card__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(247,181,0,.11);
    color: var(--at-yellow);
}

.at-oem-location-card__icon svg {
    width: 27px;
    height: 27px;
}

.at-oem-location-card h3 {
    margin: 0 0 10px;
    color: var(--at-navy-900);
    font-size: 18px;
    font-weight: 600;
}

.at-oem-location-card p {
    margin: 0;
    color: var(--at-muted);
    font-size: 13px;
    line-height: 1.65;
}

.at-oem-location-card__tag {
    position: absolute;
    left: 28px;
    bottom: 24px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--at-soft);
    color: var(--at-muted);
    font-size: 10px;
    font-weight: 600;
}


/* MAPA */

.at-oem-map-section {
    padding: 90px 0;
    background: var(--at-soft);
}

.at-oem-map {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.at-oem-map__copy > p {
    max-width: 580px;
    margin: 20px 0 0;
    color: var(--at-muted);
    font-size: 15px;
    line-height: 1.7;
}

.at-oem-map__steps {
    margin-top: 32px;
    display: grid;
    gap: 16px;
}

.at-oem-map__steps > div {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    align-items: start;
}

.at-oem-map__steps > div > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--at-yellow);
    color: var(--at-navy-900);
    font-size: 12px;
    font-weight: 700;
}

.at-oem-map__steps p {
    margin: 0;
    color: var(--at-muted);
    font-size: 13px;
    line-height: 1.5;
}

.at-oem-map__steps strong {
    display: block;
    margin-bottom: 3px;
    color: var(--at-navy-900);
    font-size: 14px;
}

.at-oem-car-map {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--at-line);
    border-radius: var(--at-radius-lg);
    background: var(--at-white);
    overflow: hidden;
}

.at-oem-car-svg {
    width: 88%;
    color: #bec5ce;
}

.at-oem-hotspot {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
}

.at-oem-hotspot span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--at-yellow);
    color: var(--at-navy-900);
    box-shadow: 0 8px 22px rgba(13,24,42,.18);
    font-size: 11px;
    font-weight: 700;
}

.at-oem-hotspot p {
    margin: 0;
    color: var(--at-navy-900);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

.at-oem-hotspot--door {
    left: 40%;
    top: 38%;
}

.at-oem-hotspot--boot {
    right: 4%;
    top: 48%;
}

.at-oem-hotspot--engine {
    left: 7%;
    top: 52%;
}


/* RECONOCER */

.at-oem-recognise {
    padding: 100px 0;
    background: var(--at-white);
}

.at-oem-recognise__grid {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 90px;
    align-items: center;
}

.at-oem-recognise__content > p {
    max-width: 650px;
    margin: 20px 0 0;
    color: var(--at-muted);
    font-size: 15px;
    line-height: 1.7;
}

.at-oem-code-examples {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.at-oem-code-examples span {
    padding: 9px 13px;
    border: 1px solid var(--at-line);
    border-radius: 8px;
    background: var(--at-soft);
    color: var(--at-navy-900);
    font-size: 12px;
    font-weight: 700;
}

.at-oem-warning {
    max-width: 640px;
    margin-top: 26px;
    padding: 17px 18px;
    display: flex;
    gap: 12px;
    border: 1px solid #eadcae;
    border-radius: 12px;
    background: #fffaf0;
}

.at-oem-warning > span {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--at-yellow);
    color: var(--at-navy-900);
    font-size: 11px;
    font-weight: 800;
}

.at-oem-warning p {
    margin: 0;
    color: #675d41;
    font-size: 12px;
    line-height: 1.55;
}


/* PEGATINA */

.at-oem-sticker {
    padding: 32px;
    border: 1px solid #313b48;
    border-radius: 18px;
    background: #111820;
    color: #fff;
    box-shadow: 0 25px 65px rgba(13,24,42,.18);
}

.at-oem-sticker small {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,.50);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.at-oem-sticker__top {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.at-oem-sticker__top span {
    display: block;
    color: rgba(255,255,255,.48);
    font-size: 10px;
}

.at-oem-sticker__top strong {
    font-size: 21px;
}

.at-oem-sticker__line {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.at-oem-sticker__line strong {
    font-size: clamp(15px, 2vw, 21px);
}

.at-oem-sticker__split {
    padding: 18px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.at-oem-sticker__split strong {
    font-size: 16px;
}

.at-oem-sticker__paint {
    position: relative;
    margin-top: 5px;
    padding: 18px;
    border: 2px solid var(--at-yellow);
    border-radius: 10px;
    background: rgba(247,181,0,.07);
}

.at-oem-sticker__paint strong {
    display: block;
    color: #fff;
    font-size: 36px;
}

.at-oem-sticker__paint span {
    position: absolute;
    right: 16px;
    bottom: 20px;
    color: var(--at-yellow);
    font-size: 11px;
    font-weight: 700;
}

.at-oem-sticker__bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255,255,255,.35);
    font-size: 9px;
}


/* NOTA */

.at-oem-note {
    padding: 0 0 70px;
}

.at-oem-note__inner {
    padding: 24px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid var(--at-line);
    border-radius: var(--at-radius);
    background: var(--at-soft);
}

.at-oem-note__icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--at-yellow);
    border-radius: 50%;
    color: var(--at-yellow);
    font-weight: 700;
}

.at-oem-note strong {
    color: var(--at-navy-900);
    font-size: 14px;
}

.at-oem-note p {
    max-width: 900px;
    margin: 5px 0 0;
    color: var(--at-muted);
    font-size: 12px;
    line-height: 1.6;
}


/* CTA */

.at-oem-cta {
    padding: 0 0 90px;
}

.at-oem-cta__inner {
    min-height: 190px;
    padding: 36px 44px;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    border: 1px solid var(--at-line);
    border-radius: var(--at-radius-lg);
    background:
        radial-gradient(circle at 88% 50%, rgba(247,181,0,.11), transparent 25%),
        var(--at-white);
    box-shadow: 0 18px 50px rgba(13,24,42,.06);
}

.at-oem-cta__icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(247,181,0,.45);
    border-radius: 50%;
    color: var(--at-yellow);
}

.at-oem-cta__icon svg {
    width: 30px;
    height: 30px;
}

.at-oem-cta__copy > span {
    display: block;
    margin-bottom: 5px;
    color: var(--at-muted);
    font-size: 12px;
    font-weight: 600;
}

.at-oem-cta__copy h2 {
    font-size: clamp(26px, 3vw, 38px);
}

.at-oem-cta__copy p {
    max-width: 650px;
    margin: 9px 0 0;
    color: var(--at-muted);
    font-size: 13px;
    line-height: 1.6;
}


/* TABLET */

@media (max-width: 1100px) {

    .at-oem-hero__grid {
        grid-template-columns: 1fr .8fr;
        gap: 40px;
    }

    .at-oem-label-demo__pointer {
        display: none;
    }

    .at-oem-locations {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .at-oem-map,
    .at-oem-recognise__grid {
        gap: 45px;
    }

}


/* MÓVIL */

@media (max-width: 767px) {

    .at-oem-hero {
        min-height: auto;
    }

    .at-oem-hero__bg {
        background:
            linear-gradient(
                180deg,
                rgba(13,24,42,.98) 0%,
                rgba(13,24,42,.93) 65%,
                rgba(13,24,42,.84) 100%
            ),
            url("https://autoretoques.com/wp-content/uploads/2026/08/autoretoques1.webp");
        background-size: cover;
        background-position: 70% center;
    }

    .at-oem-hero__grid {
        min-height: auto;
        padding: 50px 0;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .at-oem-hero__content {
        padding: 0;
    }

    .at-oem-breadcrumb {
        margin-bottom: 28px;
    }

    .at-oem-hero h1 {
        font-size: 42px;
    }

    .at-oem-hero__visual {
        justify-content: flex-start;
    }

    .at-oem-label-demo {
        width: 100%;
    }

    .at-oem-intro {
        padding: 64px 0 68px;
    }

    .at-oem-heading {
        margin-bottom: 32px;
    }

    .at-oem-locations {
        grid-template-columns: 1fr;
    }

    .at-oem-location-card {
        min-height: 250px;
    }

    .at-oem-map-section,
    .at-oem-recognise {
        padding: 68px 0;
    }

    .at-oem-map,
    .at-oem-recognise__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .at-oem-car-map {
        min-height: 310px;
    }

    .at-oem-hotspot--door {
        left: 38%;
        top: 38%;
    }

    .at-oem-hotspot--engine {
        left: 3%;
    }

    .at-oem-hotspot--boot {
        right: 1%;
    }

    .at-oem-sticker {
        padding: 24px;
    }

    .at-oem-note {
        padding-bottom: 50px;
    }

    .at-oem-cta {
        padding-bottom: 65px;
    }

    .at-oem-cta__inner {
        padding: 28px 22px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .at-oem-cta__icon {
        width: 54px;
        height: 54px;
    }

    .at-oem-cta__inner .at-oem-btn {
        width: 100%;
    }

}
