/* ===========================================================
   Recubrimientos del Litoral S.A.S.
   Hoja de estilos compartida — home + páginas de línea
   =========================================================== */

:root {
    --navy-900: #071C33;
    --navy-800: #0A2647;
    --navy-700: #103458;
    --navy-600: #14406E;
    --blue-500: #2C88D9;
    --blue-300: #7FB8E8;
    --amber-500: #FFB627;
    --amber-600: #E09A10;

    --paper: #FFFFFF;
    --paper-2: #F4F6F9;
    --paper-3: #EAEFF5;
    --ink: #16202B;
    --ink-soft: #4A5B6C;
    --ink-faint: #8494A4;
    --rule: #DDE4ED;

    --shadow-sm: 0 1px 2px rgba(7, 28, 51, .06), 0 2px 6px rgba(7, 28, 51, .05);
    --shadow-md: 0 4px 10px rgba(7, 28, 51, .07), 0 12px 28px rgba(7, 28, 51, .08);
    --shadow-lg: 0 10px 24px rgba(7, 28, 51, .10), 0 28px 60px rgba(7, 28, 51, .14);

    --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --body: 'IBM Plex Sans', 'Segoe UI', sans-serif;
    --mono: 'IBM Plex Mono', ui-monospace, monospace;

    --shell: 1180px;
    --radius: 4px;
    --radius-lg: 10px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--body);
    font-size: 16.5px;
    line-height: 1.62;
    color: var(--ink);
    background-color: var(--navy-900);
    -webkit-font-smoothing: antialiased;
}

/* Textura de plano técnico sobre el fondo oscuro ------------ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(127, 184, 232, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 184, 232, .07) 1px, transparent 1px);
    background-size: 46px 46px;
}

body > * { position: relative; z-index: 1; }

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

a { color: var(--blue-500); }

/* ============================ TIPOGRAFÍA ============================ */

h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: .005em;
    margin: 0;
    color: var(--navy-800);
}

h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
    font-family: var(--mono);
    font-size: .705rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin: 0 0 .55rem;
}

.eyebrow--light { color: var(--amber-500); }

.lead {
    font-size: 1.06rem;
    color: var(--ink-soft);
    max-width: 68ch;
    margin: 0;
}

/* Regla decorativa bajo los títulos de sección */
.rule-title {
    display: flex;
    align-items: baseline;
    gap: .9rem;
    margin-bottom: 1.4rem;
}

.rule-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--rule), transparent);
}

/* ============================ LAYOUT ============================ */

.shell {
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container {
    max-width: var(--shell);
    margin: 2rem auto 3rem;
    padding: 0 1.5rem;
}

.panel {
    background: var(--paper);
    padding: clamp(1.6rem, 3.4vw, 2.6rem);
    margin-bottom: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--blue-500);
}

.panel--amber { border-top-color: var(--amber-500); }

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.75rem;
}

/* ============================ CABEZOTE ============================ */

.site-head {
    background: var(--paper);
    border-bottom: 3px solid var(--amber-500);
    box-shadow: var(--shadow-sm);
}

.site-head__inner {
    max-width: var(--shell);
    margin: 0 auto;
    padding: 1.05rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: .95rem;
    text-decoration: none;
    color: inherit;
    margin-right: auto;
}

.brand img { width: 120px; }

.brand__name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.42rem;
    line-height: 1;
    color: var(--navy-800);
    text-transform: uppercase;
    letter-spacing: .01em;
}

.brand__tag {
    font-family: var(--mono);
    font-size: .64rem;
    letter-spacing: .19em;
    text-transform: uppercase;
    color: var(--blue-500);
    display: block;
    margin-top: .3rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: .35rem 1.35rem;
    flex-wrap: wrap;
}

.site-nav a {
    font-size: .845rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    color: var(--navy-700);
    padding: .3rem 0;
    border-bottom: 2px solid transparent;
    transition: color .18s ease, border-color .18s ease;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
    color: var(--navy-800);
    border-bottom-color: var(--amber-500);
}

.site-nav .btn-cta {
    background: var(--navy-800);
    color: #fff;
    padding: .58rem 1.15rem;
    border-radius: var(--radius);
    border-bottom: none;
    transition: background .2s ease, transform .2s ease;
}

.site-nav .btn-cta:hover {
    background: var(--blue-500);
    border-bottom-color: transparent;
    color: #fff;
    transform: translateY(-1px);
}

/* ============================ HERO (home) ============================ */

.hero {
    color: #fff;
    padding: clamp(2.6rem, 6vw, 4.4rem) 0 clamp(2.4rem, 5vw, 3.6rem);
    background:
        radial-gradient(1100px 420px at 12% -10%, rgba(44, 136, 217, .34), transparent 60%),
        radial-gradient(760px 380px at 92% 8%, rgba(255, 182, 39, .16), transparent 62%);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.35fr .95fr;
    gap: clamp(1.6rem, 4vw, 3.4rem);
    align-items: end;
}

.hero h1 { color: #fff; max-width: 22ch; }

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

.hero__lead {
    color: #C9D8E7;
    font-size: 1.07rem;
    max-width: 52ch;
    margin: 1.05rem 0 0;
}

.hero__stats {
    display: grid;
    gap: .8rem;
    border-left: 2px solid rgba(255, 182, 39, .45);
    padding-left: 1.35rem;
}

.hero__stat b {
    display: block;
    font-family: var(--display);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.hero__stat span {
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--blue-300);
}

/* ============================ FRANJA DE PROCESO ============================ */

.process-strip {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.8rem;
}

.process-step {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--blue-500);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
}

.process-step__n {
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .16em;
    color: var(--ink-faint);
}

.process-step__t {
    font-family: var(--display);
    font-size: 1.16rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.1;
}

.process-step__d {
    font-size: .855rem;
    color: var(--ink-soft);
    line-height: 1.45;
}

/* ============================ MOSAICOS DE ICONOS ============================ */

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: .8rem;
}

.icon-tile {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem .95rem;
    border-radius: var(--radius);
    background: var(--paper-2);
    border: 1px solid var(--rule);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.icon-tile:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--blue-300);
}

.icon-tile svg {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    stroke: var(--blue-500);
    stroke-width: 1.6;
    fill: none;
}

.icon-tile--risk svg { stroke: var(--amber-600); }

.icon-tile span {
    font-size: .875rem;
    font-weight: 600;
    color: var(--navy-800);
    line-height: 1.25;
}

/* ============================ CARRUSEL DE LÍNEAS ============================ */

.carousel {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--paper-2);
    border: 1px solid var(--rule);
    overflow: hidden;
}

.carousel__viewport { overflow: hidden; }

.carousel__track {
    display: flex;
    transition: transform .5s cubic-bezier(.4, .02, .2, 1);
}

.slide {
    min-width: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
    padding: clamp(1.3rem, 3vw, 2.1rem);
}

.slide__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 1.15rem;
}

.slide__title {
    font-family: var(--display);
    font-size: clamp(1.45rem, 3vw, 1.95rem);
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.05;
    margin: 0;
}

.slide__desc {
    font-size: .93rem;
    color: var(--ink-soft);
    margin: .45rem 0 0;
    max-width: 62ch;
}

.slide__go {
    flex: 0 0 auto;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--mono);
    font-size: .715rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--navy-800);
    background: var(--amber-500);
    padding: .62rem 1.05rem;
    border-radius: var(--radius);
    transition: background .2s ease, transform .2s ease;
}

.slide__go svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform .2s ease;
}

.slide:hover .slide__go { background: var(--amber-600); }
.slide:hover .slide__go svg { transform: translateX(3px); }

.slide__shots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(112px, 148px));
    justify-content: start;
    gap: .7rem;
}

.shot {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: .7rem;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.shot img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.shot__more {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-500);
    line-height: 1;
    text-align: center;
}

.shot__more small {
    display: block;
    font-family: var(--mono);
    font-size: .58rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-top: .3rem;
}

.slide:hover .shot {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-sm);
}

.slide:hover .shot:nth-child(odd) { transform: translateY(-3px); }
.slide:hover .shot:nth-child(even) { transform: translateY(3px); }

.slide:focus-visible {
    outline: 3px solid var(--blue-500);
    outline-offset: -3px;
}

/* Controles */
.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: rgba(10, 38, 71, .82);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s ease;
}

.carousel__btn:hover { background: var(--navy-800); }
.carousel__btn svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 2.2; fill: none; }
.carousel__btn--prev { left: 10px; }
.carousel__btn--next { right: 10px; }

.carousel__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: 1.1rem;
}

.carousel__tab {
    font-family: var(--mono);
    font-size: .69rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    background: var(--paper-2);
    color: var(--ink-soft);
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: .42rem .85rem;
    cursor: pointer;
    transition: all .2s ease;
}

.carousel__tab:hover { border-color: var(--blue-300); color: var(--navy-700); }

.carousel__tab[aria-current='true'] {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: #fff;
}

/* ============================ ÍNDICE DE LÍNEAS ============================ */

.line-index {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
    gap: .8rem;
}

.line-index a {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    text-decoration: none;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--blue-500);
    border-radius: var(--radius);
    padding: .9rem 1rem;
    transition: transform .2s ease, box-shadow .2s ease, border-left-color .2s ease;
}

.line-index a:hover {
    transform: translateX(3px);
    box-shadow: var(--shadow-sm);
    border-left-color: var(--amber-500);
}

.line-index strong {
    font-family: var(--display);
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.12;
}

.line-index span {
    font-family: var(--mono);
    font-size: .66rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

/* ============================ PÁGINA DE LÍNEA ============================ */

.line-hero {
    color: #fff;
    padding: clamp(1.9rem, 4.6vw, 3.3rem) 0 clamp(1.9rem, 4vw, 2.9rem);
    background:
        radial-gradient(900px 380px at 8% -20%, rgba(44, 136, 217, .32), transparent 62%),
        radial-gradient(620px 320px at 96% 0%, rgba(255, 182, 39, .14), transparent 64%);
}

.breadcrumb {
    font-family: var(--mono);
    font-size: .69rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue-300);
    margin: 0 0 1.1rem;
}

.breadcrumb a { color: var(--blue-300); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb span { color: rgba(201, 216, 231, .5); margin: 0 .45rem; }

.line-hero h1 { color: #fff; max-width: 26ch; }

.line-hero__lead {
    color: #C9D8E7;
    font-size: 1.05rem;
    max-width: 66ch;
    margin: 1rem 0 0;
}

.line-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: 1.35rem;
}

.tag {
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #D9E6F3;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(127, 184, 232, .3);
    border-radius: 999px;
    padding: .36rem .8rem;
}

/* Tarjetas de producto ------------------------------------- */

.products {
    display: grid;
    gap: 1.35rem;
}

.product {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: clamp(1.1rem, 2.6vw, 2rem);
    align-items: start;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: clamp(1.1rem, 2.4vw, 1.7rem);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.product:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--blue-300);
}

.product__figure {
    margin: 0;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    padding: 1rem;
    overflow: hidden;
}

.product__figure img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Estado vacío para productos sin fotografía disponible */
.product__figure--pending {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background:
        repeating-linear-gradient(135deg, var(--paper-2) 0 9px, var(--paper-3) 9px 18px);
    border-style: dashed;
}

.product__figure--pending svg {
    width: 40px;
    height: 40px;
    stroke: var(--ink-faint);
    stroke-width: 1.4;
    fill: none;
}

.product__figure--pending figcaption {
    font-family: var(--mono);
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-align: center;
    line-height: 1.4;
}

.product__code {
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--blue-500);
    margin: 0 0 .3rem;
}

.product h3 { margin: 0; font-size: 1.42rem; }

.product__type {
    font-size: .81rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin: .28rem 0 .7rem;
}

.product__desc {
    margin: 0;
    color: var(--ink-soft);
    font-size: .96rem;
}

.product__specs {
    list-style: none;
    margin: .9rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: .3rem .9rem;
}

.product__specs li {
    position: relative;
    padding-left: 1.05rem;
    font-size: .875rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.product__specs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .62em;
    width: 6px;
    height: 6px;
    background: var(--amber-500);
    transform: rotate(45deg);
}

/* Nota técnica ---------------------------------------------- */

.notice {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    background: rgba(44, 136, 217, .07);
    border: 1px solid rgba(44, 136, 217, .22);
    border-left: 3px solid var(--blue-500);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    font-size: .885rem;
    color: var(--ink-soft);
}

.notice svg {
    flex: 0 0 19px;
    width: 19px;
    height: 19px;
    margin-top: .16rem;
    stroke: var(--blue-500);
    stroke-width: 1.7;
    fill: none;
}

/* Navegación entre líneas ----------------------------------- */

.line-jump {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.line-jump a {
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--navy-700);
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: .45rem .95rem;
    transition: all .2s ease;
}

.line-jump a:hover {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: #fff;
}

.line-jump a[aria-current='page'] {
    background: var(--amber-500);
    border-color: var(--amber-500);
    color: var(--navy-800);
}

/* Cierre / llamado a la acción ------------------------------ */

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    flex-wrap: wrap;
    background: var(--navy-800);
    border-radius: var(--radius-lg);
    padding: clamp(1.4rem, 3vw, 2.1rem);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.cta-band h2 { color: #fff; margin: 0; }
.cta-band p { margin: .4rem 0 0; color: #B9CCDF; font-size: .95rem; max-width: 56ch; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--body);
    font-size: .93rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--navy-800);
    background: var(--amber-500);
    border: none;
    border-radius: var(--radius);
    padding: .85rem 1.5rem;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.btn:hover { background: var(--amber-600); transform: translateY(-1px); }

.btn svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ============================ FORMULARIO ============================ */

.form-group { margin-bottom: 1.1rem; }

label {
    display: block;
    margin-bottom: .38rem;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--navy-800);
}

input, select, textarea {
    width: 100%;
    padding: .78rem .85rem;
    font-family: var(--body);
    font-size: .96rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid #C7D2DF;
    border-radius: var(--radius);
    transition: border-color .18s ease, box-shadow .18s ease;
}

input::placeholder, textarea::placeholder { color: var(--ink-faint); }

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(44, 136, 217, .16);
}

input:user-invalid, textarea:user-invalid {
    border-color: #C0392B;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, .12);
}

textarea { resize: vertical; min-height: 110px; }

button[type='submit'] {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* ============================ PIE ============================ */

.site-foot {
    background: var(--navy-900);
    border-top: 1px solid rgba(127, 184, 232, .16);
    color: #A9BED2;
    padding: 2.4rem 0 1.8rem;
    font-size: .89rem;
}

.site-foot__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1.8rem;
}

.site-foot h4 {
    font-family: var(--mono);
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin: 0 0 .7rem;
}

.site-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .32rem; }
.site-foot a { color: #C9D8E7; text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; }

.site-foot__name {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 .45rem;
}

.site-foot__bottom {
    margin-top: 1.9rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(127, 184, 232, .14);
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #7C93AB;
}

/* ============================ CHIPS DE ESPECIFICACIÓN ============================ */

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: .55rem 0 0;
}

.chip {
    font-family: var(--mono);
    font-size: .655rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy-700);
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: .3rem .72rem;
}

/* ============================ FICHA: BLOQUES DE DETALLE ============================ */

/* Aplicaciones y datos técnicos al pie de cada producto */
.product__meta {
    margin: .95rem 0 0;
    padding-top: .8rem;
    border-top: 1px solid var(--rule);
    font-size: .875rem;
    line-height: 1.55;
    color: var(--ink-soft);
}

.product__meta + .product__meta {
    margin-top: .7rem;
}

.product__meta strong {
    display: block;
    font-family: var(--mono);
    font-size: .655rem;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: .28rem;
}

.product .chip-row { margin: .5rem 0 .9rem; }

/* Advertencia de uso: misma estructura que .notice, acento ámbar */
.notice--warn {
    background: rgba(255, 182, 39, .09);
    border-color: rgba(224, 154, 16, .3);
    border-left-color: var(--amber-600);
    margin: .95rem 0 0;
}

.notice--warn svg { stroke: var(--amber-600); }

/* ============================ MOSAICO SIN FOTOGRAFÍA ============================ */

.shot--pending {
    background:
        repeating-linear-gradient(135deg, var(--paper-2) 0 9px, var(--paper-3) 9px 18px);
    border-style: dashed;
    gap: .45rem;
}

.shot--pending svg {
    width: 26px;
    height: 26px;
    stroke: var(--ink-faint);
    stroke-width: 1.4;
    fill: none;
}

.shot--pending span {
    font-family: var(--mono);
    font-size: .565rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-faint);
    text-align: center;
    line-height: 1.4;
}

/* ============================ TABLA DE SELECCIÓN ============================ */

.table-scroll {
    overflow-x: auto;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    -webkit-overflow-scrolling: touch;
}

.match-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: .89rem;
}

.match-table th {
    font-family: var(--mono);
    font-size: .655rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-align: left;
    color: #D9E6F3;
    background: var(--navy-800);
    padding: .8rem .95rem;
    white-space: nowrap;
}

.match-table td {
    padding: .8rem .95rem;
    border-top: 1px solid var(--rule);
    color: var(--ink-soft);
    vertical-align: top;
    line-height: 1.5;
}

.match-table tbody tr:nth-child(even) { background: var(--paper-2); }

.match-table tbody tr:hover { background: rgba(44, 136, 217, .06); }

.match-table td:nth-child(2) {
    font-weight: 600;
    color: var(--navy-800);
    white-space: nowrap;
}

.match-table td:last-child {
    font-family: var(--mono);
    font-size: .765rem;
    letter-spacing: .02em;
    color: var(--navy-700);
}

/* ============================ RESPONSIVE ============================ */

@media (max-width: 900px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__stats {
        grid-template-columns: repeat(3, 1fr);
        border-left: none;
        border-top: 2px solid rgba(255, 182, 39, .45);
        padding: 1.2rem 0 0;
    }
    .site-foot__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    body { font-size: 16px; }
    .brand img { width: 88px; }
    .brand__name { font-size: 1.12rem; }
    .site-nav { gap: .3rem .9rem; }
    .site-nav a { font-size: .8rem; }
    .product { grid-template-columns: 1fr; }
    .product__figure { max-width: 210px; }
    .hero__stats { grid-template-columns: 1fr; gap: .95rem; }
    .site-foot__grid { grid-template-columns: 1fr; }
    .carousel__btn { width: 36px; height: 36px; }
    .carousel__btn--prev { left: 5px; }
    .carousel__btn--next { right: 5px; }
    .slide__go { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
