    :root {
      --bg: #be1616;
      --bg-dark: #900f0f;
      --text: #ffffff;
      --muted: rgba(255,255,255,.82);
      --card: rgba(255,255,255,.06);
      --line: rgba(255,255,255,.18);
      --shadow: 0 18px 50px rgba(0,0,0,.28);
      --radius: 22px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body {
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.2;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .page {
      width: 100%;
      min-height: 100vh;
      background: var(--bg);
    }

    .section {
      width: 100%;
      padding: 24px 16px;
    }

    .container {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
    }

    /* ========== HERO (fondo con contain como se pide) ========== */
    .hero {
      position: relative;
      min-height: 920px;
      background-image: var(--hero-bg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      overflow: hidden;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 120px;
      background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.12));
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
      padding: 42px 0 28px;
      min-height: 880px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    /* Logo: en escritorio se mantiene igual */
    .brand {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      padding-top: 10px;
    }

    .brand .logo {
      width: min(395px, 72vw);
      height: auto;
      filter: brightness(0) invert(1);
      transition: width 0.2s ease;
    }

    /* hero copy (textos) se mantienen visibles en escritorio */
    .hero-copy {
      max-width: 640px;
      padding-top: 40px;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 999px;
      background: rgba(0,0,0,.12);
      font-size: 12px;
      letter-spacing: .2em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .hero-title {
      margin: 0;
      font-size: clamp(34px, 7vw, 76px);
      line-height: .95;
      letter-spacing: -.03em;
      text-transform: uppercase;
    }

    .hero-text {
      margin: 16px 0 0;
      max-width: 54ch;
      color: var(--muted);
      font-size: 16px;
    }

    /* Álbums en escritorio: grid normal */
    .albums {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 16px;
      margin-top: 24px;
    }

    .album {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
      transition: transform 0.25s ease, filter 0.2s;
    }
    /* EFECTO ZOOM en álbumes (escritorio) */
    .album:hover {
      transform: translateY(-5px) scale(1.03);
    }
    .album:hover .album-art {
      box-shadow: 0 12px 24px rgba(0,0,0,0.4);
      transition: box-shadow 0.2s;
    }

    .album-art {
      width: 100%;
      aspect-ratio: 1 / 1;
      background-image: var(--art-bg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
      
      transition: box-shadow 0.2s;
    }

    .album-name {
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.95);
      min-height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* socials escritorio */
    .socials {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      justify-content: center;
      margin-top: 28px;
      padding-bottom: 8px;
    }

    .social {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .social i {
      color: #000;
      opacity: 0.8;
    }
    .social:hover {
      transform: scale(1.1);
      transition: .2s;
    }

    .email {
      font-size: 14px;
      color: rgba(255,255,255,.94);
      letter-spacing: .02em;
      margin-left: 6px;
    }

    /* SECCIONES (merch, outro) sin cambios */
    .section-title {
      margin: 0 0 24px;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: 13px;
      font-weight: 800;
    }

    .grid-products {
      display: grid;
      grid-template-columns: 1fr;
      gap: 26px;
      justify-items: center;
    }

    .product-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 26px;
      width: 100%;
      justify-items: center;
    }

    .product-card {
      width: 100%;
      text-align: center;
      transition: transform 0.25s ease;
      cursor: pointer;
    }
    /* EFECTO ZOOM en productos */
    .product-card:hover {
      transform: translateY(-6px);
    }
    .product-card:hover .product-media {
     
      transform: scale(1.02);
      transition: all 0.25s ease;
    }

    .product-media {
      width: 100%;
      min-height: 400px;
      background-image: var(--product-bg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
      border-radius: 16px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .product-title {
      margin: 12px 0 0;
      font-size: 13px;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .cd-wrap {
      display: flex;
      justify-content: center;
      margin-top: 8px;
    }

    .cd {
      width: min(260px, 72vw);
      aspect-ratio: 1 / 1;
      background-image: var(--cd-bg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
     
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .cd:hover {
      transform: scale(1.02);
      box-shadow: 0 12px 24px rgba(0,0,0,0.4);
    }

    .outro {
      position: relative;
      background:
        linear-gradient(rgba(120, 0, 0, .62), rgba(120, 0, 0, .62)),
        var(--outro-bg, linear-gradient(135deg, #5b0000, #b11818));
      background-size: cover;
      background-position: center;
      overflow: hidden;
      display: grid;
      place-items: end center;
      padding: 0;
    }

    .outro-mark {
      width: min(820px, 92vw);
      display: grid;
      justify-items: center;
      gap: 18px;
      text-align: center;
    }

    .outro-icon {
      width: min(500px, 90vw);
      aspect-ratio: 1 / 1;
      background:
        var(--mark-bg, linear-gradient(135deg, #111, #444));
      background-size: cover;
      background-position: center;
      border-radius: 28px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,.12);
    }

    .outro-logo {
      width: min(240px, 60vw);
      filter: brightness(0) invert(1);
      opacity: .98;
    }

    .placeholder {
      display: grid;
      place-items: center;
      text-align: center;
      padding: 16px;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      line-height: 1.4;
      border: 1px dashed rgba(255,255,255,.2);
      border-radius: inherit;
      background: rgba(0,0,0,.08);
    }

    .placeholder span {
      display: block;
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      margin-top: 8px;
      opacity: .85;
    }

    /* ---------- SLIDER PARA MÓVIL (nuevo, solo visible en mobile) ---------- */
    .mobile-albums-slider {
      display: none;
      background: transparent;
      width: 100%;
      padding: 28px 16px 32px 16px;
      margin-top: 0;
    }

    .slider-title {
      text-align: center;
      font-size: 12px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 20px;
      opacity: 0.85;
      display: none;
    }

    .slider-container {
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: rgba(255,255,255,0.4) rgba(255,255,255,0.1);
      padding-bottom: 12px;
      /* INDICADOR SUTIL: degradado en el borde derecho */
      position: relative;
    }
    /* Degradado para indicar scroll hacia la derecha */
    .slider-container::after {
      content: '';
      position: sticky;
      right: 0;
      top: 0;
      bottom: 0;
      width: 40px;
      height: 100%;
      background: linear-gradient(to left, rgba(0,0,0,0.2), transparent);
      pointer-events: none;
      display: block;
      float: right;
      margin-left: -40px;
    }
    /* Hacemos que se vea parte del siguiente elemento */
    .slider-track {
      display: flex;
      gap: 18px;
      width: max-content;
      padding: 4px 8px 8px 8px;
    }
    /* Aseguramos que el primer elemento no tape el indicador */
    .slider-container {
      scroll-padding-right: 20px;
    }

    .slider-container::-webkit-scrollbar {
      height: 4px;
    }
    .slider-container::-webkit-scrollbar-track {
      background: rgba(255,255,255,0.1);
      border-radius: 10px;
    }
    .slider-container::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,0.4);
      border-radius: 10px;
    }

    .slider-album {
      scroll-snap-align: start;
      width: 150px;
      flex-shrink: 0;
      text-align: center;
      transition: transform 0.2s ease;
    }
    /* efecto zoom también en slider (opcional, para ratón) */
    .slider-album:hover {
      transform: scale(1.03);
    }
    .slider-album .album-art {
      width: 150px;
      height: 150px;
      margin-bottom: 8px;
     
      transition: box-shadow 0.2s;
    }
    .slider-album:hover .album-art {
      box-shadow: 0 8px 18px rgba(0,0,0,0.4);
    }

    .slider-album .album-name {
      font-size: 11px;
      letter-spacing: .1em;
      white-space: normal;
      word-break: keep-all;
    }

    /* socials móvil (versión clonada, solo en mobile) */
    .mobile-socials {
      display: none;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin-bottom: 28px;
      padding: 12px 16px 24px;
      background: transparent;
    }

    /* ========== MEDIA QUERIES: MÓVIL ========== */
    @media (max-width: 640px) {
      .hero {
        min-height: 280px;
        background-size: cover;
        background-position: center 20%;
      }
      
      .hero-inner {
        min-height: auto;
        padding: 6px 0 0 0;
        justify-content: flex-start;
      }

      .brand {
        padding-top: 8px;
        justify-content: flex-start;
      }
      .brand .logo {
        width: 150px;
        max-width: 36vw;
      }

      .hero-copy {
        display: none;
      }

      .hero-inner .albums {
        display: none;
      }

      .hero-inner .socials {
        display: none;
      }

      .mobile-albums-slider {
        display: block;
        margin-top: 12px;
      }

      .mobile-socials {
        display: flex;
      }

      .hero::after {
        height: 40px;
        opacity: 0.5;
      }

      .section {
        padding: 20px 16px;
      }

      .product-row {
        grid-template-columns: 1fr;
        gap: 26px;
      }
      
      .albums, .product-row {
        gap: 12px;
      }

      .hero-inner {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
      }

      .brand {
        margin-left: 0;
      }
      .product-media {
        width: 100%;
        min-height: 330px;
        background-image: var(--product-bg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
      }
      .outro {
        padding: 0;
      }
    }

    /* tablet / landscape */
    @media (max-width: 1024px) and (min-width: 641px) {
      .albums { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .hero { min-height: auto; }
      .hero-inner { min-height: auto; }
      .product-row { grid-template-columns: 1fr; }
      .mobile-albums-slider, .mobile-socials {
        display: none;
      }
    }

    /* escritorio */
    @media (min-width: 1025px) {
      .mobile-albums-slider, .mobile-socials {
        display: none !important;
      }
      .hero-inner .albums {
        display: grid !important;
      }
      .hero-inner .socials {
        display: flex !important;
      }
      .hero-copy {
        display: block !important;
      }
    }
    .footer-stack {
      position: relative;
      width: 100%;
    }

    .footer-bg {
      width: 100%;
      display: block;
    }

    .footer-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 85%;
    }

.footer-logo {
    position: absolute;
    top: 92%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(372px, 24vw);
    height: auto;
    z-index: 2;
    opacity: 1;
}