/* ============================================================
   SOLUCIONES ESTRUCTURALES — Estilos principales
   style.css  |  Versión 1.0  |  2025
   ============================================================
   Estructura:
   1. Tokens (variables CSS)
   2. Reset base
   3. Tipografía
   4. Navegación
   5. Menú móvil
   6. Hero
   7. Catálogo — filtros
   8. Catálogo — tarjetas
   9. Banner CTA WhatsApp
   10. Footer
   11. Animaciones y utilidades
   12. Media queries
   ============================================================ */


/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  /* Colores */
  --color-black:   #0a0a0a;
  --color-steel:   #1a1a1e;
  --color-iron:    #2c2c30;
  --color-ash:     #4a4a50;
  --color-silver:  #9a9aa2;
  --color-smoke:   #c8c8cc;
  --color-white:   #f5f5f0;
  --color-brand:   #FF6201;
  --color-brand2:  #ff7d28;
  --color-wa:      #25d366;
  --color-wa-dark: #20c05a;

  /* Tipografía */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Espaciado base */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Bordes */
  --radius: 6px;

  /* Animación */
  --ease-out-back: cubic-bezier(.22,.68,0,1.2);
  --ease-out:      cubic-bezier(.25,.46,.45,.94);

  /* Sombras */
  --shadow-brand: 0 4px 20px rgba(255,98,1,.3);
  --shadow-wa:    0 4px 20px rgba(37,211,102,.25);
}


/* ============================================================
   2. RESET BASE (mobile-first)
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-smoke);
  overflow-x: hidden;
  line-height: 1.6;
}

img, video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* Scrollbar personalizada */
::-webkit-scrollbar        { width: 3px; }
::-webkit-scrollbar-track  { background: var(--color-black); }
::-webkit-scrollbar-thumb  { background: var(--color-brand); border-radius: 2px; }


/* ============================================================
   3. TIPOGRAFÍA — clases reutilizables
   ============================================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 0.7rem;
}

.section-tag::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--color-brand);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 0.92;
  letter-spacing: 0.02em;
  font-size: clamp(2.2rem, 8vw, 4.2rem);
}

.section-title span {
  color: var(--color-brand);
}

.section-lead {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-silver);
  line-height: 1.7;
  max-width: 500px;
  margin-top: 0.9rem;
}


/* ============================================================
   4. NAVEGACIÓN
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
}

/* Estado al hacer scroll */
.nav.scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,98,1,0.15);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 60px;
}

/*
  Logo — un solo SVG, escalado por CSS.
  En móvil: max-width corto → solo se ve el símbolo izquierdo.
  En desktop: max-width amplio → se ve el símbolo + texto completo.
  El SVG tiene viewBox="0 0 598 111" (símbolo ocupa los primeros ~248px).
*/
.nav-logo .logo-icon {
  display: block;
  height: 36px;
  width: auto;
}

.nav-logo .logo-full {
  display: block;
  height: 46px;
  width: auto;
  
}

/* Links de navegación — ocultos en móvil */
.nav-links {
  display: none;
}

/* Botón CTA de nav — oculto en móvil */
.nav-cta {
  display: none;
}

/* Botón hamburguesa */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-smoke);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburguesa activa → X */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   5. MENÚ MÓVIL (overlay)
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(10,10,10,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease-out-back);
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}

.mobile-menu li a {
  font-family: var(--font-heading);
  font-size: 3rem;
  letter-spacing: 0.06em;
  color: var(--color-white);
  transition: color 0.3s;
}

.mobile-menu li a:hover {
  color: var(--color-brand);
}

/* Botón WhatsApp dentro del menú móvil */
.mobile-menu .mm-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-wa);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  margin-top: 0.5rem;
}

.mobile-menu .mm-wa svg {
  width: 20px;
  height: 20px;
}


/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh; /* safe-area para iOS */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 3.5rem;
  overflow: hidden;
}

/* Video de fondo */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay en capas */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.7) 100%),
    linear-gradient(
      to top,
      rgba(10,10,10,1.0)  0%,
      rgba(10,10,10,0.75) 20%,
      rgba(10,10,10,0.0)  55%
    );
}

/* Contenido centrado */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.4rem;
  width: 100%;
  max-width: 860px;
}

/* Título principal */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 14vw, 8rem);
  line-height: 0.9;
  color: var(--color-white);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
  opacity: 0;
  animation: anim-fade-up 0.8s 0.4s var(--ease-out-back) forwards;
}

.hero-title span {
  color: var(--color-brand);
}

/* Subtítulo */
.hero-sub {
  font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  font-weight: 300;
  color: var(--color-smoke);
  margin: 1rem auto 2rem;
  max-width: 500px;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9);
  opacity: 0;
  animation: anim-fade-up 0.7s 0.65s var(--ease-out-back) forwards;
}

/* Botones del hero */
.hero-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  opacity: 0;
  animation: anim-fade-up 0.7s 0.85s var(--ease-out-back) forwards;
}

/* Botón primario (relleno naranja) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-black);
  background: var(--color-brand);
  padding: 1rem 2.2rem;
  border: none;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary:hover {
  background: var(--color-brand2);
  transform: translateY(-2px);
}

/* Botón fantasma (borde claro) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-smoke);
  background: transparent;
  border: 1px solid rgba(200,200,204,0.3);
  padding: 0.95rem 1.8rem;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--color-brand);
  color: var(--color-white);
}


/* ============================================================
   7. CATÁLOGO — Filtros y cabecera
   ============================================================ */
#catalogo {
  padding: 4rem 1.2rem 5rem;
}

.cat-header {
  margin-bottom: 2.5rem;
}

/* Barra de tabs — scroll horizontal en móvil */
.cat-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  scrollbar-width: none;
}

.cat-tabs::-webkit-scrollbar {
  display: none;
}

/* Tab individual */
.cat-tab {
  flex-shrink: 0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--color-silver);
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  -webkit-tap-highlight-color: transparent;
}

.cat-tab:hover {
  background: rgba(255,98,1,0.08);
  color: var(--color-smoke);
  border-color: rgba(255,98,1,0.3);
}

.cat-tab.active {
  background: var(--color-brand);
  color: var(--color-black);
  border-color: var(--color-brand);
}


/* ============================================================
   8. CATÁLOGO — Tarjetas de producto
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Tarjeta base */
.pcard {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-iron);
  aspect-ratio: 4/3;
  cursor: pointer;
}

/* Tarjeta destacada (ocupa todo el ancho) */
.pcard.card-featured {
  aspect-ratio: 16/9;
}

/* Imagen de fondo */
.pcard-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s var(--ease-out-back);
}

.pcard:hover .pcard-img {
  transform: scale(1.06);
}

/* Overlay degradado sobre la imagen */
.pcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.96) 0%,
    rgba(10,10,10,0.45) 45%,
    rgba(10,10,10,0.10) 100%
  );
}

/* Cuerpo de texto */
.pcard-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.3rem;
  z-index: 2;
  transform: translateY(4px);
  transition: transform 0.35s var(--ease-out-back);
}

.pcard:hover .pcard-body {
  transform: translateY(0);
}

/* Etiqueta de categoría */
.pcard-cat {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-brand);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

/* Nombre del producto */
.pcard-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  line-height: 1;
  letter-spacing: 0.03em;
}

.pcard.card-featured .pcard-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

/* Descripción — aparece al hover */
.pcard-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-silver);
  line-height: 1.55;
  margin-top: 0.4rem;
  max-width: 340px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s 0.05s, transform 0.3s 0.05s var(--ease-out-back);
}

.pcard:hover .pcard-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Link a WhatsApp — aparece al hover */
.pcard-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-wa);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s 0.1s, transform 0.25s 0.1s var(--ease-out-back);
}

.pcard:hover .pcard-wa {
  opacity: 1;
  transform: translateY(0);
}

.pcard-wa svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Badge de etiqueta (Destacado, Popular…) */
.pcard-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 3;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-black);
  background: var(--color-brand);
  padding: 0.25rem 0.7rem;
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
}

/* Tarjetas filtradas (ocultas) */
.pcard.hidden {
  display: none;
}

/* Estado vacío cuando el filtro no tiene resultados */
.cat-empty {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--color-ash);
  font-size: 0.9rem;
}


/* ============================================================
   9. BANNER CTA WHATSAPP
   ============================================================ */
.wa-banner {
  position: relative;
  overflow: hidden;
  background: var(--color-steel);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 1.4rem;
}

/* Líneas de cuadrícula decorativas */
.wa-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.018) 60px, rgba(255,255,255,0.018) 61px),
    repeating-linear-gradient(0deg,  transparent, transparent 60px, rgba(255,255,255,0.018) 60px, rgba(255,255,255,0.018) 61px);
}

/* Halo verde decorativo */
.wa-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Contenedor interior */
.wa-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Badge verde pulsante */
.wa-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-wa);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.wa-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-wa);
  flex-shrink: 0;
  animation: anim-pulse 2s ease infinite;
}

/* Título */
.wa-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  color: var(--color-white);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.wa-title span {
  color: var(--color-brand);
}

/* Descripción */
.wa-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-silver);
  line-height: 1.7;
  margin: 1.2rem 0 1.6rem;
  max-width: 480px;
}

/* Lista de features */
.wa-feats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wa-feat {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--color-smoke);
}

.wa-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
  flex-shrink: 0;
}

/* Columna derecha con botón */
.wa-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

/* Botón principal de WhatsApp */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-wa);
  border-radius: 4px;
  padding: 1.1rem 2rem;
  border: none;
  box-shadow: var(--shadow-wa);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  white-space: nowrap;
}

.wa-btn:hover {
  background: var(--color-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

.wa-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Texto auxiliar */
.wa-note {
  font-size: 0.72rem;
  color: var(--color-silver);
  letter-spacing: 0.08em;
}

.wa-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--color-smoke);
  font-weight: 500;
}

.wa-phone svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}


/* ============================================================
   10. FOOTER
   ============================================================ */
footer {
  background: var(--color-black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 1.4rem 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-silver);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-brand);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--color-ash);
}

.footer-copy span {
  color: var(--color-brand);
}


/* ============================================================
   11. ANIMACIONES Y UTILIDADES
   ============================================================ */

/* Entrada desde abajo */
@keyframes anim-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Pulso para el punto verde */
@keyframes anim-pulse {
  0%,  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50%        { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}

/* Clase reveal para scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out-back), transform 0.65s var(--ease-out-back);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   12. MEDIA QUERIES
   ============================================================ */

/* ── 480px: botones del hero en fila ── */
@media (min-width: 480px) {
  .hero-btns {
    flex-direction: row;
    justify-content: center;
  }
}

/* ── 600px: catálogo en 2 columnas ── */
@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
  }

  .pcard.card-featured {
    grid-column: 1 / -1;
  }
}

/* ── 768px: navegación desktop ── */
@media (min-width: 768px) {
  /* Nav */
  .nav { padding: 1.2rem 3rem; }
  .nav.scrolled { padding: 1rem 3rem; }

  /* Logo — en desktop: ocultar icono, mostrar logo completo */
  .nav-logo .logo-icon { display: none; }
  .nav-logo .logo-full { display: block; height: auto; width: auto; }

  /* Links de nav */
  .nav-links {
    display: flex;
    gap: 2rem;
  }

  .nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-smoke);
    position: relative;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-brand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-out-back);
  }

  .nav-links a:hover { color: var(--color-white); }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

  /* CTA de nav */
  .nav-cta {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--color-brand);
    padding: 0.6rem 1.4rem;
    border: none;
    clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
    transition: background 0.3s;
  }

  .nav-cta:hover { background: var(--color-brand2); }

  /* Ocultar hamburguesa */
  .hamburger { display: none; }

  /* Footer */
  footer { padding: 3rem 3rem 2.5rem; }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-links { justify-content: flex-start; }
}

/* ── 900px: catálogo en 3 columnas + banner en fila ── */
@media (min-width: 900px) {
  #catalogo { padding: 6rem 2.5rem 6rem; }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  .pcard { aspect-ratio: 3/4; }
  .pcard.card-featured { grid-column: span 2; aspect-ratio: auto; min-height: 380px; }

  /* Banner CTA */
  .wa-banner { padding: 6rem 4rem; }
  .wa-inner  { flex-direction: row; align-items: center; justify-content: space-between; gap: 4rem; }
  .wa-cta    { align-items: center; min-width: 260px; }
}

/* ── 1200px: ajustes de espaciado en pantallas grandes ── */
@media (min-width: 1200px) {
  #catalogo { padding: 7rem 4rem 7rem; }

  .product-grid { gap: 14px; }
}
