/* ================================================================
   PLANTILLA GENÉRICA — style.css
   Dark-Premium · Production Ready
   ================================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.65; color: #1a1a1a; background: #fff; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

/* ── Design Tokens ── */
:root {
  /* Palette */
  --black:      #0a0a0a;
  --white:      #ffffff;
  --gray-50:    #f8f8f8;
  --gray-100:   #f2f2f2;
  --gray-150:   #eaeaea;
  --gray-200:   #e0e0e0;
  --gray-300:   #c8c8c8;
  --gray-400:   #a0a0a0;
  --gray-500:   #707070;
  --gray-700:   #3a3a3a;
  --gray-900:   #111111;
  --surface:    #1c1c1e;
  /* Brand gradient — personaliza aquí */
  --brand-grad: linear-gradient(135deg, #f09433 0%, #e6683c 20%, #dc2743 40%, #cc2366 70%, #bc1888 100%);
  --brand-color: #e1306c;
  --social2-color: #1877f2;
  --social3-color: #010101;
  /* Accent */
  --accent: #0a84ff;
  /* Typography */
  --f-display: 'Sora', sans-serif;
  --f-body:    'DM Sans', sans-serif;
  /* Spacing */
  --container: 1200px;
  --gutter:    clamp(18px, 4vw, 36px);
  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 9999px;
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.15s ease;
  --t-mid:  0.25s ease;
  --t-slow: 0.4s var(--ease-out);
  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.18);
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Section labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.section-label--light { color: rgba(255,255,255,.45); }
.section-label--dark  { color: rgba(255,255,255,.45); }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.12;
  color: var(--gray-900);
  margin-bottom: 48px;
}

/* ── Social icons ── */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  color: var(--gray-500);
  background: var(--gray-100);
  border: 1px solid var(--gray-150);
  transition: color var(--t-mid), background var(--t-mid), border-color var(--t-mid),
              transform var(--t-mid), box-shadow var(--t-mid);
  flex-shrink: 0;
  cursor: pointer;
}
.social-icon svg { width: 19px; height: 19px; pointer-events: none; }

.social-icon--hero { width: 42px; height: 42px; }
.social-icon--hero svg { width: 21px; height: 21px; }

.social-icon--ig:hover {
  color: #fff;
  background: var(--brand-color);
  border-color: var(--brand-color);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 20px rgba(225,48,108,.38);
}
.social-icon--fb:hover {
  color: #fff;
  background: var(--social2-color);
  border-color: var(--social2-color);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 20px rgba(24,119,242,.3);
}
.social-icon--tt:hover {
  color: #fff;
  background: #111;
  border-color: #333;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: all var(--t-mid);
  min-height: 50px;
  border: none;
  white-space: nowrap;
}
.btn__svg { width: 19px; height: 19px; flex-shrink: 0; }

.btn--ig {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(225,48,108,.42);
  cursor: default;
}
.btn--ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(225,48,108,.55);
}

.btn--ghost {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
}
.btn--outline-dark:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
  transform: translateY(-2px);
}


/* ================================================================
   HEADER
   ================================================================ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: border-color var(--t-mid), box-shadow var(--t-mid), background var(--t-mid);
}
.header.scrolled {
  background: rgba(10,10,10,.96);
  border-bottom-color: rgba(255,255,255,.1);
  box-shadow: 0 1px 24px rgba(0,0,0,.4);
}

.header__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 20px;
}

.header__logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.header__logo-img {
  height: 34px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}
/* Texto alternativo si no hay imagen de logo */
.header__logo-text {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  opacity: .9;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  padding: 7px 14px;
  border-radius: var(--r-full);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Brand pill in header */
.header__ig-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px 7px 10px;
  background: var(--brand-grad);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  white-space: nowrap;
  cursor: default;
}
.header__ig-pill svg { width: 17px; height: 17px; flex-shrink: 0; }
.header__ig-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(225,48,108,.5);
}

.header .social-icon {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
}
.header .social-icon--fb:hover { background: var(--social2-color); border-color: var(--social2-color); color:#fff; }
.header .social-icon--tt:hover { background: #222; border-color: #444; color:#fff; }

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--t-fast);
}
.header__burger:hover { background: rgba(255,255,255,.12); }
.header__burger span {
  display: block;
  width: 20px; height: 1.8px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-mid);
  transform-origin: center;
}
.header__burger.is-active span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.header__burger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__burger.is-active span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,.97);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px var(--gutter) 28px;
}
.mobile-drawer.is-open { display: flex; }

.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 20px;
}
.mobile-drawer__link {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--t-fast);
}
.mobile-drawer__link:hover { color: #fff; }

.mobile-drawer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.mobile-drawer__ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--brand-grad);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 600;
  flex: 1;
  justify-content: center;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  cursor: default;
}
.mobile-drawer__ig-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.mobile-drawer__ig-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(225,48,108,.45); }

.mobile-drawer__others {
  display: flex;
  gap: 10px;
}
.mobile-drawer .social-icon {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
}


/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  max-height: 880px;
  display: flex;
  align-items: center;
  padding-top: 66px;
  background: var(--black);
  overflow: hidden;
}

/* Background layers */
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero__bg-noise {
  position: absolute; inset: 0;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}
.hero__bg-glow-a {
  position: absolute;
  top: -160px; right: -100px;
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(225,48,108,.11) 0%, transparent 65%);
  filter: blur(50px);
}
.hero__bg-glow-b {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(10,132,255,.08) 0%, transparent 65%);
  filter: blur(50px);
}
.hero__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 100%);
}

/* Layout — two-column, centered */
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  width: 100%;
}

/* ── Eyebrow ── */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.34);
  margin-bottom: 14px;
}
.hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-color);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(225,48,108,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(225,48,108,0); }
}

/* ── Title ── */
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}
.hero__title-ig {
  font-style: italic;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: .1em;
}

/* ── Subtitle ── */
.hero__sub {
  font-size: clamp(13.5px, 1.1vw, 15.5px);
  color: rgba(255,255,255,.4);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── CTA buttons ── */
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* ── Meta row ── */
.hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__social-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__social-row > span:first-child {
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  padding-right: 8px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero__social-row .social-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.38);
}
.hero__social-row .social-icon svg { width: 15px; height: 15px; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.26);
  font-style: italic;
}
.hero__trust-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}

/* ── Visual / Card Stack ── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__card-stack {
  position: relative;
  width: 230px; height: 270px;
}
.hero__card {
  position: absolute;
  border-radius: var(--r-2xl);
}
.hero__card--c {
  inset: 0;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
  transform: rotate(-6deg) translateY(10px);
}
.hero__card--b {
  inset: 0;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.07);
  transform: rotate(-2.5deg) translateY(4px);
}
.hero__card--a {
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(8px);
  transform: rotate(1.5deg);
  overflow: hidden;
}
.hero__card-inner {
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__card-ig-icon svg { width: 44px; height: 44px; }
.hero__card-lines {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hero__card-lines span {
  display: block;
  height: 7px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.07);
}
.hero__card-lines span:nth-child(1) { width: 70%; }
.hero__card-lines span:nth-child(2) { width: 50%; }
.hero__card-lines span:nth-child(3) { width: 82%; }

.hero__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r-full);
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  width: fit-content;
}
.hero__card-badge svg { width: 13px; height: 13px; }

/* Floating tags */
.hero__float-a,
.hero__float-b,
.hero__float-c {
  position: absolute;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--r-full);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  pointer-events: none;
}
.hero__float-a {
  top: 6px; right: -14px;
  background: rgba(225,48,108,.13);
  border: 1px solid rgba(225,48,108,.2);
  color: rgba(255,165,185,.88);
  animation: floatA 3.5s ease-in-out infinite;
}
.hero__float-b {
  bottom: 48px; left: -20px;
  background: rgba(10,132,255,.1);
  border: 1px solid rgba(10,132,255,.17);
  color: rgba(130,190,255,.88);
  animation: floatB 4s ease-in-out infinite;
}
.hero__float-c {
  bottom: 12px; right: 4px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.52);
  animation: floatA 4.5s ease-in-out infinite reverse;
}
@keyframes floatA {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}


/* ================================================================
   STATS BAR
   ================================================================ */
.statsbar {
  background: #141414;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
}
.statsbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.statsbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 48px;
}
.statsbar__item strong {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: #fff;
}
.statsbar__item span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.statsbar__sep {
  width: 1px; height: 44px;
  background: rgba(255,255,255,.1);
}


/* ================================================================
   PROPUESTA DE VALOR
   ================================================================ */
.valor {
  padding: 100px 0;
  background: #fff;
}
.valor__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.valor-card {
  padding: 28px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-xl);
  transition: all var(--t-mid);
}
.valor-card:hover {
  background: #fff;
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.valor-card__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-900);
  border-radius: var(--r-md);
  margin-bottom: 20px;
  color: rgba(255,255,255,.85);
}
.valor-card__icon svg { width: 22px; height: 22px; }
.valor-card h3 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.valor-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}


/* ================================================================
   CATEGORÍAS
   ================================================================ */
.categorias {
  padding: 0 0 100px;
  background: #fff;
}
.categorias__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-150);
  border-radius: var(--r-lg);
  transition: all var(--t-mid);
  cursor: pointer;
}
.cat-card:hover {
  background: var(--gray-900);
  border-color: var(--gray-900);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cat-card__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--gray-150);
  border-radius: var(--r-md);
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  transition: background var(--t-mid), border-color var(--t-mid), color var(--t-mid);
}
.cat-card:hover .cat-card__icon {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.cat-card__icon svg { width: 20px; height: 20px; }
.cat-card__info { flex: 1; min-width: 0; }
.cat-card__info h3 {
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--t-mid);
}
.cat-card:hover .cat-card__info h3 { color: #fff; }
.cat-card__info span {
  font-size: 11.5px;
  color: var(--gray-400);
  transition: color var(--t-mid);
}
.cat-card:hover .cat-card__info span { color: rgba(255,255,255,.4); }
.cat-card__arr {
  font-size: 16px;
  color: var(--gray-300);
  transition: color var(--t-mid), transform var(--t-mid);
}
.cat-card:hover .cat-card__arr {
  color: rgba(255,255,255,.5);
  transform: translateX(3px);
}


/* ================================================================
   CATÁLOGO
   ================================================================ */
.catalogo {
  padding: 0 0 100px;
  background: var(--gray-50);
}
.catalogo .section-title { color: var(--gray-900); }

.cat-block { margin-bottom: 68px; }

.cat-block__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.cat-block__title {
  font-family: var(--f-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -.02em;
  white-space: nowrap;
}
.cat-block__rule {
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.cat-block__count {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--gray-400);
  background: #fff;
  border: 1px solid var(--gray-200);
  padding: 3px 10px;
  border-radius: var(--r-full);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.products-grid--solo {
  grid-template-columns: repeat(4, 1fr);
}

/* Product card */
.product-card {
  background: #fff;
  border: 1px solid var(--gray-150);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t-slow);
}
.product-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.product-card__media {
  aspect-ratio: 1;
  background: var(--gray-100);
  overflow: hidden;
  flex-shrink: 0;
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.product-card:hover .product-card__img { transform: scale(1.06); }

/* Placeholder para imágenes — muestra patrón gris */
.product-card__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gray-100) 25%, var(--gray-150) 50%, var(--gray-100) 75%);
  background-size: 200% 200%;
  animation: shimmer 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__placeholder::after {
  content: "";
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gray-200);
  opacity: .6;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-card__name {
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.45;
  flex: 1;
}
.product-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  background: var(--gray-900);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
  min-height: 36px;
  transition: all var(--t-fast);
  cursor: default;
}
.product-card__btn:hover {
  background: var(--brand-grad);
  box-shadow: 0 4px 14px rgba(225,48,108,.4);
}


/* ================================================================
   CONTACTO
   ================================================================ */
.contacto {
  position: relative;
  padding: 100px 0;
  background: var(--black);
  overflow: hidden;
}
.contacto__bg { position: absolute; inset: 0; pointer-events: none; }
.contacto__glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(225,48,108,.12) 0%, transparent 65%);
  filter: blur(40px);
}

.contacto__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.contacto__title {
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: #fff;
  margin: 12px 0 16px;
}
.contacto__desc {
  font-size: 15.5px;
  color: rgba(255,255,255,.4);
  line-height: 1.75;
  max-width: 400px;
}

.contacto__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--r-xl);
  border: 1px solid;
  transition: all var(--t-mid);
  cursor: pointer;
}
.contact-card__icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-lg);
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__info { flex: 1; }
.contact-card__info strong {
  display: block;
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 2px;
}
.contact-card__info span {
  font-size: 13px;
  opacity: .55;
}
.contact-card__arr { width: 18px; height: 18px; flex-shrink: 0; opacity: .4; transition: transform var(--t-mid), opacity var(--t-mid); }
.contact-card:hover .contact-card__arr { transform: translateX(4px); opacity: .7; }

/* Card principal */
.contact-card--ig {
  background: linear-gradient(135deg, rgba(240,148,51,.12), rgba(220,39,67,.12), rgba(188,24,136,.12));
  border-color: rgba(240,148,51,.2);
  color: rgba(255,200,150,.9);
}
.contact-card--ig .contact-card__icon {
  background: linear-gradient(135deg, rgba(240,148,51,.2), rgba(188,24,136,.2));
  border: 1px solid rgba(240,148,51,.2);
  color: #f09433;
}
.contact-card--ig:hover {
  background: var(--brand-grad);
  border-color: transparent;
  color: #fff;
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(225,48,108,.45);
}
.contact-card--ig:hover .contact-card__icon { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.2); color: #fff; }

.contact-card--fb {
  background: rgba(24,119,242,.08);
  border-color: rgba(24,119,242,.18);
  color: rgba(130,180,255,.85);
}
.contact-card--fb .contact-card__icon {
  background: rgba(24,119,242,.12);
  border: 1px solid rgba(24,119,242,.2);
  color: #60a5fa;
}
.contact-card--fb:hover {
  background: var(--social2-color);
  border-color: transparent;
  color: #fff;
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(24,119,242,.35);
}
.contact-card--fb:hover .contact-card__icon { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.2); color: #fff; }

.contact-card--tt {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
}
.contact-card--tt .contact-card__icon {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
}
.contact-card--tt:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: #fff;
  transform: translateX(6px);
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: #050505; padding-top: 56px; }

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer__logo {
  height: 30px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .7;
}
/* Texto alternativo si no hay imagen de logo */
.footer__logo-text {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.7);
}
.footer__tagline {
  font-size: 11px;
  color: rgba(255,255,255,.22);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 8px;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__link {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  transition: color var(--t-fast);
  padding: 4px 0;
}
.footer__link:hover { color: rgba(255,255,255,.8); }

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.footer .social-icon {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.4);
}
.footer .social-icon--ig:hover { background: var(--brand-color); border-color: var(--brand-color); color: #fff; }
.footer .social-icon--fb:hover { background: var(--social2-color); border-color: var(--social2-color); color: #fff; }
.footer .social-icon--tt:hover { background: #222; border-color: #333; color: #fff; }

.footer__bottom { padding: 20px 0; }
.footer__bottom p {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.16);
  letter-spacing: .04em;
}


/* ================================================================
   RESPONSIVE — TABLET ≤ 1024px
   ================================================================ */
@media (max-width: 1024px) {
  .valor__grid      { grid-template-columns: repeat(2, 1fr); }
  .categorias__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .products-grid    { grid-template-columns: repeat(3, 1fr); }
  .hero__visual     { display: none; }
  .hero             { height: auto; min-height: 100vh; max-height: none; }
  .hero__inner      { grid-template-columns: 1fr; text-align: center; padding: 48px 0 56px; }
  .hero__sub        { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__cta-row    { justify-content: center; }
  .hero__meta       { justify-content: center; }
  .hero__social-row { justify-content: center; }
  .contacto__inner  { grid-template-columns: 1fr; gap: 48px; }
  .contacto__desc   { max-width: 100%; }
}

/* ── Hamburger visible ≤ 860px ── */
@media (max-width: 860px) {
  .header__nav      { display: none; }
  .header__ig-pill  { display: none; }
  .header .social-icon { display: none; }
  .header__burger   { display: inline-flex; }

  .categorias__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner    { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer__social   { justify-content: center; }
}

/* ── Mobile ≤ 640px ── */
@media (max-width: 640px) {
  :root { --gutter: 16px; }

  html, body { overflow-x: hidden; }
  .hero        { overflow: hidden; }
  .hero__inner { overflow: hidden; }

  .valor__grid      { grid-template-columns: 1fr; gap: 12px; }
  .categorias__grid { grid-template-columns: 1fr; gap: 8px; }
  .products-grid    { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .hero__title  { font-size: 28px; line-height: 1.12; }
  .hero__sub    { font-size: 13.5px; }
  .hero__cta-row { flex-direction: column; align-items: stretch; gap: 8px; }
  .btn          { font-size: 14px; padding: 13px 22px; min-height: 48px; justify-content: center; }

  .statsbar__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .statsbar__sep  { display: none; }
  .statsbar__item { padding: 14px 16px; }

  .contacto__inner { gap: 36px; }
  .contact-card    { padding: 15px 16px; }

  .section-title   { margin-bottom: 28px; }
  .valor           { padding: 64px 0; }
  .categorias      { padding-bottom: 64px; }
  .catalogo        { padding-bottom: 64px; }
  .contacto        { padding: 64px 0; }

  .product-card__body { padding: 12px; gap: 10px; }
  .product-card__name { font-size: 13px; }
  .product-card__btn  { font-size: 11.5px; padding: 8px 12px; }

  .cat-block__head { flex-wrap: wrap; }
}

@media (max-width: 400px) {
  :root { --gutter: 14px; }
  .hero__title  { font-size: 26px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}