  /* HERO */
  .page-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../img/bobcat.png') center/cover no-repeat;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), image-set(url('../img/bobcat-1200w.webp') type("image/webp"), url('../img/bobcat.png') type("image/png")) center/cover no-repeat;
    padding: 64px 40px 56px;
    text-align: center;
  }
  .page-hero-tag {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 3px;
    color: var(--orange); text-transform: uppercase; margin-bottom: 12px;
  }
  .page-hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2.8rem, 7vw, 5rem);
    letter-spacing: 3px; line-height: 1;
    margin-bottom: 16px; color: #fff;
  }
  .page-hero p {
    color: #ccc; font-size: clamp(0.95rem, 2vw, 1.1rem);
    max-width: 560px; margin: 0 auto 28px;
  }
  .btn-cta {
    display: inline-block;
    padding: 12px 32px; background: var(--orange); color: #000;
    font-weight: 600; font-size: 0.9rem; letter-spacing: 1px;
    text-decoration: none; border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-cta:hover { background: var(--orange2); transform: scale(1.03); }

  /* MAIN */
  main { max-width: 900px; margin: 0 auto; padding: 48px 24px 80px; }

  .section-intro {
    text-align: center; margin-bottom: 40px;
  }
  .section-intro p {
    color: var(--muted); font-size: 0.9rem; max-width: 600px; margin: 0 auto;
  }

  /* ACORDEÓN */
  .category { margin-bottom: 12px; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }

  .category-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; background: var(--surface);
    cursor: pointer; user-select: none;
    transition: background 0.2s;
  }
  .category-header:hover { background: var(--surface2); }

  .category-header-left { display: flex; align-items: center; gap: 14px; }
  .category-icon { font-size: 1.4rem; }
  .category-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.15rem; letter-spacing: 2px; color: var(--text);
  }
  .category-count {
    font-size: 0.75rem; color: var(--muted);
    background: var(--surface2); border: 1px solid var(--border);
    border-radius: 12px; padding: 2px 8px;
  }
  .category-arrow {
    color: var(--orange); font-size: 1rem;
    transition: transform 0.25s;
  }
  .category.open .category-arrow { transform: rotate(180deg); }

  .category-body {
    display: none;
    background: var(--bg);
  }
  .category.open .category-body { display: block; }

  /* TABLA */
  table { width: 100%; border-collapse: collapse; }
  thead tr { border-bottom: 1px solid var(--border); }
  thead th {
    padding: 10px 16px; text-align: left;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px;
    color: var(--muted); text-transform: uppercase;
  }
  thead th:last-child { text-align: right; }
  tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
  tbody tr:last-child { border-bottom: none; }
  tbody tr:hover { background: var(--surface); }
  tbody td { padding: 10px 16px; font-size: 0.88rem; }
  .td-code {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem; color: var(--muted); white-space: nowrap;
  }
  .td-unit { color: var(--muted); font-size: 0.8rem; }
  .td-price {
    text-align: right; font-weight: 600;
    color: var(--orange); white-space: nowrap;
  }

  /* AVISO */
  .aviso {
    margin-top: 40px; padding: 16px 20px;
    background: var(--surface); border: 1px solid var(--border);
    border-left: 3px solid var(--orange); border-radius: 6px;
    font-size: 0.85rem; color: var(--muted); line-height: 1.6;
  }
  .aviso strong { color: var(--text); }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 24px 40px; text-align: center;
    color: var(--muted); font-size: 0.8rem;
  }
  footer a { color: var(--muted); text-decoration: none; }
  footer a:hover { color: var(--orange); }

  @media (max-width: 600px) {
    nav { padding: 0 16px; }
    .page-hero { padding: 48px 20px 40px; }
    main { padding: 32px 16px 60px; }
    .td-code { display: none; }
    thead th:nth-child(1) { display: none; }
  }
