/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  color: #1d1d1f;
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* ===== NAV MINIMALISTA ===== */
/* ===== PROMO BANNER ===== */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(220, 38, 38, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 0 56px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.promo-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.promo-banner-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.promo-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red-600);
  white-space: nowrap;
}

.promo-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

.promo-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.promo-text strong {
  font-weight: 500;
  color: #ffffff;
}

.promo-cta {
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 5px 16px;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.promo-cta:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.07);
}

.promo-close {
  position: absolute;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  font-weight: 300;
}

.promo-close:hover {
  color: #ffffff;
}

/* ===== HERO — MINIMALISTA EDITORIAL ===== */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-background video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

/* Overlay mínimo — solo lo necesario para leer el texto */
.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* Línea roja vertical decorativa */
.hero::before {
  display: none;
}

@keyframes lineReveal {
  to { transform: scaleY(1); }
}

/* Contenedor principal: alineado a la izquierda */
.hero-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  margin: 0 auto;
  padding: 0 72px;
  max-width: 900px;
  margin: 0;
  padding: 0 40px;
  max-width: 1200px;
}

/* Indicador de acreditación: punto + texto */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  opacity: 0;
  animation: heroFadeUp 0.7s ease-out 0.3s forwards;
  white-space: nowrap;
  overflow: visible;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-red-600);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(220,38,38,0.8);
}

/* Título enorme, peso ligero, tracking negativo */
.hero-title {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300 !important;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin-bottom: 0;
  opacity: 0;
  animation: heroFadeUp 1s ease-out 0.55s forwards;
}

.hero-title strong {
  font-weight: 300 !important; /* Quita definitivamente el grosor de la palabra confianza */
  color: #ffffff;
}

.hero-title .accent {
  color: var(--color-red-600);
  font-weight: 300 !important;
}

/* Línea separadora fina */
.hero-rule {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 36px 0;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 0.8s forwards;
}

.hero-subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.62);
  margin-bottom: 48px;
  max-width: 420px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 0.95s forwards;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 1.1s forwards;
}

/* ===== BOTONES FLOTANTES TRANSPARENTES ===== */

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 102px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease-out 1.5s forwards;
}

.hero-scroll-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* Animación base hero */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive hero */
@media (max-width: 768px) {
  .hero-content { padding: 0 28px; max-width: 100%; }
  .hero::before { display: none; }
  .hero-scroll { display: none; }
}

/* Animación Hero — mantener compatibilidad con otras secciones */
@keyframes fadeInSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SECCIONES LABORATORIO (ALTERNADAS FULL-BLEED) ===== */
.labs-section {
  background: transparent;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lab-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: auto;
}

.lab-block.reverse {
  direction: rtl;
}

.lab-block.reverse > * {
  direction: ltr;
}

.lab-photo {
  overflow: hidden;
  position: relative;
}

.lab-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lab-block:hover .lab-photo img {
  transform: scale(1.04);
}

.lab-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: #ffffff;
}

.lab-block.reverse .lab-content {
  background: #ffffff;
}

.lab-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red-600);
  margin-bottom: 28px;
  border: 1px solid var(--color-red-600);
  padding: 6px 14px;
  width: fit-content;
}

.lab-content h2 {
  font-size: 54px;
  font-weight: 300 !important;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 28px;
}

.lab-content p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #555555;
  margin-bottom: 48px;
  max-width: 440px;
}

.lab-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e0e0e0;
}

.lab-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #000000;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888888;
}

.lab-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #000000;
  padding-bottom: 4px;
  width: fit-content;
  transition: gap 0.3s ease, opacity 0.3s ease;
}

.lab-cta:hover {
  gap: 20px;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .lab-block,
  .lab-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }
  .lab-photo {
    height: 60vw;
    min-height: 260px;
  }
  .lab-content {
    padding: 52px 28px;
  }
  .lab-content h2 {
    font-size: 38px;
  }
  .lab-stats {
    gap: 32px;
  }
  .stat-num {
    font-size: 28px;
  }
}

/* ===== SECCIÓN DIFERENCIADORES ===== */
.diferenciadores {
  background: transparent;
  padding: 120px 40px;
  border-top: none;
  border-bottom: none;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dif-header {
  text-align: center;
  margin-bottom: 80px;
}

.dif-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red-600);
  display: block;
  margin-bottom: 16px;
}

.dif-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300 !important;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.1;
}

.dif-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.dif-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dif-item:last-child {
  border-right: none;
}

.dif-num {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
}

.dif-num span {
  color: var(--color-red-600);
}

.dif-item-title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.dif-item-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  letter-spacing: -0.005em;
}

.dif-item-link {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}

.dif-item-link:hover {
  color: var(--color-red-600);
}

@media (max-width: 768px) {
  .dif-grid {
    grid-template-columns: 1fr;
  }
  .dif-item {
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    padding: 36px 24px;
  }
  .dif-item:last-child { border-bottom: none; }
}

/* ===== SECTION DISTRIBUIDORES — FULL VIDEO BACKGROUND ===== */
.section-dist {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.dist-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dist-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dist-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 24px 80px;
  text-align: center;
}

.dist-top {
  max-width: 860px;
}

.dist-content h2 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 300 !important;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 24px;
}

.dist-content h2 strong, .dist-content h2 b, .dist-content h2 .highlight {
  font-weight: 300 !important;
}

.dist-content .highlight {
  color: var(--color-red-600);
}

.dist-content p {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .dist-content { padding: 80px 20px 60px; }
}

/* ===== SECTION PORTAL (PANTALLA COMPLETA) ===== */
.section-portal {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 85px 24px 170px;
  background: transparent;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.portal-image-placeholder {
  aspect-ratio: 4/3;
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 18px;
  font-weight: 600;
  border: 2px dashed #e5e7eb;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.portal-text h2 {
  font-size: 56px;
  font-weight: 300 !important;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  margin-bottom: 24px;
}

.portal-text h2 strong, .portal-text h2 b {
  font-weight: 300 !important;
}

.portal-text p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #555555;
  margin-bottom: 48px;
  max-width: 440px;
}

.portal-features {
  list-style: none;
  margin-bottom: 40px;
}

.portal-features li {
  padding: 12px 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.47059;
  letter-spacing: -0.022em;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 12px;
}

.portal-features li::before {
  content: "✓";
  color: var(--color-red-600);
  font-weight: 700;
  font-size: 20px;
}

.section-portal 

.section-portal 

/* ===== FOOTER MINIMALISTA ===== */
.site-footer, .site-footer__body {
  border-top: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lab-text h2, .dist-content h2 { font-size: 48px; }
  .portal-text h2 { font-size: 44px; }
  .lab-grid, .portal-grid { grid-template-columns: 1fr; gap: 60px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .lab-text h2, .dist-content h2 { font-size: 40px; }
  .portal-text h2 { font-size: 36px; }
  .lab-text p, .portal-text p { font-size: 17px; }
  .brands-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-lab, .section-dist, .section-portal { padding: 80px 24px 120px; }
  .section-portal { min-height: auto; padding: 60px 24px 100px; }
  #whatsapp-button { width: 60px; height: 60px; bottom: 20px; right: 20px; }
  .btn-floating.email { width: 50px; height: 50px; bottom: 90px; right: 20px; }
  .btn-floating.email svg { width: 24px; height: 24px; }
  #whatsapp-chat { width: 280px; right: 20px; }
}

/* ===== SCROLL REVEAL ===== */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal {
  transform: translateY(48px);
}

.reveal-left {
  transform: translateX(-56px);
}

.reveal-right {
  transform: translateX(56px);
}

.reveal-scale {
  transform: scale(0.88);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }
.reveal-delay-5 { transition-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== SECTION TALLER ===== */
/* ─── CONTEXTO ─── */
.ctx{height:72px;display:flex;align-items:center;justify-content:center}
.ctx-dark{background:#000}
.ctx-light{background:#fff}
.ctx span{font-size:10px;letter-spacing:.16em;text-transform:uppercase}
.ctx-dark span{color:rgba(255,255,255,.2)}
.ctx-light span{color:rgba(0,0,0,.2)}

/* ─── SECCIÓN FABRICACIÓN ─── */
.section-fab {
  background: transparent;
  padding: clamp(72px,10vw,120px) clamp(24px,5vw,64px);
}

.fab-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.fab-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-red-600);
  display: block;
  margin-bottom: 14px;
}
.fab-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: #0a0a0a;
}
.fab-title strong { font-weight: 700; }
.fab-cta-header {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0a0a0a;
  text-decoration: none;
  border-bottom: 1px solid #0a0a0a;
  padding-bottom: 3px;
  white-space: nowrap;
  transition: opacity .2s;
}
.fab-cta-header:hover{opacity:.45}

/* Contenedor lado derecho header */
.fab-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

/* Botón Perrito Animado (Video) */
.btn-perrito-vid {
  width: 140px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: #000;
  position: relative;
}
.btn-perrito-vid:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(220,38,38,0.15);
  border-color: var(--color-red-600);
}
.btn-perrito-vid iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  pointer-events: none; /* Permite hacer clic en el enlace */
  transform: scale(1.05); /* Elimina bordes negros residuales del reproductor */
}

/* ─── BENTO GRID ─── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

/* celdas */
.b-cell {
  background: #ffffff;
  border: 1px solid #eaeaea;
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.b-cell:hover { background: #ffffff; border-color: #d0d0d0; box-shadow: 0 12px 30px rgba(0,0,0,0.04); }

/* accent line top */
.b-cell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-red-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.9,.25,1);
}
.b-cell:hover::before { transform: scaleX(1); }

.cell-num {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #aaa;
}
.cell-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: -.02em;
  color: #0a0a0a;
  line-height: 1.15;
}
.cell-desc {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.65;
  max-width: 38ch;
}
.cell-tag {
  margin-top: auto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-red-600);
}
.cell-code {
  font-size: 11px;
  color: #bbb;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* layout de celdas */
/* celda grande — mesas de planitud */
.b1 {
  grid-column: span 12;
  background:#ffffff;
  border: 1px solid #eaeaea;
  text-decoration:none;
  display:grid;
  grid-template-columns: 1fr 1fr;
  padding:0;
  gap:0;
  transition: transform .35s cubic-bezier(.2,.9,.25,1), box-shadow .35s cubic-bezier(.2,.9,.25,1);
}
.b1:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.b1 .cell-title { font-size: clamp(18px,1.8vw,26px); color:#0a0a0a; font-weight:300; line-height:1.1; }
.b1 .cell-desc { color: #666; max-width:28ch; }
.b1 .cell-tag { color: var(--color-red-600); }
.b1 .cell-num { color: #aaa; }
.b1::before { display:none; }

/* texto izquierda */
.b1-text {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

/* imagen derecha */
.b1-img-slot {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  overflow: hidden;
  position: relative;
  min-height: 260px;
}
.b1-img-slot img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.b1:hover .b1-img-slot img { transform: scale(1.06); }
.b1:hover .b1-img-slot { background: #ffffff; }

/* ===== ESTILOS BASE PARA VIDEOS DE PRODUCTOS ===== */
.product-vid {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
  pointer-events: none;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}

.b1-stat {
  display: flex;
  gap: 32px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.b1-stat-item { display:flex; flex-direction:column; gap:4px; }
.b1-stat-num { font-size: 28px; font-weight:300; letter-spacing:-.03em; color:#0a0a0a; }
.b1-stat-num span { color:var(--color-red-600); }
.b1-stat-label { font-size:10px; letter-spacing:.1em; text-transform:uppercase; color:#aaa; }

/* celdas medianas */
.b2, .b3, .b4, .b5 { grid-column: span 3; }

@media(max-width:900px){
  .b1 { grid-column: span 12; grid-template-columns: 1fr; }
  .b2, .b3, .b4, .b5 { grid-column: span 6; }
}
@media(max-width:560px){
  .b2,.b3,.b4,.b5{grid-column:span 12}
  .bento{gap:8px}
  .b-cell{padding:28px 22px}
}

/* ─── IMG CELLS ─── */
.img-cell {
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  justify-content: flex-end;
}
.img-slot {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #bbb;
  min-height: 110px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .3s;
  overflow: hidden;
}
.img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-cell:hover .img-slot { background: #ffffff; }
.img-cell-footer {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.img-cell .cell-title {
  font-size: 16px;
  font-weight: 500;
  color: #0a0a0a;
}
.img-cell .cell-tag {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-red-600);
  margin-top: 0;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.img-cell .cell-num {
  font-size: 9px;
}

/* Hover lift — igual que nuestros productos */
.img-cell {
  transition: transform .35s cubic-bezier(.2,.9,.25,1), box-shadow .35s cubic-bezier(.2,.9,.25,1) !important;
}
.img-cell:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 18px 36px rgba(0,0,0,.2) !important;
}
.img-cell:hover .img-slot img {
  transform: scale(1.05);
}
.img-slot img {
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
/* CTA cell hover */
.b6 {
  transition: transform .35s cubic-bezier(.2,.9,.25,1), background .2s !important;
}
.b6:hover {
  transform: translateY(-6px) !important;
}
