    :root {
      --bg: #06090c;
      --bg-2: #090d11;
      --surface: #0e1418;
      --surface-2: #131b21;
      --red: #e51f28;
      --red-2: #ff3b43;
      --red-dark: #9c0c13;
      --white: #ffffff;
      --muted: #9aa6ae;
      --muted-2: #c3ccd2;
      --line: rgba(255, 255, 255, .10);
      --line-2: rgba(255, 255, 255, .16);
      --shadow: 0 26px 70px rgba(0, 0, 0, .45);
      --glow: 0 0 0 4px rgba(229, 31, 40, .10);
      --max: 1200px;
      --radius: 14px;
      --radius-sm: 10px;
      --disp: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
      --body: "Barlow", Arial, Helvetica, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--white);
      font-family: var(--body);
      font-size: 16px;
      line-height: 1.55;
      background:
        radial-gradient(1200px 600px at 82% -8%, rgba(229, 31, 40, .16), transparent 60%),
        radial-gradient(900px 500px at -5% 12%, rgba(229, 31, 40, .07), transparent 55%),
        linear-gradient(180deg, #0a0f13 0%, var(--bg) 42%, #04070a 100%);
      background-attachment: fixed;
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button, input, select, textarea { font: inherit; }
    h1, h2, h3, h4 { font-family: var(--disp); font-weight: 800; line-height: 1.02; text-transform: uppercase; margin: 0; letter-spacing: .3px; }

    .wrap { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }
    .red { color: var(--red); }
    .section { padding: clamp(64px, 9vw, 118px) 0; position: relative; }

    /* ---------- Section heading ---------- */
    .sec-head { max-width: 760px; margin: 0 auto clamp(38px, 5vw, 62px); text-align: center; }
    .eyebrow {
      display: inline-flex; align-items: center; gap: 9px;
      font-family: var(--disp); font-weight: 800; font-size: 14px;
      text-transform: uppercase; letter-spacing: 2.4px; color: var(--red-2);
      margin: 0 0 14px;
    }
    .eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); }
    .eyebrow.center::after { content: ""; width: 26px; height: 2px; background: var(--red); }
    .sec-head h2 { font-size: clamp(32px, 5.2vw, 56px); }
    .sec-head p { color: var(--muted-2); font-size: 17px; margin: 16px auto 0; }

    /* ---------- Buttons ---------- */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      min-height: 52px; padding: 0 26px; border-radius: 999px;
      font-family: var(--disp); font-weight: 800; font-size: 16px;
      text-transform: uppercase; letter-spacing: .6px; cursor: pointer;
      border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    }
    .btn svg { width: 19px; height: 19px; }
    .btn-primary { background: linear-gradient(180deg, var(--red-2), var(--red-dark)); color: #fff; box-shadow: 0 12px 30px rgba(229, 31, 40, .32); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(229, 31, 40, .42); }
    .btn-wa { background: linear-gradient(180deg, #2ee06a, #13a94c); color: #04140a; box-shadow: 0 12px 30px rgba(37, 211, 102, .28); }
    .btn-wa:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(37, 211, 102, .4); }
    .btn-ghost { background: rgba(255, 255, 255, .04); color: #fff; border-color: var(--line-2); }
    .btn-ghost:hover { border-color: var(--red); background: rgba(229, 31, 40, .10); transform: translateY(-2px); }

    /* ---------- Topbar ---------- */
    .topbar {
      position: sticky; top: 0; z-index: 90;
      background: rgba(6, 9, 12, .72);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(16px);
      transition: background .25s ease, border-color .25s ease;
    }
    .topbar.scrolled { background: rgba(6, 9, 12, .94); }
    .nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
    .logo { width: 172px; height: auto; }
    .menu { display: flex; align-items: center; gap: 28px; }
    .menu a {
      position: relative; font-family: var(--disp); font-weight: 700; font-size: 16px;
      text-transform: uppercase; letter-spacing: .5px; opacity: .82;
      padding: 6px 0; transition: opacity .18s ease, color .18s ease;
    }
    .menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px; background: var(--red); transition: right .22s ease; }
    .menu a:hover, .menu a.active { opacity: 1; color: #fff; }
    .menu a:hover::after, .menu a.active::after { right: 0; }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .nav-phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--disp); font-weight: 800; font-size: 17px; letter-spacing: .4px; white-space: nowrap; }
    .nav-phone svg { width: 18px; height: 18px; color: var(--red-2); }
    .hamb { display: none; width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .04); color: #fff; font-size: 22px; cursor: pointer; }

    /* ---------- Hero ---------- */
    .hero { position: relative; overflow: hidden; padding: clamp(70px, 10vw, 128px) 0 clamp(56px, 7vw, 96px); }
    .hero::before {
      content: ""; position: absolute; inset: 0; z-index: 0;
      background:
        linear-gradient(90deg, rgba(6, 9, 12, .96) 8%, rgba(6, 9, 12, .82) 42%, rgba(6, 9, 12, .55) 78%, rgba(6, 9, 12, .78) 100%),
        linear-gradient(180deg, rgba(6, 9, 12, .30), rgba(6, 9, 12, .92)),
        url("../taller.jpg") center 34% / cover no-repeat;
    }
    .hero-inner { position: relative; z-index: 1; max-width: 720px; }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
      padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line-2);
      background: rgba(229, 31, 40, .08); font-family: var(--disp); font-weight: 700;
      font-size: 14px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--muted-2);
    }
    .hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #2ee06a; box-shadow: 0 0 0 4px rgba(46, 224, 106, .18); }
    .hero h1 { font-size: clamp(42px, 7.4vw, 82px); font-weight: 900; }
    .hero h1 span { color: var(--red-2); display: block; }
    .hero p { color: var(--muted-2); font-size: clamp(17px, 2.2vw, 20px); margin: 22px 0 0; max-width: 560px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
    .hero-trust { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
    .hero-trust div { display: flex; align-items: center; gap: 10px; color: var(--muted-2); font-size: 15px; font-weight: 500; }
    .hero-trust svg { width: 20px; height: 20px; color: var(--red-2); flex: none; }

    /* ---------- Marquee strip ---------- */
    .strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .02); overflow: hidden; }
    .strip-track { display: flex; gap: 46px; width: max-content; padding: 16px 0; animation: slide 34s linear infinite; }
    .strip-track span { font-family: var(--disp); font-weight: 800; font-size: 18px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); display: inline-flex; align-items: center; gap: 46px; }
    .strip-track span::after { content: "◆"; color: var(--red); font-size: 11px; }
    @keyframes slide { to { transform: translateX(-50%); } }

    /* ---------- Services (4 pillars) ---------- */
    .pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .pillar {
      position: relative; padding: 34px 32px; border-radius: var(--radius);
      background: linear-gradient(180deg, var(--surface), var(--bg-2));
      border: 1px solid var(--line); overflow: hidden;
      transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .pillar::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--red-2), var(--red-dark)); opacity: .0; transition: opacity .2s ease; }
    .pillar:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow); }
    .pillar:hover::before { opacity: 1; }
    .pillar-ico { width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; background: rgba(229, 31, 40, .12); border: 1px solid rgba(229, 31, 40, .30); margin-bottom: 20px; }
    .pillar-ico svg { width: 30px; height: 30px; color: var(--red-2); stroke-width: 1.7; }
    .pillar h3 { font-size: 27px; }
    .pillar > p { color: var(--muted-2); font-size: 15.5px; margin: 12px 0 20px; }
    .tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag { font-family: var(--disp); font-weight: 700; font-size: 14px; letter-spacing: .4px; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; background: rgba(255, 255, 255, .05); border: 1px solid var(--line); color: var(--muted-2); }
    .tag.hot { background: rgba(229, 31, 40, .13); border-color: rgba(229, 31, 40, .34); color: #ffd7d9; }

    /* ---------- Catálogo (vendemos / importamos) ---------- */
    .catalog { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .cat-card { position: relative; display: flex; flex-direction: column; padding: 32px 30px; border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line); overflow: hidden; }
    .cat-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--accent, var(--red)); }
    .cat-card.local { --accent: linear-gradient(90deg, #2ee06a, #13a94c); }
    .cat-card.import { --accent: linear-gradient(90deg, var(--red-2), var(--red-dark)); }
    .cat-head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
    .cat-head .cat-ico { width: 52px; height: 52px; min-width: 52px; border-radius: 13px; display: grid; place-items: center; }
    .cat-card.local .cat-ico { background: rgba(37, 211, 102, .12); border: 1px solid rgba(37, 211, 102, .3); }
    .cat-card.import .cat-ico { background: rgba(229, 31, 40, .12); border: 1px solid rgba(229, 31, 40, .3); }
    .cat-card.local .cat-ico svg { color: #34e07a; }
    .cat-card.import .cat-ico svg { color: var(--red-2); }
    .cat-ico svg { width: 27px; height: 27px; stroke-width: 1.7; }
    .cat-head h3 { font-size: 25px; }
    .cat-badge { align-self: flex-start; margin: 2px 0 20px; display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: 999px; font-family: var(--disp); font-weight: 700; font-size: 13px; letter-spacing: .6px; text-transform: uppercase; }
    .cat-card.local .cat-badge { background: rgba(37, 211, 102, .12); border: 1px solid rgba(37, 211, 102, .32); color: #a7f3c6; }
    .cat-card.import .cat-badge { background: rgba(229, 31, 40, .12); border: 1px solid rgba(229, 31, 40, .32); color: #ffd7d9; }
    .cat-badge .dot { width: 8px; height: 8px; border-radius: 50%; }
    .cat-card.local .cat-badge .dot { background: #2ee06a; box-shadow: 0 0 0 3px rgba(46, 224, 106, .2); }
    .cat-card.import .cat-badge .dot { background: var(--red-2); box-shadow: 0 0 0 3px rgba(229, 31, 40, .2); }
    .cat-list { list-style: none; margin: 0 0 8px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
    .cat-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted-2); font-size: 15px; }
    .cat-list svg { width: 18px; height: 18px; margin-top: 2px; flex: none; }
    .cat-card.local .cat-list svg { color: #34e07a; }
    .cat-card.import .cat-list svg { color: var(--red-2); }
    .cat-note { margin: 18px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13.5px; }
    /* Mini proceso importación */
    .cat-steps { display: grid; gap: 12px; margin: 18px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
    .cat-step { display: flex; gap: 14px; align-items: flex-start; }
    .cat-step .s-n { font-family: var(--disp); font-weight: 900; font-size: 15px; color: var(--red-2); width: 30px; height: 30px; min-width: 30px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(229, 31, 40, .4); background: rgba(229, 31, 40, .08); }
    .cat-step b { font-family: var(--disp); font-size: 16px; text-transform: uppercase; letter-spacing: .4px; }
    .cat-step span { display: block; color: var(--muted); font-size: 13.5px; }
    .catalog-cta { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; text-align: center; }
    .catalog-cta p { margin: 0; color: var(--muted-2); font-size: 16px; font-weight: 600; }
    @media (max-width: 900px) { .catalog { grid-template-columns: 1fr; } }
    @media (max-width: 460px) { .cat-list { grid-template-columns: 1fr; } }

    /* ---------- Bancos de prueba (feature) ---------- */
    .bench { position: relative; overflow: hidden; }
    .bench-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
    .bench-list { display: grid; gap: 14px; margin: 28px 0 0; }
    .bench-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, .03); border: 1px solid var(--line); transition: border-color .2s ease, background .2s ease; }
    .bench-item[id] { scroll-margin-top: 112px; }
    .bench-item:hover { border-color: rgba(229, 31, 40, .35); background: rgba(229, 31, 40, .06); }
    .bench-item .n { font-family: var(--disp); font-weight: 900; font-size: 22px; color: var(--red-2); min-width: 34px; }
    .bench-item h4 { font-size: 20px; }
    .bench-item p { margin: 4px 0 0; color: var(--muted); font-size: 14.5px; }
    .bench-visual { position: relative; }
    .bench-showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .bench-shot {
      position: relative; overflow: hidden; min-height: 220px;
      border-radius: var(--radius); border: 1px solid var(--line);
      background: var(--surface-2); box-shadow: var(--shadow);
    }
    .bench-shot img {
      width: 100%; height: 100%; min-height: inherit; object-fit: cover;
      filter: saturate(1.04) contrast(1.05) brightness(.92);
      transition: transform .3s ease;
    }
    .bench-shot:hover img { transform: scale(1.04); }
    .bench-shot.reference { background: #fff; }
    .bench-shot.reference img { object-fit: contain; padding: 12px; background: #fff; filter: contrast(1.04) saturate(1.02); }
    .bench-shot .cap {
      position: absolute; left: 12px; bottom: 12px; z-index: 1;
      padding: 6px 10px; border-radius: 8px; background: rgba(6, 9, 12, .78);
      border: 1px solid var(--line-2); backdrop-filter: blur(8px);
      font-family: var(--disp); font-weight: 800; font-size: 12.5px;
      text-transform: uppercase; letter-spacing: .5px;
    }

    .bank-modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .bank-module {
      position: relative; overflow: hidden; border-radius: var(--radius);
      border: 1px solid var(--line); background: linear-gradient(180deg, var(--surface), var(--bg-2));
      box-shadow: var(--shadow); scroll-margin-top: 112px;
    }
    .bank-module::before {
      content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
      background: linear-gradient(90deg, var(--red-2), var(--red-dark));
      z-index: 2;
    }
    .bank-photo {
      position: relative; height: 260px; overflow: hidden; background: var(--surface-2);
      border-bottom: 1px solid var(--line);
    }
    .bank-photo img {
      width: 100%; height: 100%; object-fit: cover;
      filter: saturate(1.04) contrast(1.05) brightness(.92);
    }
    .bank-photo.reference { background: #fff; }
    .bank-photo.reference img { object-fit: contain; padding: 16px; background: #fff; filter: contrast(1.04) saturate(1.02); }
    .bank-photo::after {
      content: ""; position: absolute; inset: auto 0 0 0; height: 46%;
      background: linear-gradient(180deg, transparent, rgba(6, 9, 12, .72));
      pointer-events: none;
    }
    .bank-label {
      position: absolute; left: 16px; bottom: 14px; z-index: 1;
      padding: 7px 11px; border-radius: 8px; background: rgba(6, 9, 12, .78);
      border: 1px solid var(--line-2); backdrop-filter: blur(8px);
      font-family: var(--disp); font-weight: 800; font-size: 13px;
      text-transform: uppercase; letter-spacing: .6px;
    }
    .bank-body { padding: 28px; }
    .bank-body h3 { font-size: 28px; }
    .bank-body p { color: var(--muted-2); font-size: 15.5px; margin: 12px 0 18px; }
    .bank-points { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 9px; }
    .bank-points li { display: flex; gap: 9px; align-items: flex-start; color: var(--muted-2); font-size: 14.5px; font-weight: 600; }
    .bank-points li::before {
      content: ""; width: 7px; height: 7px; min-width: 7px; margin-top: 8px;
      border-radius: 50%; background: var(--red-2); box-shadow: 0 0 0 3px rgba(229, 31, 40, .16);
    }
    .bank-body .btn { width: 100%; }

    /* ---------- Fotos reales ---------- */
    .photo-card {
      position: relative; overflow: hidden; min-height: 460px;
      border-radius: var(--radius); border: 1px solid var(--line);
      background: var(--surface-2); box-shadow: var(--shadow);
    }
    .photo-card img {
      width: 100%; height: 100%; min-height: inherit; object-fit: cover;
      filter: saturate(1.04) contrast(1.06) brightness(.92);
      transform: scale(1.01);
    }
    .photo-card::after {
      content: ""; position: absolute; inset: 0;
      background:
        linear-gradient(180deg, rgba(6, 9, 12, .04), rgba(6, 9, 12, .45)),
        linear-gradient(90deg, rgba(229, 31, 40, .16), transparent 46%);
      pointer-events: none;
    }
    .photo-card .cap {
      position: absolute; left: 18px; bottom: 18px; z-index: 1;
      padding: 8px 12px; border-radius: 8px; background: rgba(6, 9, 12, .78);
      border: 1px solid var(--line-2); backdrop-filter: blur(8px);
      font-family: var(--disp); font-weight: 800; font-size: 13px;
      text-transform: uppercase; letter-spacing: .6px;
    }
    .photo-card.portrait img { object-position: center 45%; }
    .photo-card.wide img { object-position: center center; }
    .photo-card.reference { background: #fff; }
    .photo-card.reference img { object-fit: contain; padding: 18px; background: #fff; filter: contrast(1.04) saturate(1.02); }

    /* ---------- Placeholder image ---------- */
    .ph {
      position: relative; display: grid; place-items: center; text-align: center;
      border-radius: var(--radius); border: 1.5px dashed rgba(255, 255, 255, .22);
      background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .015) 0 14px, transparent 14px 28px),
        linear-gradient(180deg, var(--surface-2), var(--bg-2));
      color: var(--muted); overflow: hidden;
    }
    .ph svg { width: 40px; height: 40px; color: rgba(229, 31, 40, .7); margin-bottom: 12px; }
    .ph b { font-family: var(--disp); font-size: 16px; text-transform: uppercase; letter-spacing: .8px; color: #cfd6db; }
    .ph small { display: block; margin-top: 5px; font-size: 12.5px; color: var(--muted); max-width: 240px; }
    .ph.tall { min-height: 460px; }
    .ph.card { min-height: 240px; }

    /* ---------- Sectores (B2B) ---------- */
    .sectors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .sector { padding: 30px 28px; border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--bg-2)); border: 1px solid var(--line); }
    .sector .pillar-ico { margin-bottom: 18px; }
    .sector h3 { font-size: 23px; }
    .sector p { color: var(--muted-2); font-size: 15px; margin: 10px 0 0; }

    /* ---------- Stats ---------- */
    .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
    .stat { text-align: center; padding: 30px 18px; border-radius: var(--radius); background: rgba(255, 255, 255, .025); border: 1px solid var(--line); }
    .stat strong { display: block; font-family: var(--disp); font-weight: 900; font-size: clamp(30px, 5vw, 48px); line-height: 1; color: #fff; text-transform: uppercase; }
    .stat strong .u { color: var(--red-2); }
    .stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; }

    /* ---------- Nosotros ---------- */
    .about { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
    .about-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
    .about-media img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
    .about-media .badge { position: absolute; left: 20px; bottom: 20px; padding: 12px 18px; border-radius: 12px; background: rgba(6, 9, 12, .82); border: 1px solid var(--line-2); backdrop-filter: blur(6px); }
    .about-media .badge strong { font-family: var(--disp); font-size: 26px; color: var(--red-2); }
    .about-media .badge span { display: block; font-size: 12.5px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .6px; }
    .about h2 { font-size: clamp(32px, 4.6vw, 50px); margin-bottom: 18px; }
    .about p { color: var(--muted-2); font-size: 16.5px; margin: 0 0 16px; }
    .about-points { display: grid; gap: 12px; margin: 24px 0 30px; }
    .about-points li { list-style: none; display: flex; gap: 12px; align-items: flex-start; color: var(--muted-2); font-size: 15.5px; }
    .about-points svg { width: 22px; height: 22px; color: var(--red-2); flex: none; }

    /* ---------- Galería ---------- */
    .gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 16px; }
    .gallery > * { border-radius: var(--radius); }
    .g-item { position: relative; overflow: hidden; border: 1px solid var(--line); }
    .g-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.04) contrast(1.05) brightness(.92); transition: transform .3s ease; }
    .g-item:hover img { transform: scale(1.06); }
    .g-item .cap { position: absolute; left: 14px; bottom: 12px; padding: 6px 11px; border-radius: 8px; background: rgba(6, 9, 12, .74); font-family: var(--disp); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }
    .g-wide { grid-column: span 2; grid-row: span 2; }
    .g-tallph { grid-row: span 2; }
    .gallery-cta { text-align: center; margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ---------- Home comercial ---------- */
    .home-gallery { margin-top: 10px; }
    .home-offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .offer-card {
      display: flex; flex-direction: column; min-height: 100%;
      padding: 30px 28px; border-radius: var(--radius);
      background: linear-gradient(180deg, var(--surface), var(--bg-2));
      border: 1px solid var(--line); overflow: hidden; position: relative;
    }
    .offer-card::before {
      content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
      background: linear-gradient(90deg, var(--red-2), var(--red-dark));
    }
    .offer-card h3 { font-size: 25px; }
    .offer-card p { color: var(--muted-2); font-size: 15.5px; margin: 12px 0 18px; }
    .offer-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 9px; }
    .offer-list li {
      display: flex; gap: 9px; align-items: flex-start; color: var(--muted-2);
      font-size: 14.5px; font-weight: 600;
    }
    .offer-list li::before {
      content: ""; width: 7px; height: 7px; min-width: 7px; margin-top: 8px;
      border-radius: 50%; background: var(--red-2); box-shadow: 0 0 0 3px rgba(229, 31, 40, .16);
    }
    .offer-card .btn { margin-top: auto; width: 100%; }

    /* ---------- Contacto ---------- */
    .contact { border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(229, 31, 40, .05), transparent 40%); }
    .contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
    .contact-info h2 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 16px; }
    .contact-info > p { color: var(--muted-2); font-size: 16.5px; margin: 0 0 26px; }
    .ci-list { display: grid; gap: 14px; margin: 0 0 26px; padding: 0; }
    .ci-list li { list-style: none; display: flex; gap: 14px; align-items: center; }
    .ci-list .ci-ico { width: 46px; height: 46px; min-width: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(229, 31, 40, .12); border: 1px solid rgba(229, 31, 40, .28); }
    .ci-list .ci-ico svg { width: 21px; height: 21px; color: var(--red-2); }
    .ci-list b { font-family: var(--disp); font-size: 13px; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); font-weight: 700; }
    .ci-list span { display: block; font-size: 16px; color: #fff; font-weight: 600; }
    .map-card {
      display: flex; align-items: center; gap: 16px; padding: 20px 22px;
      border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; position: relative;
      background:
        linear-gradient(180deg, rgba(229, 31, 40, .06), transparent),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 30px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 30px),
        linear-gradient(180deg, var(--surface-2), var(--bg-2));
      transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }
    .map-card:hover { border-color: rgba(229, 31, 40, .4); transform: translateY(-2px); box-shadow: var(--shadow); }
    .map-card-pin { width: 48px; height: 48px; min-width: 48px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(180deg, var(--red-2), var(--red-dark)); box-shadow: 0 8px 20px rgba(229, 31, 40, .35); }
    .map-card-pin svg { width: 24px; height: 24px; color: #fff; }
    .map-card-text { flex: 1; }
    .map-card-text b { font-family: var(--disp); font-size: 14px; text-transform: uppercase; letter-spacing: .8px; color: #fff; }
    .map-card-text span { display: block; color: var(--muted-2); font-size: 15px; }
    .map-card-arrow { width: 22px; height: 22px; color: var(--muted); transition: color .2s ease, transform .2s ease; }
    .map-card:hover .map-card-arrow { color: var(--red-2); transform: translate(2px, -2px); }

    .form-card { padding: clamp(26px, 3vw, 38px); border-radius: var(--radius); background: rgba(10, 14, 18, .72); border: 1px solid var(--line-2); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
    .form-status { display: none; margin: 0 0 20px; padding: 14px 16px; border-radius: 10px; font-weight: 600; }
    .form-status.ok { display: block; color: #d6ffe6; background: rgba(25, 135, 84, .22); border: 1px solid rgba(46, 224, 106, .5); }
    .form-status.error { display: block; color: #ffdadd; background: rgba(229, 31, 40, .18); border: 1px solid rgba(229, 31, 40, .5); }
    .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }
    .field label { font-family: var(--disp); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--muted-2); }
    .field input, .field select, .field textarea {
      width: 100%; min-height: 50px; padding: 13px 15px; border-radius: 10px;
      color: #fff; background: rgba(255, 255, 255, .05); border: 1px solid var(--line-2); outline: none;
      transition: border-color .18s ease, box-shadow .18s ease;
    }
    .field textarea { min-height: 128px; resize: vertical; }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: var(--glow); }
    .field select option { color: #111; }
    .field input::placeholder, .field textarea::placeholder { color: #6c777e; }
    .hp { position: absolute; left: -9999px; }
    .form-note { margin: 16px 0 0; color: var(--muted); font-size: 13px; }
    .form-card .btn-primary { width: 100%; margin-top: 20px; }

    /* ---------- Footer ---------- */
    .footer { padding: 66px 0 26px; background: #04070a; border-top: 1px solid var(--line); }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
    .footer .logo { width: 168px; margin-bottom: 18px; }
    .footer p, .footer li { color: var(--muted); font-size: 14.5px; }
    .footer ul { list-style: none; padding: 0; margin: 0; }
    .footer li { margin-bottom: 10px; }
    .footer a:hover { color: #fff; }
    .foot-title { font-family: var(--disp); font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; margin: 0 0 18px; }
    .social { display: flex; gap: 10px; margin-top: 20px; }
    .social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255, 255, 255, .05); border: 1px solid var(--line); transition: transform .18s ease, background .18s ease, border-color .18s ease; }
    .social a:hover { transform: translateY(-3px); border-color: var(--red); background: rgba(229, 31, 40, .14); }
    .social svg { width: 20px; height: 20px; }
    .copyright { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 46px; padding-top: 22px; border-top: 1px solid var(--line); color: #79838a; font-size: 13px; }

    /* ---------- Floating WhatsApp ---------- */
    .wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 95; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(180deg, #2ee06a, #13a94c); box-shadow: 0 14px 34px rgba(37, 211, 102, .45); animation: pulse 2.6s infinite; }
    .wa-float svg { width: 30px; height: 30px; color: #04140a; }
    @keyframes pulse { 0% { box-shadow: 0 14px 34px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .5); } 70% { box-shadow: 0 14px 34px rgba(37, 211, 102, .45), 0 0 0 16px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 14px 34px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); } }

    /* ---------- Reveal ---------- */
    .reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
    .reveal.in { opacity: 1; transform: none; }

    /* ---------- Responsive ---------- */
    @media (max-width: 980px) {
      .menu, .nav-phone { display: none; }
      .hamb { display: grid; place-items: center; }
      .menu.open {
        display: grid; gap: 4px; position: absolute; left: 0; right: 0; top: 100%;
        padding: 14px 22px 22px; background: rgba(6, 9, 12, .98); border-bottom: 1px solid var(--line);
      }
      .menu.open a { padding: 12px 0; font-size: 18px; }
      .pillars { grid-template-columns: 1fr; }
      .home-offers { grid-template-columns: 1fr; }
      .bench-grid, .about, .contact-grid { grid-template-columns: 1fr; }
      .bench-showcase { grid-template-columns: repeat(2, 1fr); }
      .bank-modules { grid-template-columns: 1fr; }
      .sectors { grid-template-columns: 1fr; }
      .stats { grid-template-columns: repeat(2, 1fr); }
      .gallery { grid-template-columns: repeat(2, 1fr); }
      .g-wide { grid-column: span 2; }
      .g-tallph { grid-row: span 1; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    }
    @media (max-width: 560px) {
      .wrap { width: min(100% - 30px, var(--max)); }
      .form-grid { grid-template-columns: 1fr; }
      .stats { grid-template-columns: 1fr 1fr; }
      .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
      .bench-showcase { grid-template-columns: 1fr; }
      .bench-shot { min-height: 210px; }
      .bank-photo { height: 220px; }
      .g-wide { grid-column: span 1; grid-row: span 1; }
      .footer-grid { grid-template-columns: 1fr; }
      .copyright { flex-direction: column; }
      .wa-float { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      .strip-track, .wa-float { animation: none; }
      .reveal { opacity: 1; transform: none; }
      html { scroll-behavior: auto; }
    }

    /* ================= MULTIPÁGINA ================= */
    /* Dropdown "Servicios" */
    .menu .drop { position: relative; }
    .menu .drop-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; background: none; border: 0; color: inherit; }
    .menu .drop-toggle .chev { width: 12px; height: 12px; transition: transform .2s ease; }
    .menu .drop-menu {
      position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
      min-width: 230px; padding: 10px; display: grid; gap: 2px; z-index: 100;
      background: rgba(9, 13, 17, .98); border: 1px solid var(--line-2); border-radius: 14px;
      box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease, visibility .18s;
    }
    .menu .drop-menu a { padding: 11px 13px; border-radius: 9px; opacity: .9; font-size: 15px; }
    .menu .drop-menu a::after { display: none; }
    .menu .drop-menu a:hover, .menu .drop-menu a.active { background: rgba(229, 31, 40, .14); opacity: 1; }
    .menu .drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .menu .drop:hover .drop-toggle .chev { transform: rotate(180deg); }

    /* Encabezado de páginas internas */
    .page-hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 60px); border-bottom: 1px solid var(--line); }
    .page-hero::before {
      content: ""; position: absolute; inset: 0; z-index: 0;
      background:
        linear-gradient(90deg, rgba(6, 9, 12, .95) 15%, rgba(6, 9, 12, .78) 60%, rgba(6, 9, 12, .6)),
        radial-gradient(700px 300px at 85% -10%, rgba(229, 31, 40, .18), transparent 60%),
        linear-gradient(180deg, #0b1013, var(--bg));
    }
    .page-hero.has-photo::before {
      background:
        linear-gradient(90deg, rgba(6, 9, 12, .95) 12%, rgba(6, 9, 12, .78) 55%, rgba(6, 9, 12, .68)),
        url("../fotos/local-liserv.jpg") center 42% / cover no-repeat;
    }
    .page-hero.hero-local::before {
      background:
        linear-gradient(90deg, rgba(6, 9, 12, .95) 12%, rgba(6, 9, 12, .78) 55%, rgba(6, 9, 12, .68)),
        url("../fotos/local-liserv.jpg") center 42% / cover no-repeat;
    }
    .page-hero.hero-equipos::before {
      background:
        linear-gradient(90deg, rgba(6, 9, 12, .95) 12%, rgba(6, 9, 12, .80) 55%, rgba(6, 9, 12, .70)),
        url("../fotos/equipos-taller.jpg") center 52% / cover no-repeat;
    }
    .page-hero.hero-diagnostico::before {
      background:
        linear-gradient(90deg, rgba(6, 9, 12, .95) 12%, rgba(6, 9, 12, .80) 55%, rgba(6, 9, 12, .70)),
        url("../fotos/tester-bateria-carga.jpg") center 45% / cover no-repeat;
    }
    .page-hero.hero-bancos::before {
      background:
        linear-gradient(90deg, rgba(6, 9, 12, .95) 12%, rgba(6, 9, 12, .80) 55%, rgba(6, 9, 12, .70)),
        url("../fotos/equipos-taller.jpg") center 52% / cover no-repeat;
    }
    .page-hero .wrap { position: relative; z-index: 1; }
    .breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
    .breadcrumb a:hover { color: #fff; }
    .breadcrumb .sep { opacity: .5; }
    .breadcrumb .cur { color: var(--red-2); }
    .page-hero h1 { font-size: clamp(38px, 6vw, 66px); font-weight: 900; max-width: 900px; }
    .page-hero p { color: var(--muted-2); font-size: clamp(16px, 2vw, 19px); margin: 16px 0 0; max-width: 620px; }

    /* Bloque CTA de cierre (páginas internas) */
    .cta-band { border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(229, 31, 40, .07), transparent 60%); }
    .cta-band .wrap { text-align: center; }
    .cta-band h2 { font-size: clamp(28px, 4vw, 44px); }
    .cta-band p { color: var(--muted-2); font-size: 17px; margin: 14px auto 26px; max-width: 560px; }
    .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    @media (max-width: 980px) {
      .menu .drop-menu {
        position: static; transform: none; opacity: 1; visibility: visible; min-width: 0;
        display: none; box-shadow: none; background: rgba(255, 255, 255, .03); margin: 4px 0 6px; border-radius: 10px;
      }
      .menu .drop.open .drop-menu { display: grid; }
      .menu .drop:hover .drop-menu,
      .menu .drop.open .drop-menu { transform: none; left: auto; top: auto; }
      .menu .drop-toggle { width: 100%; justify-content: space-between; padding: 12px 0; font-size: 18px; }
    }
