  @font-face {
    font-family: 'Trajan Pro';
    src: url('../fonts/TrajanPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Trajan Pro';
    src: url('../fonts/TrajanPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  :root {
    --gold: #C9A668;
    --gold-light: #e2c990;
    --gold-dark: #a07d45;
    --black: #0F0F11;
    --carbon: #1E1E22;
    --grey: #3A3A30;
    --grey-light: #6b6b60;
    --white: #f5f0e8;
    --font-brand: 'Trajan Pro', 'Times New Roman', Georgia, serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
  }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom Cursor */
  .cursor {
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: normal;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(201,166,104,0.5);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s, height 0.3s;
  }
  body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 20px; height: 20px; }

  /* Grain overlay */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9990;
  }

  /* ===== NAVBAR ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 60px;
    background: rgba(15, 15, 17, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.4s, border-color 0.4s;
  }
  nav.scrolled {
    background: rgba(15,15,17,0.97);
    border-bottom: 1px solid rgba(201,166,104,0.15);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
  }
  .nav-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
  }
  .nav-logo-text {
    display: flex; flex-direction: column; line-height: 1;
  }
  .nav-logo-text span:first-child {
    font-family: var(--font-brand);
    font-size: 20px; font-weight: 700; letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .nav-logo-text span:last-child {
    font-family: var(--font-brand);
    font-size: 11px; font-weight: 400; letter-spacing: 0.22em;
    color: rgba(201,166,104,0.6); text-transform: uppercase;
  }

  .nav-links {
    display: flex; align-items: center; gap: 40px; list-style: none;
  }
  .nav-links a {
    color: rgba(245,240,232,0.7);
    text-decoration: none;
    font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 10px 24px !important;
    transition: background 0.3s, color 0.3s !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }

  /* ===== HERO ===== */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    padding: 120px 60px 72px;
    background: var(--black);
  }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url('../img/lib/bg.jpeg');
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.01);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(ellipse 60% 80% at 50% 60%, rgba(201,166,104,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 80% 20%, rgba(201,166,104,0.04) 0%, transparent 60%),
      linear-gradient(180deg, rgba(15, 15, 17, 0.28) 0%, rgba(15, 15, 17, 0.48) 50%, rgba(15, 15, 17, 0.68) 100%);
  }

  /* Geometric pattern */
  .hero-pattern {
    position: absolute; inset: 0; pointer-events: none;
    opacity: 0.04;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201,166,104,1) 60px, rgba(201,166,104,1) 61px),
      repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,166,104,1) 60px, rgba(201,166,104,1) 61px);
  }

  .hero-content {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    max-width: 1200px; width: 100%;
  }

  .hero-left { }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 28px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--gold);
  }
  .hero-tag::before {
    content: ''; width: 30px; height: 1px; background: var(--gold);
  }

  .hero-title {
    font-family: var(--font-brand);
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--white);
  }
  .hero-title .gold { color: var(--gold); }

  .hero-sub {
    font-size: 13px; font-weight: 300;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(245,240,232,0.5);
    margin-bottom: 16px;
  }
  .hero-sub span { color: var(--gold); }

  .hero-desc {
    font-size: 15px; font-weight: 300; line-height: 1.8;
    color: rgba(245,240,232,0.6);
    max-width: 420px; margin-bottom: 44px;
  }

  .hero-actions { display: flex; gap: 16px; align-items: center; }

  .btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 16px 36px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none; cursor: none;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background 0.3s, transform 0.2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-secondary {
    color: rgba(245,240,232,0.6);
    font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.3s;
  }
  .btn-secondary:hover { color: var(--gold); }
  .btn-secondary svg { width: 18px; height: 18px; }

  /* Hero right - visual */
  .hero-right {
    display: flex; justify-content: center; align-items: center;
    position: relative;
  }
  .hero-visual {
    width: 380px; height: 380px;
    position: relative;
  }
  .hero-orb {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(201,166,104,0.2);
    animation: rotate 20s linear infinite;
  }
  .hero-orb::before {
    content: ''; position: absolute;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    top: -3px; left: 50%;
    box-shadow: 0 0 20px var(--gold);
  }
  .hero-orb-2 {
    position: absolute; inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(201,166,104,0.1);
    animation: rotate 15s linear infinite reverse;
  }
  .hero-orb-2::before {
    content: ''; position: absolute;
    width: 4px; height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    top: -2px; left: 50%;
    box-shadow: 0 0 14px var(--gold-light);
  }
  .hero-center-logo {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
  }
  @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

  /* ===== MARQUEE ===== */
  .marquee-wrap {
    border-top: 1px solid rgba(201,166,104,0.15);
    border-bottom: 1px solid rgba(201,166,104,0.15);
    background: rgba(201,166,104,0.03);
    overflow: hidden; padding: 16px 0;
    margin-top: 80px;
  }
  #hero .marquee-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    margin-top: 0;
    pointer-events: none;
  }
  .marquee {
    display: flex; gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
  }
  .marquee-item {
    display: flex; align-items: center; gap: 20px;
    padding: 0 30px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: rgba(201,166,104,0.5);
    white-space: nowrap;
  }
  .marquee-item .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; opacity: 0.6; }

  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ===== SECTION BASE ===== */
  section { padding: 120px 60px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-tag {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px;
  }
  .section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

  .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800; text-transform: uppercase;
    line-height: 1; letter-spacing: -0.01em;
    color: var(--white); margin-bottom: 20px;
  }
  .section-title .gold { color: var(--gold); }
  .section-title .brand-mark {
    font-family: var(--font-brand);
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .section-desc {
    font-size: 15px; font-weight: 300; line-height: 1.8;
    color: rgba(245,240,232,0.55); max-width: 560px;
  }

  /* ===== PILARES ===== */
  #pilares { background: var(--carbon); }

  .pilares-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto auto 1fr;
    column-gap: 2px;
    row-gap: 24px;
    margin-top: 60px;
    align-items: stretch;
  }
  .pilar {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    align-content: start;
    background: var(--black);
    padding: 40px 30px;
    position: relative; overflow: hidden;
    transition: background 0.4s;
  }
  .pilar::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }
  .pilar:hover { background: rgba(201,166,104,0.04); }
  .pilar:hover::before { transform: scaleX(1); }

  .pilar-icon {
    grid-row: 1;
    align-self: start;
    width: 48px; height: 48px;
    border: 1px solid rgba(201,166,104,0.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0;
    transition: border-color 0.3s, background 0.3s;
  }
  .pilar:hover .pilar-icon { border-color: var(--gold); background: rgba(201,166,104,0.08); }
  .pilar-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .pilar-title {
    grid-row: 2;
    align-self: start;
    font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
    line-height: 1.35;
    text-transform: uppercase; color: var(--gold);
    margin: 0;
  }
  .pilar-desc {
    grid-row: 3;
    align-self: start;
    font-size: 13px; font-weight: 300; line-height: 1.7;
    color: rgba(245,240,232,0.5);
    margin: 0;
  }

  /* Pilares expandibles (home) */
  .pilares-stage {
    display: flex;
    gap: 2px;
    align-items: flex-start;
    margin-top: 60px;
    height: auto;
    min-height: 0;
  }

  .pilares-stage .pilares-grid {
    flex: 1 1 auto;
    min-width: 0;
    margin-top: 0;
    height: auto;
    align-self: auto;
  }

  .pilares-stage.is-expanding .pilares-grid {
    transition: flex 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .pilares-stage.is-expanded {
    overflow: hidden;
    align-items: stretch;
    height: auto;
    min-height: 0;
  }

  .pilares-stage.is-expanded.is-height-locked {
    height: var(--pilares-locked-h);
    min-height: var(--pilares-locked-h);
    max-height: var(--pilares-locked-h);
  }

  .pilares-stage.is-expanded .pilares-grid {
    flex: 0 0 min(280px, 30%);
    grid-template-columns: 1fr;
    align-self: stretch;
    height: auto;
    min-height: 0;
  }

  .pilares-stage .pilar {
    display: grid;
    font: inherit;
    text-align: left;
    cursor: pointer;
    width: 100%;
    border: none;
    color: inherit;
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      border-color 0.3s,
      background 0.3s;
  }

  .pilares-stage.is-expanded .pilar:not(.is-active) {
    display: none;
  }

  .pilares-stage.is-expanded .pilar.is-active {
    display: flex;
    flex-direction: column;
    grid-template-rows: none;
    grid-row: auto;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 0;
    height: auto;
    align-self: stretch;
    box-sizing: border-box;
    background: rgba(201, 166, 104, 0.08);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      background 0.35s ease;
  }

  .pilares-stage.is-collapsing.is-expanded .pilar.is-active {
    opacity: 0.5;
    transition: opacity 0.38s ease;
  }

  .pilares-stage.is-expanded .pilar.is-active .pilar-icon {
    grid-row: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }

  .pilares-stage.is-expanded .pilar.is-active .pilar-title {
    grid-row: auto;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }

  .pilares-stage.is-expanded .pilar.is-active::before {
    transform: scaleX(1);
  }

  .pilares-stage.is-expanded .pilar.is-active .pilar-desc {
    display: none;
  }

  .pilar-panel {
    display: none;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    background: var(--black);
    border: 1px solid rgba(201, 166, 104, 0.12);
  }

  .pilares-stage.is-expanded .pilar-panel {
    display: block;
    flex: 1 1 auto;
    align-self: stretch;
    height: auto;
    min-height: 0;
    opacity: 1;
    transform: translateX(0);
    animation: pilar-panel-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .pilares-stage.is-collapsing.is-expanded .pilar-panel {
    animation: pilar-panel-out 0.42s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes pilar-panel-in {
    from {
      opacity: 0;
      transform: translateX(24px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes pilar-panel-out {
    from {
      opacity: 1;
      transform: translateX(0);
    }
    to {
      opacity: 0;
      transform: translateX(18px);
    }
  }

  .pilares-stage.is-revealing .pilar {
    transition: none;
  }

  @media (prefers-reduced-motion: reduce) {
    .pilares-stage.is-expanded .pilar-panel,
    .pilares-stage.is-collapsing.is-expanded .pilar-panel {
      animation: none;
    }

    .pilares-stage.is-expanding .pilares-grid {
      transition: none;
    }
  }

  .pilar-panel-inner {
    display: grid;
    grid-template-columns: 1fr minmax(200px, 42%);
    gap: 36px 48px;
    align-items: center;
    height: auto;
    min-height: 0;
    box-sizing: border-box;
    padding: 40px 44px;
    position: relative;
  }

  .pilar-panel-back {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(201, 166, 104, 0.35);
    color: var(--gold);
    font-family: inherit;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
  }

  .pilar-panel-back span {
    display: block;
    margin-top: -2px;
  }

  .pilar-panel-back:hover {
    background: rgba(201, 166, 104, 0.1);
    border-color: var(--gold);
    color: var(--white);
  }

  .pilar-panel-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 16px;
  }

  .pilar-panel-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.62);
    margin: 0 0 28px;
    max-width: 42ch;
  }

  .pilar-panel-desc .pilar-highlight {
    color: var(--gold);
    font-weight: 600;
  }

  .pilar-panel-cta {
    display: inline-flex;
  }

  .pilar-panel-media {
    margin: 0;
    height: auto;
    min-height: 0;
    max-height: 320px;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px 24px;
    box-sizing: border-box;
    background: rgba(15, 15, 17, 0.6);
  }

  .pilar-panel-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 280px;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    display: block;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.5s ease 0.15s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  }

  .pilares-stage.is-expanded .pilar-panel-img.is-loaded {
    opacity: 1;
    transform: scale(1);
  }

  @media (max-width: 900px) {
    .pilares-stage.is-expanded {
      flex-direction: column;
    }

    .pilares-stage.is-expanded .pilares-grid {
      flex: 0 0 auto;
      width: 100%;
    }

    .pilar-panel-inner {
      grid-template-columns: 1fr;
      padding: 32px 28px 36px;
      min-height: 0;
    }

    .pilar-panel-media {
      order: -1;
      min-height: 220px;
      max-height: 280px;
      padding: 16px 20px;
    }
  }

  /* ===== PRODUCTOS ===== */
  #productos { }

  #productos .productos-catalog-intro {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 166, 104, 0.1);
    padding-bottom: 72px;
    margin-bottom: 48px;
  }
  #productos .productos-catalog-intro .hero-pattern {
    z-index: 0;
  }
  #productos .productos-catalog-intro-inner {
    position: relative;
    z-index: 1;
  }
  #productos .productos-catalog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px 56px;
    flex-wrap: wrap;
  }
  #productos .productos-catalog-head-text {
    flex: 1 1 320px;
    min-width: 0;
  }
  #productos .productos-catalog-brand {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  #productos a.productos-catalog-brand:hover {
    transform: scale(1.03);
    opacity: 0.95;
  }
  #productos .productos-catalog-logo {
    width: clamp(200px, 22vw, 280px);
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
  }
  #productos .productos-catalog-title {
    margin-bottom: 20px;
  }
  #productos .productos-catalog-desc {
    max-width: 640px;
    margin-bottom: 0;
  }
  @media (max-width: 768px) {
    #productos .productos-catalog-head {
      flex-direction: column;
      align-items: flex-start;
    }
    #productos .productos-catalog-brand {
      align-self: center;
      width: 100%;
    }
    #productos .productos-catalog-logo {
      width: min(240px, 85vw);
    }
  }
  #productos .productos-catalog-intro .cat-tiles {
    margin-top: 48px;
    margin-bottom: 8px;
  }
  .productos-header--filters-only {
    justify-content: flex-end;
    margin-bottom: 48px;
  }

  #productos .productos-grid--flat .producto-card:first-child {
    grid-row: auto;
    aspect-ratio: 3/4;
  }
  #productos .productos-grid--flat .producto-card:first-child .producto-name {
    font-size: 18px;
  }

  #productos .producto-card--ver-todos {
    justify-content: center;
    align-items: center;
    text-align: center;
    background:
      radial-gradient(ellipse 80% 70% at 50% 100%, rgba(201,166,104,0.14) 0%, transparent 55%),
      var(--carbon);
    border: 1px solid rgba(201,166,104,0.22);
  }
  #productos .producto-card--ver-todos .producto-overlay {
    background: linear-gradient(to top, rgba(15,15,17,0.5) 0%, transparent 55%);
  }
  #productos .producto-card--ver-todos .producto-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 260px;
  }
  #productos .producto-card--ver-todos .producto-name {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 10px;
  }
  #productos .producto-card--ver-todos .producto-origin {
    opacity: 1;
    transform: none;
    margin-bottom: 18px;
  }
  #productos .producto-card--ver-todos .producto-specs--cta {
    justify-content: center;
  }
  #productos .producto-card--ver-todos .producto-specs--cta .producto-spec {
    text-align: center;
    justify-content: center;
    line-height: 1.5;
    color: rgba(245,240,232,0.42);
  }
  #productos .producto-card--ver-todos .producto-specs--cta .producto-spec::before {
    display: none;
  }
  #productos .producto-card--ver-todos .producto-arrow {
    opacity: 1;
    transform: translateX(0);
    border-color: rgba(201,166,104,0.55);
  }
  #productos .producto-card--ver-todos:hover {
    border-color: rgba(201,166,104,0.45);
  }
  #productos .producto-card--ver-todos:hover .producto-name {
    color: var(--gold-light);
  }

  .productos-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 60px; gap: 40px;
  }

  .productos-filter {
    display: flex; flex-wrap: wrap;
    gap: 4px;
    justify-content: flex-end;
  }
  .filter-btn {
    background: transparent;
    border: 1px solid rgba(201,166,104,0.2);
    color: rgba(245,240,232,0.4);
    padding: 10px 20px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; cursor: none;
    transition: all 0.3s;
  }
  .filter-btn.active, .filter-btn:hover {
    background: var(--gold); color: var(--black);
    border-color: var(--gold);
  }
  a.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .productos-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .producto-card {
    background: var(--carbon);
    position: relative; overflow: hidden;
    aspect-ratio: 3/4;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 30px;
    cursor: none;
  }
  a.producto-card {
    color: inherit;
    text-decoration: none;
  }
  .producto-card:first-child { grid-row: span 2; aspect-ratio: auto; }

  .producto-bg {
    position: absolute; inset: 0;
    overflow: hidden;
    transition: opacity 0.4s, transform 0.6s;
  }
  .producto-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.48;
    transform: scale(1);
    transition: opacity 0.4s, transform 0.55s ease;
  }
  .producto-card:hover .producto-bg-img {
    opacity: 0.66;
    transform: scale(1.06);
  }

  .producto-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,15,17,0.95) 0%, rgba(15,15,17,0.4) 60%, transparent 100%);
  }
  .producto-card:hover .producto-overlay {
    background: linear-gradient(to top, rgba(15,15,17,0.98) 0%, rgba(15,15,17,0.6) 70%, transparent 100%);
  }

  .producto-tag {
    position: absolute; top: 20px; left: 20px;
    background: var(--gold); color: var(--black);
    font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; padding: 5px 12px;
    z-index: 2;
  }

  .producto-info { position: relative; z-index: 2; }
  .producto-name {
    font-size: 18px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--white); margin-bottom: 6px;
  }
  .producto-card:first-child .producto-name { font-size: 26px; }
  .producto-origin {
    font-size: 11px; font-weight: 400; letter-spacing: 0.15em;
    color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .producto-card:hover .producto-origin { opacity: 1; transform: translateY(0); }
  .producto-specs {
    display: flex; gap: 16px; flex-wrap: wrap;
  }
  .producto-spec {
    font-size: 10px; color: rgba(245,240,232,0.4);
    letter-spacing: 0.1em; text-transform: uppercase;
    display: flex; align-items: center; gap: 5px;
  }
  .producto-spec::before { content: '—'; color: var(--gold); font-size: 8px; }
  .producto-arrow {
    position: absolute; bottom: 30px; right: 30px;
    width: 36px; height: 36px;
    border: 1px solid rgba(201,166,104,0.3);
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    opacity: 0; transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s, background 0.3s;
  }
  .producto-card:hover .producto-arrow { opacity: 1; transform: translateX(0); }
  .producto-arrow:hover { background: var(--gold); }
  .producto-arrow svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; }
  .producto-arrow:hover svg { stroke: var(--black); }

  /* próximamente banner */
  .coming-soon {
    background: var(--carbon);
    border: 1px solid rgba(201,166,104,0.15);
    padding: 50px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 30px; margin-top: 2px;
  }
  .coming-label {
    font-size: 10px; font-weight: 700; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
    display: flex; align-items: center; gap: 10px;
  }
  .coming-label::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
  .coming-title {
    font-size: 28px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.05em; color: rgba(245,240,232,0.3);
  }
  .coming-icons { display: flex; gap: 20px; }
  .coming-icon {
    font-size: 36px; opacity: 0.15;
    filter: grayscale(1);
  }

  /* ===== PROCESO ===== */
  #proceso { background: var(--carbon); }

  .proceso-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center; margin-top: 60px;
  }

  .proceso-steps { }
  .proceso-step {
    display: flex; gap: 24px; padding: 28px 0;
    border-bottom: 1px solid rgba(201,166,104,0.1);
    position: relative;
    transition: padding-left 0.3s;
  }
  .proceso-step:first-child { border-top: 1px solid rgba(201,166,104,0.1); }
  .proceso-step:hover { padding-left: 10px; }
  .paso-num {
    font-size: 11px; font-weight: 700; color: var(--gold);
    letter-spacing: 0.1em; min-width: 40px; padding-top: 3px;
    opacity: 0.6;
  }
  .paso-title {
    font-size: 15px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--white);
    margin-bottom: 8px;
  }
  .paso-desc {
    font-size: 13px; font-weight: 300; line-height: 1.7;
    color: rgba(245,240,232,0.5);
  }

  .proceso-visual {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .proceso-cell {
    background: var(--black);
    padding: 30px;
    display: flex; flex-direction: column; gap: 12px;
  }
  .proceso-cell{ grid-column: span 2; }
  .cell-num { font-size: 40px; font-weight: 800; color: var(--gold); opacity: 0.3; line-height: 1; }
  .cell-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,240,232,0.6); }
  .cell-value { font-size: 13px; font-weight: 300; color: rgba(245,240,232,0.4); }

  /* ===== MERCADOS ===== */
  #mercados { }

  .mercados-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: 48px 64px;
    align-items: center;
    margin-top: 56px;
  }

  .mercados-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 440px;
  }
  .mercados-cta {
    margin-top: 8px;
    align-self: flex-start;
    display: inline-flex;
  }

  .mercados-flota {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 280px;
    background: transparent;
  }
  .mercados-camion {
    width: 115%;
    max-width: 620px;
    height: auto;
    max-height: min(50vw, 400px);
    object-fit: contain;
    object-position: right center;
    display: block;
    margin-right: -4%;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
  }

  #mercados .globe-title { font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
  #mercados .globe-stat-big { font-size: clamp(56px, 8vw, 88px); font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -0.03em; }
  #mercados .globe-stat-big span { color: var(--gold); }
  #mercados .globe-stat-label { font-size: 14px; font-weight: 300; line-height: 1.75; color: rgba(245,240,232,0.5); letter-spacing: 0.06em; max-width: 380px; }

  /* ===== BANNER CTA CON FONDO ===== */
  .cta-banner {
    position: relative;
    min-height:  min(52vh, 480px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 88px 60px;
    background-image: url('../img/productos/bgPescado.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid rgba(201, 166, 104, 0.12);
    border-bottom: 1px solid rgba(201, 166, 104, 0.12);
  }
  .cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 17, 0.68);
    pointer-events: none;
  }
  .cta-banner__inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }
  .cta-banner__tag {
    justify-content: center;
  }
  .cta-banner__tag::before {
    display: none;
  }
  .cta-banner__title {
    font-family: var(--font-brand);
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
  }
  .cta-banner__title .gold {
    color: var(--gold);
  }
  .cta-banner__desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(245, 240, 232, 0.72);
    margin: 0 auto 36px;
    max-width: 520px;
  }
  .cta-banner .cta-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-banner .btn-secondary {
    color: rgba(245, 240, 232, 0.85);
  }
  .cta-banner .btn-secondary:hover {
    color: var(--gold);
  }

  /* ===== CTA ===== */
  #cta {
    background: 
      linear-gradient(135deg, rgba(201,166,104,0.08) 0%, transparent 60%),
      var(--black);
    border-top: 1px solid rgba(201,166,104,0.15);
    text-align: center;
    padding: 140px 60px;
    position: relative; overflow: hidden;
  }
  #cta::before {
    content: '';
    position: absolute; top: -1px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 800; text-transform: uppercase;
    line-height: 1; letter-spacing: -0.01em;
    color: var(--white); margin-bottom: 20px;
  }
  .cta-title .gold { color: var(--gold); }
  .cta-desc {
    font-size: 15px; font-weight: 300; line-height: 1.8;
    color: rgba(245,240,232,0.5); max-width: 480px; margin: 0 auto 44px;
  }
  .cta-actions { display: flex; gap: 16px; justify-content: center; align-items: center; }
  .contact-form {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
  }
  .contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contact-field span {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(201,166,104,0.8);
    font-weight: 600;
  }
  .contact-field input,
  .contact-field textarea {
    width: 100%;
    background: rgba(15,15,17,0.7);
    border: 1px solid rgba(201,166,104,0.25);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .contact-field input:focus,
  .contact-field textarea:focus {
    border-color: var(--gold);
    background: rgba(15,15,17,0.9);
  }
  .contact-field textarea {
    resize: vertical;
    min-height: 130px;
  }
  .contact-field--full {
    margin-bottom: 22px;
  }
  .contact-form .cta-actions {
    margin-bottom: 12px;
  }
  .contact-help {
    margin: 0;
    text-align: center;
    font-size: 12px;
    color: rgba(245,240,232,0.5);
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--carbon);
    border-top: 1px solid rgba(201,166,104,0.1);
    padding: 60px;
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
  }
  .footer-brand { }
  .footer-logo-text {
    font-family: var(--font-brand);
    font-size: 22px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 4px;
  }
  .footer-logo-sub {
    font-family: var(--font-brand);
    font-size: 9px; font-weight: 400; letter-spacing: 0.28em;
    color: rgba(201,166,104,0.4); text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-tagline {
    font-size: 11px; font-weight: 300; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(245,240,232,0.3);
    margin-bottom: 24px; line-height: 1.8;
  }
  .footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
  .social-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(201,166,104,0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(245,240,232,0.55);
    text-decoration: none;
    font-size: 0;
    transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.2s;
  }
  .social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,166,104,0.08);
    transform: translateY(-2px);
  }
  .social-btn--wa:hover {
    border-color: #25d366;
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
  }
  .social-icon {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
  }

  .whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    pointer-events: auto;
  }
  .whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55);
  }
  .whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    display: block;
  }
  .whatsapp-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: wa-pulse 2s ease-out infinite;
    pointer-events: none;
  }
  @keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.45); opacity: 0; }
  }

  .footer-col h4 {
    font-size: 10px; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul li a {
    font-size: 13px; font-weight: 300; color: rgba(245,240,232,0.4);
    text-decoration: none; letter-spacing: 0.05em;
    transition: color 0.3s;
  }
  .footer-col ul li a:hover { color: var(--gold); }

  .footer-bottom {
    max-width: 1200px; margin: 40px auto 0;
    padding-top: 30px; border-top: 1px solid rgba(201,166,104,0.08);
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px;
  }
  .footer-copy { font-size: 11px; font-weight: 300; letter-spacing: 0.1em; color: rgba(245,240,232,0.25); }
  .footer-legal { display: flex; gap: 24px; }
  .footer-legal a { font-size: 11px; font-weight: 300; letter-spacing: 0.1em; color: rgba(245,240,232,0.25); text-decoration: none; }
  .footer-legal a:hover { color: var(--gold); }

  /* ===== ANIMATIONS ===== */
  .fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up.delay-1 { transition-delay: 0.1s; }
  .fade-up.delay-2 { transition-delay: 0.2s; }
  .fade-up.delay-3 { transition-delay: 0.3s; }
  .fade-up.delay-4 { transition-delay: 0.4s; }

  /* Diagonal divider */
  .divider-gold {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
    opacity: 0.2;
  }

  /* ===== PÁGINAS CATÁLOGO / PRODUCTO ===== */
  .page-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 60px 64px;
    border-bottom: 1px solid rgba(201,166,104,0.12);
  }
  .page-hero .hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse 50% 70% at 50% 40%, rgba(201,166,104,0.07) 0%, transparent 65%),
      var(--black);
  }
  .page-hero .hero-pattern {
    position: absolute; inset: 0; pointer-events: none;
    opacity: 0.035;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201,166,104,1) 60px, rgba(201,166,104,1) 61px),
      repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,166,104,1) 60px, rgba(201,166,104,1) 61px);
  }
  .page-hero-inner { position: relative; z-index: 2; max-width: 900px; }
  .breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 10px; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; margin-bottom: 24px;
    color: rgba(245,240,232,0.35);
  }
  .breadcrumb a {
    color: rgba(201,166,104,0.65);
    text-decoration: none;
    transition: color 0.25s;
  }
  .breadcrumb a:hover { color: var(--gold); }
  .breadcrumb-sep { opacity: 0.35; user-select: none; }
  .breadcrumb [aria-current="page"] { color: rgba(245,240,232,0.75); }
  .page-hero-title { margin-bottom: 20px; }
  .page-hero-desc { margin-bottom: 0; }

  .cat-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 2px;
    align-items: stretch;
  }

  @supports (grid-template-rows: subgrid) {
    .cat-tiles {
      grid-template-rows: minmax(72px, auto) auto minmax(2.75em, auto) calc(1.65em * 3);
    }
    .cat-tile {
      grid-row: span 4;
      grid-template-rows: subgrid;
    }
  }
  .cat-tile {
    position: relative;
    min-height: 300px;
    height: 100%;
    padding: 40px 36px;
    background: var(--carbon);
    text-decoration: none;
    color: inherit;
    display: grid;
    grid-template-rows: minmax(72px, 1fr) auto 2.75em calc(1.65em * 3);
    grid-template-columns: 1fr;
    align-content: end;
    overflow: hidden;
    border: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }
  .cat-tile:hover {
    border-color: rgba(201,166,104,0.35);
    background: rgba(201,166,104,0.06);
  }
  .cat-tile-ico {
    font-size: 56px;
    opacity: 0.42;
    position: absolute;
    top: 28px; right: 28px;
    line-height: 1;
    filter: brightness(0) invert(1);
  }
  .cat-tile-label {
    grid-row: 2;
    font-size: 10px; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--gold);
    margin: 0 0 10px;
    align-self: end;
  }
  .cat-tile-title {
    grid-row: 3;
    font-family: var(--font-brand);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 12px;
    align-self: start;
    line-height: 1.15;
  }
  .cat-tile-desc {
    grid-row: 4;
    font-size: 13px; font-weight: 300; line-height: 1.65;
    color: rgba(245,240,232,0.45);
    max-width: 340px;
    margin: 0;
    align-self: start;
  }

  .section-products-list {
    padding: 80px 60px 120px;
    background: var(--black);
  }

  .section-products-list .productos-grid--uniform {
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }

  .section-products-list .productos-grid--uniform .producto-card {
    grid-row: auto;
    aspect-ratio: 1;
    min-height: 0;
    padding: 28px 20px;
    justify-content: center;
    align-items: center;
    border: none;
    transition: transform 0.25s ease;
  }

  .section-products-list .productos-grid--uniform .producto-card:first-child {
    grid-row: auto;
    aspect-ratio: 1;
  }

  .section-products-list .productos-grid--uniform .producto-bg,
  .section-products-list .productos-grid--uniform .producto-overlay,
  .section-products-list .productos-grid--uniform .producto-arrow {
    display: none;
  }

  .section-products-list .productos-grid--uniform .producto-bg {
    display: block;
    position: static;
    width: 144px;
    height: 144px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(201, 166, 104, 0.34);
    background: rgba(15, 15, 17, 0.9);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  }

  .section-products-list .productos-grid--uniform .producto-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .section-products-list .productos-grid--uniform .producto-info {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .section-products-list .productos-grid--uniform .producto-name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    letter-spacing: 0.08em;
  }

  .section-products-list .productos-grid--uniform .producto-card:first-child .producto-name {
    font-size: 15px;
  }

  .section-products-list .productos-grid--uniform .producto-origin {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: none;
    color: var(--gold);
    margin: 10px 0 0;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section-products-list .productos-grid--uniform .producto-specs {
    display: none;
  }

  .section-products-list .productos-grid--uniform .producto-card:hover .producto-bg {
    transform: translateY(-3px) scale(1.04);
    border-color: rgba(201, 166, 104, 0.65);
    box-shadow: 0 0 0 4px rgba(201, 166, 104, 0.12);
  }

  .productos-grid--one {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .product-detail {
    padding: 140px 60px 120px;
    padding-top: max(140px, calc(env(safe-area-inset-top, 0px) + 100px));
    position: relative;
    background: var(--black);
  }
  .product-detail .breadcrumb { margin-bottom: 36px; }
  .product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }
  .product-detail-visual {
    position: relative;
    aspect-ratio: 1;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .product-detail-visual .product-detail-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center center;
    z-index: 0;
  }
  .product-detail-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 32px;
  }

  .product-detail-grid > .fade-up:first-child .product-detail-spec-grid {
    display: none;
  }

  .product-detail-grid > .fade-up.delay-1 .product-detail-spec-grid--duo {
    display: grid;
    margin-top: 28px;
    margin-bottom: 36px;
  }

  .product-detail-grid > .fade-up.delay-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .product-detail-spec-grid--duo .product-detail-cell-value {
    text-transform: none;
    letter-spacing: 0.03em;
    font-weight: 400;
    line-height: 1.45;
  }

  .product-detail .product-detail-lead,
  .product-detail .section-desc[style*="max-width:none"] {
    display: none;
  }
  .product-detail-cell {
    background: var(--carbon);
    padding: 24px 22px;
  }
  .product-detail-cell-label {
    font-size: 9px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: rgba(201,166,104,0.55);
    margin-bottom: 8px;
  }
  .product-detail-cell-value {
    font-size: 14px; font-weight: 500; color: var(--white);
    letter-spacing: 0.04em;
  }
  .product-detail-lead {
    font-size: 16px; font-weight: 300; line-height: 1.85;
    color: rgba(245,240,232,0.58);
    margin: 24px 0 32px;
  }
  .product-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

  .section-mini-cta {
    padding: 80px 60px;
    background: var(--carbon);
    border-top: 1px solid rgba(201,166,104,0.1);
    text-align: center;
  }
  .section-mini-cta .section-inner { max-width: 560px; }
  .section-mini-cta .section-tag { justify-content: center; }
  .section-mini-cta .section-tag::before { display: none; }

.presentaciones-section {
  padding: 72px 60px 84px;
  background: var(--carbon);
  border-top: 1px solid rgba(201,166,104,0.14);
}
.presentaciones-title {
  margin-bottom: 28px;
}
.presentaciones-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.presentacion-card {
  background: transparent;
  border: none;
  padding: 10px 8px 14px;
  text-align: center;
}
.presentacion-media {
  width: 140px;
  height: 140px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201,166,104,0.28);
  background: rgba(15,15,17,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.presentacion-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.presentacion-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}

  /* Responsive */
  @media (max-width: 1100px) {
    .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 1200px) {
    .pilares-grid {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto 1fr;
    }
  }
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    section { padding: 80px 24px; }
    #hero { padding: 100px 24px 72px; }
    .hero-content { grid-template-columns: 1fr; gap: 50px; }
    .hero-right { display: none; }
    .pilares-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto 1fr;
    }
    .productos-grid { grid-template-columns: 1fr 1fr; }
    .proceso-grid { grid-template-columns: 1fr; gap: 50px; }
    .mercados-wrap {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .mercados-copy { max-width: none; }
    .mercados-flota {
      justify-content: center;
      min-height: 0;
    }
    .contact-form-grid {
      grid-template-columns: 1fr;
    }
    .mercados-camion {
      width: 100%;
      max-width: 100%;
      margin-right: 0;
      object-position: center bottom;
      max-height: min(70vw, 320px);
    }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    footer { padding: 40px 24px; }
    .page-hero { padding: 120px 24px 48px; }
    .section-products-list { padding: 60px 24px 80px; }
    .section-products-list .productos-grid--uniform {
      grid-template-columns: repeat(2, 1fr);
    }
    .product-detail { padding: 100px 24px 80px; padding-top: max(100px, calc(env(safe-area-inset-top, 0px) + 72px)); }
    .product-detail-grid { grid-template-columns: 1fr; gap: 48px; }
    .product-detail-spec-grid { grid-template-columns: 1fr; }
  .presentaciones-section { padding: 60px 24px 72px; }
  .presentaciones-grid { grid-template-columns: 1fr 1fr; }
    .cat-tiles { grid-template-columns: 1fr; }
    .section-mini-cta { padding: 60px 24px; }
    .whatsapp-float {
      bottom: 20px;
      right: 20px;
      width: 52px;
      height: 52px;
    }
    .whatsapp-float svg { width: 26px; height: 26px; }
    .cta-banner {
      min-height: 380px;
      padding: 72px 24px;
    }
    .cta-banner .cta-actions {
      flex-direction: column;
      align-items: center;
    }
  }
