/* ============================================================
   INDISUTEX S.A.S. — Hoja de Estilos Principal
   Filosofía: Mobile-First · Sexy Elegante · Alta Conversión
   ============================================================ */

/* ── Variables ── */
:root {
  --rose:        #f0b8cd;
  --rose-light:  #fde8f0;
  --rose-dark:   #d4789a;
  --gold:        #c4922a;
  --gold-light:  #e8c87a;
  --ink:         #0e0e0e;
  --ink-soft:    #1e1e1e;
  --ink-mid:     #3a3a3a;
  --gray:        #888888;
  --gray-light:  #f5f5f3;
  --white:       #ffffff;
  --wsp:         #25D366;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 8px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.12);
  --shadow-card:0 4px 16px rgba(14,14,14,.07);

  --ease: cubic-bezier(.4,0,.2,1);
  --navbar-h: 68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin:0; padding:0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* FIX: anclas no tapadas por el header fijo */
  scroll-padding-top: calc(var(--navbar-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Bloquear scroll cuando el menú está abierto */
body.menu-open { overflow: hidden; }

img { display:block; max-width:100%; height:auto; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* ── Scrollbar custom ── */
::-webkit-scrollbar { width:8px; }
::-webkit-scrollbar-track { background:var(--gray-light); }
::-webkit-scrollbar-thumb { background:var(--rose); border-radius:4px; }
::-webkit-scrollbar-thumb:hover { background:var(--rose-dark); }

/* ── Focus visible ── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ── Utilidades ── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-pink {
  background: var(--rose-light);
}

.section-legal-info {
  background: var(--gray-light);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 10px;
}

.section-dark .section-eyebrow { color: var(--rose); }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p  { color: rgba(255,255,255,.65); }

.section-cta {
  text-align: center;
  margin-top: 48px;
}

.legal-note {
  font-size: .8rem;
  color: var(--gray);
  margin-bottom: 16px;
}

/* ── Tipografía ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: .5rem; }
h4 { font-size: 1.1rem; margin-bottom: .4rem; }

p { color: var(--ink-mid); }

/* ── Botones ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--r-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              transform .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
  /* Mínimo táctil recomendado por Google: 44px */
  min-height: 48px;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  z-index: 9000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.09);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand */
.brand {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink);
  line-height: 1;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .05em;
}

/* Hamburguesa */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  /* Touch target */
  position: relative;
}
.burger::before {
  content: '';
  position: absolute;
  inset: -12px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
  transform-origin: center;
}

.burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Nav menu — móvil por defecto */
.nav-menu {
  position: fixed;
  top: var(--navbar-h);
  left: 0; right: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 12px 0 24px;
  box-shadow: 0 12px 24px rgba(0,0,0,.1);
  /* Estado inicial: oculto con clip-path animado */
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path .38s var(--ease);
  pointer-events: none;
}

.nav-menu.is-open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: auto;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: background .2s, color .2s;
  /* Touch target */
  min-height: 52px;
}
.nav-link:hover { background: var(--rose-light); color: var(--rose-dark); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 16px 24px 0;
  padding: 12px 20px;
  background: var(--wsp);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--r-xl);
  transition: background .2s, transform .2s;
  min-height: 48px;
}
.nav-cta:hover { background: #1ebe57; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh; /* svh = soporte iOS Safari */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--navbar-h) + 32px) 20px 60px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Gradiente diagonal rosado-blanco */
  background:
    radial-gradient(ellipse 80% 80% at 110% 20%, rgba(240,184,205,.55) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at -10% 80%, rgba(196,146,42,.12) 0%, transparent 65%),
    linear-gradient(160deg, #fff 0%, #fef0f6 50%, #fff 100%);
}

/* Textura de grano sutil */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: var(--ink-mid);
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 44px;
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--r-xl);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  backdrop-filter: blur(4px);
}

/* ── VENTAJAS (MAYORISTAS) ── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.advantage-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  opacity: 1 !important;
  transform: none !important;
}
.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  outline: 1.5px solid var(--rose);
}

.advantage-icon { font-size: 2.4rem; margin-bottom: 16px; }
.advantage-card h3 { margin-bottom: 8px; }
.advantage-card p { font-size: .95rem; }

/* ── MARCAS ── */
.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.brand-card {
  background: var(--ink-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
}
.brand-card:nth-child(2) { transition-delay: .08s; }
.brand-card:nth-child(3) { transition-delay: .16s; }
.brand-card:nth-child(4) { transition-delay: .24s; }

.brand-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  /* Skeleton loading */
  background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite linear;
}
.brand-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.brand-card:hover .brand-img-wrap img {
  transform: scale(1.06);
}

@keyframes skeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.brand-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-xl);
  letter-spacing: .04em;
  z-index: 2;
}
.brand-badge--gold {
  background: var(--gold);
  color: var(--white);
}

.brand-info {
  padding: 24px 24px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.brand-info h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.brand-info p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  flex-grow: 1;
  margin-bottom: 18px;
}

.brand-btn {
  align-self: flex-start;
  font-size: .85rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: .04em;
  transition: color .2s, gap .2s;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
}
.brand-btn:hover { color: var(--gold-light); }

/* ── PASOS ── */
.steps-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-divider {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  margin: 0 auto;
  display: none; /* Se muestra en desktop */
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--gray-light);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,.05);
  opacity: 1;
  transform: translateY(0);
}
.step-item:nth-child(2) { transition-delay: .1s; }
.step-item:nth-child(4) { transition-delay: .2s; }
.step-item:nth-child(6) { transition-delay: .3s; }
.step-item:nth-child(8) { transition-delay: .4s; }

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rose-dark);
  line-height: 1;
  margin-bottom: 12px;
}
.step-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.step-item p { font-size: .9rem; }



/* ── BRAND LOGO WRAP (logos circulares en tarjetas de marca) ── */
.brand-logo-wrap {
  aspect-ratio: 1 / 1 !important;
  background: #fff !important;
  animation: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.brand-logo-wrap img {
  object-fit: contain !important;
  border-radius: 0 !important;
}

/* ── TIKTOK TABS ── */
.tt-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 28px;
  -webkit-overflow-scrolling: touch;
}
.tt-tabs::-webkit-scrollbar { display: none; }

.tt-tab {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .2s;
  min-width: 90px;
  box-shadow: var(--shadow-sm);
}
.tt-tab:hover { border-color: var(--rose); transform: translateY(-2px); }
.tt-tab.active {
  border-color: var(--rose-dark);
  box-shadow: 0 4px 16px rgba(212,120,154,.25);
}

.tt-tab-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-light);
}
.tt-tab-name {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
}
.tt-tab-followers {
  font-size: .68rem;
  color: var(--rose-dark);
  font-weight: 700;
}

/* ── TIKTOK PANEL ── */
.tt-panel { display: none; }
.tt-panel.active { display: block; animation: tt-fade .35s var(--ease); }

@keyframes tt-fade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tt-panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.tt-videos {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.tt-videos::-webkit-scrollbar { display: none; }

.tt-video-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.tt-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 */
  background: var(--ink);
  border-radius: 16px;
  overflow: hidden;
}

/* ── Thumbnail: foto real del carrusel como fondo ── */
.tt-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  background: #111;
  overflow: hidden;
}

/* Imagen thumbnail real */
.tt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .4s ease;
}
.tt-video-placeholder:hover .tt-thumb { transform: scale(1.04); }

/* Overlay degradado para legibilidad */
.tt-video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.08) 35%,
    rgba(0,0,0,.45) 75%,
    rgba(0,0,0,.72) 100%
  );
  z-index: 1;
}

/* Badge TikTok top-left */
.tt-video-placeholder::after {
  content: '▶ TikTok';
  position: absolute;
  top: 14px;
  left: 14px;
  background: #010101;
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 3;
}

/* Botón play centrado */
.tt-play-btn {
  width: 72px; height: 72px;
  background: rgba(255,255,255,.92);
  color: #010101;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s, box-shadow .2s;
  z-index: 2;
  padding-left: 5px;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.tt-play-btn:hover {
  transform: scale(1.12);
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}

/* Label en la parte inferior */
.tt-placeholder-label {
  position: absolute;
  bottom: 18px;
  left: 0; right: 0;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  z-index: 2;
  text-align: center;
  padding: 0 16px;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}

/* ── Fallback: cuando TikTok bloquea el iframe ── */
.tt-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(145deg, #1a1a2e 0%, #0f3460 100%);
  z-index: 5;
  padding: 24px;
  text-align: center;
}
.tt-fallback-icon { font-size: 2.4rem; }
.tt-fallback-msg {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  line-height: 1.5;
}
.tt-fallback-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #010101;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: .85rem;
  font-weight: 600;
  margin-top: 4px;
  transition: transform .2s, opacity .2s;
}
.tt-fallback-btn:hover { transform: scale(1.05); opacity: .9; }

/* ── TIKTOK INFO ── */
.tt-info {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tt-brand-logo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--rose-light);
  align-self: flex-start;
}

.tt-brand-meta h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.tt-handle {
  font-size: .85rem;
  color: var(--rose-dark);
  font-weight: 600;
  transition: color .2s;
}
.tt-handle:hover { color: var(--gold); }

.tt-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.tt-stat {
  background: var(--gray-light);
  border-radius: var(--r-md);
  padding: 10px 8px;
  text-align: center;
}
.tt-stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.tt-stat-label {
  display: block;
  font-size: .65rem;
  color: var(--gray);
  margin-top: 2px;
}

.tt-desc {
  font-size: .9rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

.tt-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-wsp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: var(--wsp);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  border-radius: var(--r-xl);
  transition: background .2s, transform .2s;
  min-height: 44px;
}
.btn-wsp:hover { background: #1da851; transform: translateY(-2px); }

.btn-tiktok {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  border-radius: var(--r-xl);
  transition: background .2s, transform .2s;
  min-height: 44px;
}
.btn-tiktok:hover { background: #333; transform: translateY(-2px); }

.tt-location {
  font-size: .8rem;
  color: var(--gray);
  margin: 0;
}

/* ── TIKTOK / COMUNIDAD (legacy, kept for compat) ── */
.tiktok-block {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  text-align: center;
}

.tiktok-text {
  max-width: 540px;
}
.tiktok-text h2 { color: var(--ink); }
.tiktok-text p { color: var(--ink-mid); margin-bottom: 24px; }
.tiktok-text .section-eyebrow { color: var(--rose-dark); }

.tiktok-visual { flex-shrink: 0; }

.phone-mockup {
  width: 180px;
  height: 320px;
  background: var(--ink);
  border-radius: 28px;
  border: 3px solid rgba(255,255,255,.6);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(240,184,205,.25), transparent 60%);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.tiktok-play {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.tiktok-handle {
  font-size: .65rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}

/* ── DATOS LEGALES ── */
.legal-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.legal-info-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.legal-info-brand p { font-size: .95rem; }

.legal-info-data dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  font-size: .9rem;
}
.legal-info-data dt {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.legal-info-data dd {
  color: var(--ink-mid);
}

.legal-info-stores h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 14px;
}
.legal-info-stores ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal-info-stores li {
  font-size: .9rem;
}
.legal-info-stores li strong { color: var(--ink); }
.legal-info-stores li span  { color: var(--gray); }

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-col p { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 6px; }

.footer-contact-line {
  color: rgba(255,255,255,.7) !important;
  font-size: .85rem !important;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: .03em;
}
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul a {
  color: rgba(255,255,255,.5);
  font-size: .87rem;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--rose); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding-top: 24px;
}
.footer-bottom p {
  color: rgba(255,255,255,.35);
  font-size: .8rem;
  margin-bottom: 6px;
}
.footer-disclaimer {
  font-size: .72rem !important;
  color: rgba(255,255,255,.22) !important;
  margin-top: 8px;
}

/* ── WHATSAPP FLOTANTE ── */
.wsp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--wsp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8000;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: transform .2s var(--ease), background .2s;
  animation: wsp-pulse 2.5s infinite;
}
.wsp-float:hover {
  transform: scale(1.1);
  background: #1da851;
}

@keyframes wsp-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.3); }
  50%       { box-shadow: 0 4px 18px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ── COOKIE BANNER ── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(18,18,18,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 20px;
  z-index: 9500;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.cookie-bar.visible { transform: translateY(0); }

.cookie-bar p {
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  text-align: center;
  margin: 0;
}
.cookie-bar a { color: var(--rose); text-decoration: underline; }

.cookie-btn {
  background: var(--rose);
  color: var(--ink);
  border: none;
  padding: 9px 22px;
  border-radius: var(--r-xl);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
  min-height: 44px;
}
.cookie-btn:hover { background: var(--white); }

/* ═══════════════════════════════════════
   MEDIA QUERIES — TABLET (768px+)
   ═══════════════════════════════════════ */
@media (min-width: 768px) {

  /* Navbar */
  .burger { display: none; }
  .nav-menu {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    box-shadow: none;
    clip-path: none;
    pointer-events: auto;
  }
  .nav-link {
    padding: 8px 14px;
    font-size: .88rem;
    border-bottom: none;
    border-radius: var(--r-sm);
    min-height: 40px;
  }
  .nav-link:hover { background: var(--rose-light); }
  .nav-cta {
    margin: 0;
    padding: 9px 20px;
    font-size: .88rem;
    min-height: 40px;
  }

  /* Hero */
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Brands */
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Steps */
  .steps-track {
    flex-direction: row;
    align-items: flex-start;
  }
  .step-divider {
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--rose), transparent);
    margin: 40px 0 0; /* Alinear con el número */
    flex-shrink: 0;
  }
  .step-item {
    flex: 1;
    border-radius: var(--r-md);
    padding: 28px 16px;
  }

  /* TikTok */
  .tt-tabs { flex-wrap: wrap; }
  .tt-tab { min-width: 120px; }
  .tt-panel-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .tt-video-card { flex: 0 0 calc(50% - 8px); }

  /* TikTok legacy */
  .tiktok-block {
    flex-direction: row;
    text-align: left;
    gap: 60px;
    justify-content: center;
  }
  .tiktok-text .trust-strip { justify-content: flex-start; }

  /* Legal grid */
  .legal-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════
   MEDIA QUERIES — DESKTOP (1024px+)
   ═══════════════════════════════════════ */
@media (min-width: 1024px) {

  .section { padding: 96px 0; }

  /* Hero */
  .hero { text-align: left; }
  .hero-content { margin: 0; }
  .hero-ctas { justify-content: flex-start; }
  .trust-strip { justify-content: flex-start; }

  /* Cards */
  .cards-grid { grid-template-columns: repeat(4, 1fr); }

  /* Brands */
  .brands-grid { grid-template-columns: repeat(4, 1fr); }

  /* Legal info */
  .legal-info-grid { grid-template-columns: 1fr 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }

  /* TikTok desktop */
  .tt-panel-inner { grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
  .tt-videos { flex-wrap: nowrap; overflow-x: visible; }
  .tt-video-card { flex: 0 0 260px; }
  .tt-info { position: sticky; top: calc(var(--navbar-h) + 20px); }
}

/* ═══════════════════════════════════════
   PREFERENCIAS DE MOVIMIENTO REDUCIDO
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .advantage-card,
  .brand-card,
  .step-item { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════
   INSTAGRAM DISEÑOS CAROUSEL
═══════════════════════════════════════════════════ */
.ig-section {
  background: linear-gradient(160deg, #fff8fb 0%, #fff0f8 50%, #fdf4ff 100%);
  position: relative;
  overflow: hidden;
}
.ig-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(225,48,108,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Wrapper con flechas */
.ig-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
}

.ig-track-outer {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  border-radius: 20px;
}

.ig-track {
  display: flex;
  gap: 0;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  align-items: stretch;
  backface-visibility: hidden;
}

/* ── Flechas ── */
.ig-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(225,48,108,.25);
  background: #fff;
  color: #e1306c;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.ig-arrow:hover {
  background: #e1306c;
  border-color: #e1306c;
  color: #fff;
  transform: scale(1.08);
}

/* ── Tarjetas ── */
.ig-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  max-width: 420px;
  margin-right: 20px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  transition: transform .3s, box-shadow .3s;
}
.ig-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(225,48,108,.15), 0 2px 8px rgba(0,0,0,.06);
}

@media (max-width: 1023px) {
  .ig-card { flex: 0 0 calc(50% - 10px); max-width: none; margin-right: 20px; }
}
@media (max-width: 639px) {
  /* Card ocupa todo el outer, con peek de 24px de la siguiente */
  .ig-track-outer {
    border-radius: 16px;
    /* Permite ver un poco de la siguiente card */
    overflow: visible;
    clip-path: inset(0 -24px 0 0);
  }
  .ig-card {
    flex: 0 0 calc(100% - 24px);
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    margin-right: 12px;
  }
  .ig-arrow {
    width: 38px; height: 38px;
    position: absolute;
    z-index: 10;
    top: 120px; /* centro visual de la imagen */
  }
  #igPrev { left: 4px; }
  #igNext { right: 4px; }
  .ig-carousel-wrapper {
    gap: 0;
    position: relative;
    padding: 0;
  }
  /* Botones CTA en móvil: columna para no cortarse */
  .ig-cta-row {
    flex-direction: column;
    gap: 8px;
  }
  .ig-btn {
    font-size: .82rem;
    padding: 10px 16px;
    width: 100%;
    justify-content: center;
  }
  /* Card body más cómodo */
  .ig-card-body { padding: 14px 14px 16px; }
  .ig-brand-name { font-size: .88rem; }
  /* Imagen más baja en móvil para que todo quepa sin scroll */
  .ig-card-img-wrap { height: 260px; }
  /* Swipe hint visible */
  .ig-swipe-hint { display: block; }
}

/* ── Imagen / preview visual ── */
.ig-card-img-link { display: block; text-decoration: none; }
.ig-card-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
}

/* Gradientes de color por marca — visual de "preview" sin necesitar imagen */
.ig-card-gradient {
  position: absolute; inset: 0;
  transition: filter .3s;
}
.ig-card:hover .ig-card-gradient { filter: brightness(1.05) saturate(1.1); }

.ig-grad-sara    { background: linear-gradient(135deg, #ff6eb4 0%, #ff9de0 35%, #ffb6ec 60%, #f7c6ff 100%); }
.ig-grad-lovely  { background: linear-gradient(135deg, #5b8dee 0%, #a084f0 40%, #f472b6 80%, #fb7dd5 100%); }
.ig-grad-majestic{ background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 40%, #2563eb 70%, #06b6d4 100%); }
.ig-grad-reina   { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 35%, #0f3460 60%, #533483 100%); }

/* Foto real de producto */
.ig-card-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .4s ease;
  display: block;
}
.ig-card:hover .ig-card-photo { transform: scale(1.04); }

/* Pattern overlay para dar textura */
.ig-card-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(255,255,255,.12) 0%, transparent 40%);
  pointer-events: none;
}

/* Ícono Instagram centrado */
.ig-card-overlay-icon {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: transform .3s;
}
.ig-card:hover .ig-card-overlay-icon { transform: scale(1.1); }
.ig-card-overlay-icon svg {
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.35));
  opacity: .9;
}

/* Tag "ver publicación" */
.ig-card-label {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.ig-card-post-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  color: #e1306c;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 5px 13px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  white-space: nowrap;
}

/* "VER EN INSTAGRAM" strip on hover */
.ig-card-img-wrap::before {
  content: 'Ver en Instagram →';
  position: absolute;
  inset: 0;
  background: rgba(225,48,108,.85);
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  opacity: 0;
  z-index: 10;
  transition: opacity .3s;
  border-radius: 0;
}
.ig-card:hover .ig-card-img-wrap::before,
.ig-card:focus-within .ig-card-img-wrap::before { opacity: 1; }

/* ── Body de la tarjeta ── */
.ig-card-body { padding: 16px 18px 18px; }

.ig-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ig-brand-logo {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(225,48,108,.2);
  flex-shrink: 0;
}
.ig-brand-name {
  font-size: .85rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.2;
}
.ig-brand-tag {
  font-size: .72rem;
  color: #e1306c;
  margin: 0;
}
.ig-badge {
  margin-left: auto;
  flex-shrink: 0;
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  white-space: nowrap;
}
.ig-badge--hot     { background:#fff0f6; color:#e1306c; border:1px solid rgba(225,48,108,.2); }
.ig-badge--new     { background:#fff0f9; color:#c026d3; border:1px solid rgba(192,38,211,.2); }
.ig-badge--vibrant { background:#eef2ff; color:#4f46e5; border:1px solid rgba(79,70,229,.2); }
.ig-badge--premium { background:#1a1a2e; color:#d4af37; border:1px solid rgba(212,175,55,.3); }

.ig-desc {
  font-size: .8rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 14px;
}

/* Botones CTA */
.ig-cta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .2s;
  letter-spacing: .02em;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.ig-btn--insta {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(225,48,108,.3);
}
.ig-btn--insta:hover { opacity:.9; transform:translateY(-1px); }
.ig-btn--wsp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 2px 10px rgba(37,211,102,.3);
}
.ig-btn--wsp:hover { background:#1db954; transform:translateY(-1px); }

/* ── Dots ── */
.ig-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.ig-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(225,48,108,.2);
  cursor: pointer;
  transition: all .25s;
}
.ig-dot.active {
  background: #e1306c;
  width: 22px;
  border-radius: 4px;
}

/* Swipe hint */
.ig-section-footer { text-align: center; margin-top: 10px; }
.ig-swipe-hint {
  font-size: .78rem;
  color: #aaa;
  display: none;
}
@media (max-width: 768px) { .ig-swipe-hint { display: block; } }


/* ============================================================
   MEJORAS V2 — Mayoristas + TikTok Stories
   ============================================================ */

/* ── PRUEBA SOCIAL STRIP ── */
.social-proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, var(--ink) 0%, #1a1a2e 100%);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.sp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  flex: 1 1 140px;
}

.sp-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1.1;
  margin-bottom: 4px;
}

.sp-label {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
  font-weight: 400;
}

.sp-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
  display: none;
}

@media (min-width: 640px) {
  .sp-divider { display: block; }
  .social-proof-strip { flex-wrap: nowrap; gap: 0; }
  .sp-item { flex: 1; }
}

/* ── MICRO-CTAs EN TARJETAS ── */
.advantage-microcta {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--rose-dark);
  text-decoration: none;
  transition: color .2s, gap .2s;
  gap: 2px;
}
.advantage-microcta:hover {
  color: var(--gold);
}

/* ── TABLA COMPARATIVA ── */
.compare-wrap {
  margin-top: 52px;
  background: var(--gray-light);
  border-radius: var(--r-lg);
  padding: 36px 28px 28px;
}

.compare-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 24px;
  color: var(--ink);
}

.compare-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-md);
}

.compare-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: .9rem;
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.compare-table thead th {
  padding: 14px 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  background: var(--ink);
  color: rgba(255,255,255,.7);
}

.compare-table thead th:first-child {
  text-align: left;
  width: 36%;
}

.compare-table .col-mayor {
  background: linear-gradient(135deg, var(--rose-dark) 0%, #b5607f 100%);
  color: var(--white) !important;
}

.compare-table thead th.col-mayor {
  color: var(--white);
}

.col-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: .72rem;
}

.compare-table tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid rgba(0,0,0,.05);
  color: var(--ink-mid);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:nth-child(even) td {
  background: var(--gray-light);
}

.compare-table tbody tr:nth-child(even) td.col-mayor {
  background: rgba(212,120,154,.08);
}

.compare-table tbody td.col-mayor {
  font-weight: 600;
  color: var(--rose-dark);
  text-align: center;
}

.compare-table tbody td.win {
  color: var(--rose-dark);
  font-weight: 700;
}

.compare-table tbody td.col-detal {
  text-align: center;
  color: var(--gray);
}

.compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--ink);
}

.compare-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.legal-note--bottom {
  text-align: center;
  margin-top: 20px;
  font-size: .78rem;
  color: var(--gray);
}

/* ── TIKTOK STORIES TABS ── */
.tt-stories-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.tt-stories-row::-webkit-scrollbar { display: none; }

@media (min-width: 640px) {
  .tt-stories-row { justify-content: center; }
}

.tt-story {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--r-md);
  transition: transform .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.tt-story:hover { transform: translateY(-3px); }
.tt-story:focus-visible {
  outline: 2px solid var(--rose-dark);
  outline-offset: 2px;
  border-radius: var(--r-md);
}

.tt-story-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #ccc 0%, #aaa 100%);
  transition: background .3s var(--ease), box-shadow .3s;
}

.tt-story.active .tt-story-ring,
.tt-story:hover .tt-story-ring {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--gold) 100%);
  box-shadow: 0 0 0 3px rgba(212,120,154,.25);
}

.tt-story-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  display: block;
}

.tt-story-name {
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-mid);
  text-align: center;
  line-height: 1.2;
  max-width: 72px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tt-story.active .tt-story-name { color: var(--rose-dark); }

.tt-story-followers {
  font-size: .65rem;
  font-weight: 700;
  color: var(--rose-dark);
  background: var(--rose-light);
  padding: 1px 6px;
  border-radius: 10px;
}

/* ── TIKTOK RICH CARD (sin iframe) ── */
.tt-rich-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.tt-rich-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9/14;
  overflow: hidden;
  background: #111;
}

.tt-rich-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .5s ease;
}

.tt-rich-card:hover .tt-rich-thumb {
  transform: scale(1.04);
}

.tt-rich-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.5) 0%,
    transparent 30%,
    transparent 55%,
    rgba(0,0,0,.75) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  pointer-events: none;
}

.tt-rich-tiktok-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(1,1,1,.85);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.tt-rich-engagement {
  font-size: .8rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}

.tt-rich-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition: background .2s;
}

.tt-rich-play-btn:hover {
  background: rgba(0,0,0,.15);
}

.tt-rich-play-btn svg {
  background: rgba(255,255,255,.92);
  color: #010101;
  border-radius: 50%;
  padding: 14px;
  width: 68px;
  height: 68px;
  padding-left: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}

.tt-rich-play-btn:hover svg {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}

.tt-rich-play-btn span {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
  background: rgba(1,1,1,.6);
  padding: 5px 14px;
  border-radius: 20px;
}

.tt-rich-video-meta {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: var(--ink-soft);
  flex-wrap: wrap;
}

.tt-rich-stat {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* ── Panel: reemplaza tt-videos con tt-rich-card ── */
.tt-panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Info panel: ahora con header en fila */
.tt-brand-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tt-brand-header .tt-brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--rose-light);
  flex-shrink: 0;
}

/* Responsive overrides */
@media (min-width: 640px) {
  .tt-panel-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
  }
  .tt-rich-thumb-wrap {
    aspect-ratio: 9/16;
  }
}

@media (min-width: 1024px) {
  .tt-panel-inner {
    grid-template-columns: 320px 1fr;
    gap: 36px;
  }
  .tt-info {
    position: sticky;
    top: calc(var(--navbar-h) + 20px);
  }
}

/* Remove old tt-tabs CSS override if still present */
/* FIX: tabs visibles */ .tt-tabs { display: flex; }

/* ============================================================
   MEJORAS V3 — Hero imagen real · Parallax · Scroll Reveal
   Trust pills animadas · Steps decorativos · Firefox scrollbar
   ============================================================ */

/* ── Firefox scrollbar ── */
* { scrollbar-color: var(--rose) var(--gray-light); scrollbar-width: thin; }

/* ── HERO — layout split ── */
.hero {
  text-align: left;
  align-items: stretch;
  padding: 0;
  min-height: 100svh;
  min-height: 100vh;
}

.hero-layout {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: calc(var(--navbar-h) + 40px) 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  min-height: 100svh;
  min-height: 100vh;
}

/* Texto hero — centrado en móvil, izq en desktop */
.hero .hero-content {
  text-align: center;
  max-width: 600px;
}

.hero .hero-ctas { justify-content: center; }
.hero .trust-strip { justify-content: center; }

/* Imagen hero */
.hero-img-wrap {
  width: 100%;
  max-width: 380px;
  flex-shrink: 0;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible; /* FIX: permite precio flotante fuera del frame */
  box-shadow: 0 24px 64px rgba(14,14,14,.18);
}
/* Mantener border-radius en la imagen */
.hero-product-img { border-radius: var(--r-lg); }

.hero-product-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
  will-change: transform;
}

/* Badge "Más vendida" */
.hero-img-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.hero-badge-inner {
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  letter-spacing: .04em;
}

/* Tag marca abajo */
.hero-img-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hero-brand-logo {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Desktop: layout lado a lado */
@media (min-width: 900px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 80px;
  }
  .hero .hero-content {
    text-align: left;
    flex: 1;
  }
  .hero .hero-ctas { justify-content: flex-start; }
  .hero .trust-strip { justify-content: flex-start; }
  .hero-img-wrap {
    max-width: 440px;
    flex-shrink: 0;
  }
}

@media (min-width: 1100px) {
  .hero-img-wrap { max-width: 500px; }
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── TRUST PILLS — entrada escalonada ── */
.trust-pill {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s var(--ease) var(--pill-delay, .5s),
              transform .45s var(--ease) var(--pill-delay, .5s);
}
.trust-pill.pill-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── STEPS — número decorativo de fondo ── */
.step-item {
  position: relative;
  overflow: hidden;
}
.step-num-bg {
  position: absolute;
  top: -10px;
  right: -8px;
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--rose-dark);
  opacity: .055;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}

/* ── HOVER BUTTON REFINEMENT ── */
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--rose-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,120,154,.35);
}

/* ── MOTION REDUCIDO — override reveals ── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .trust-pill {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-product-img,
  #heroBg {
    will-change: auto;
  }
}

/* ============================================================
   COMPARATIVA V2 — Cards responsivas sin tabla
   ============================================================ */

/* Eliminar estilos de tabla vieja */
.compare-table-scroll,
.compare-table,
.compare-cta-row { display: none; }

/* Wrapper */
.compare-wrap {
  margin-top: 52px;
  background: transparent;
  padding: 0;
}

.compare-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  text-align: center;
  margin-bottom: 32px;
  color: var(--ink);
}

/* ── Grid de cards ── */
.compare-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  position: relative;
}

/* VS divisor — oculto en móvil */
.cmp-vs {
  display: none;
}

/* ── Card base ── */
.cmp-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cmp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Card Mayorista ── */
.cmp-card--mayor {
  background: var(--ink);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}
/* Borde degradado rose-gold */
.cmp-card--mayor::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r-lg) + 2px);
  background: linear-gradient(135deg, var(--rose-dark), var(--gold));
  z-index: -1;
}

/* ── Card Detal ── */
.cmp-card--detal {
  background: var(--white);
  border: 2px solid rgba(0,0,0,.07);
}

/* ── Header de card ── */
.cmp-card-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cmp-card--detal .cmp-card-header {
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.cmp-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-xl);
  margin-bottom: 10px;
}
.cmp-badge--star {
  background: linear-gradient(135deg, var(--rose-dark), var(--gold));
  color: var(--white);
}

.cmp-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
  line-height: 1.2;
}
.cmp-card--detal .cmp-card-title {
  color: var(--ink);
}

.cmp-card-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.cmp-card--detal .cmp-card-sub {
  color: var(--gray);
}

/* ── Lista de filas ── */
.cmp-list {
  flex: 1;
  padding: 8px 0;
  list-style: none;
  margin: 0;
}

.cmp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .18s;
}
.cmp-card--detal .cmp-row {
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.cmp-row:last-child { border-bottom: none; }

.cmp-card--mayor .cmp-row:hover { background: rgba(255,255,255,.04); }
.cmp-card--detal .cmp-row:hover { background: var(--gray-light); }

.cmp-label {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  flex-shrink: 0;
  min-width: 120px;
}
.cmp-card--detal .cmp-label {
  color: var(--ink-mid);
}

.cmp-val {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  text-align: right;
}
.cmp-card--detal .cmp-val {
  color: var(--gray);
}

/* WIN — valor destacado en mayorista */
.cmp-val--win {
  font-weight: 700;
  color: var(--rose) !important;
  background: rgba(240,184,205,.1);
  padding: 3px 10px;
  border-radius: var(--r-xl);
  white-space: nowrap;
}

/* ── CTA dentro de cada card ── */
.cmp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 24px 24px;
  padding: 14px 24px;
  border-radius: var(--r-xl);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  min-height: 50px;
  transition: transform .2s var(--ease), opacity .2s, box-shadow .2s;
}
.cmp-btn:hover { transform: translateY(-2px); opacity: .92; }

.cmp-btn--mayor {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--gold) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(212,120,154,.35);
}
.cmp-btn--mayor:hover {
  box-shadow: 0 10px 28px rgba(212,120,154,.5);
}

.cmp-btn--detal {
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(0,0,0,.15);
}
.cmp-btn--detal:hover {
  background: var(--gray-light);
  border-color: var(--ink);
}

/* ── TABLET: lado a lado ── */
@media (min-width: 640px) {
  .compare-cards {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  .cmp-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 52px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: .08em;
    z-index: 2;
  }

  .cmp-card {
    flex: 1;
    min-width: 0;
  }

  /* Mayorista ligeramente elevada */
  .cmp-card--mayor {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(14,14,14,.22);
  }
  .cmp-card--mayor:hover {
    transform: translateY(-10px);
  }
}

/* ── DESKTOP: más espacio interno ── */
@media (min-width: 900px) {
  .cmp-row { padding: 14px 28px; }
  .cmp-card-header { padding: 28px 28px 18px; }
  .cmp-btn { margin: 20px 28px 28px; }
  .cmp-label { min-width: 140px; }
}

/* ============================================================
   MARCAS V2 — Tarjeta completa clickeable + CTA destacado
   ============================================================ */

/* Toda la card es un enlace */
.brand-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Cursor pointer en toda la card */
.brand-card { cursor: pointer; }

/* ── Overlay sobre la imagen al hover ── */
.brand-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 211, 102, 0.88);  /* verde WhatsApp */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .28s var(--ease);
  z-index: 3;
}

.brand-card:hover .brand-overlay,
.brand-card:focus-within .brand-overlay {
  opacity: 1;
}

/* En móvil táctil — mostrar overlay siempre semitransparente como hint */
@media (hover: none) {
  .brand-overlay {
    opacity: 1;
    background: rgba(37, 211, 102, 0.72);
  }
}

.brand-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  transform: translateY(6px);
  transition: transform .28s var(--ease);
}

.brand-card:hover .brand-overlay-inner {
  transform: translateY(0);
}

.brand-overlay-inner svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}

.brand-overlay-inner span {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

/* ── CTA pill en la parte inferior de la card ── */
.brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wsp);        /* verde WhatsApp */
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: var(--r-xl);
  align-self: stretch;           /* ocupa todo el ancho */
  justify-content: center;
  margin-top: auto;
  min-height: 46px;
  transition: background .22s var(--ease), transform .2s var(--ease),
              box-shadow .2s var(--ease);
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
  letter-spacing: .01em;
}

.brand-card:hover .brand-cta {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,.5);
}

/* Pulse sutil en el CTA para llamar la atención */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(37,211,102,.35); }
  50%       { box-shadow: 0 4px 22px rgba(37,211,102,.6), 0 0 0 5px rgba(37,211,102,.12); }
}

.brand-cta {
  animation: cta-pulse 2.8s ease-in-out infinite;
}

/* Parar la animación al hover para no distraer */
.brand-card:hover .brand-cta {
  animation: none;
}

/* Quitar el brand-btn viejo si quedara */
.brand-btn { display: none; }

/* Ajuste brand-info con el nuevo CTA */
.brand-info {
  padding: 20px 20px 20px;
  gap: 10px;
}

.brand-info p {
  margin-bottom: 14px;
}

/* ── Touch ripple hint — solo móvil ── */
.brand-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 2px solid transparent;
  transition: border-color .25s var(--ease);
  pointer-events: none;
  z-index: 4;
}
.brand-card:hover::after,
.brand-card:focus-within::after {
  border-color: var(--wsp);
}

/* ── Hint "toca para ver" — solo visible en touch ── */
.brand-logo-wrap::before {
  content: '👆 Toca para ver catálogo';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 600;
  text-align: center;
  padding: 24px 8px 10px;
  z-index: 2;
  opacity: 1;
  transition: opacity .25s;
  letter-spacing: .03em;
}

/* En desktop: ocultar hint ya que el overlay toma su rol */
@media (hover: hover) {
  .brand-logo-wrap::before { display: none; }
}

/* ============================================================
   FIXES V7 — Brand cards móvil + botones WhatsApp consistentes
   ============================================================ */

/* ── BRAND CARD — fix móvil completo ── */

/* La card completa como bloque flex vertical */
.brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* El link ocupa toda la card */
.brand-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* Logo wrap — siempre relativo para el overlay */
.brand-logo-wrap {
  position: relative !important;
  flex-shrink: 0;
}

/* Overlay en móvil — oculto por defecto, visible solo en touch activo */
@media (hover: none) {
  .brand-overlay {
    opacity: 0 !important;
    pointer-events: none;
  }
  /* Quitar el pseudo hint anterior */
  .brand-logo-wrap::before { display: none !important; }
}

/* brand-info flex column para que CTA quede abajo */
.brand-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 18px !important;
  gap: 8px;
}

.brand-info h3 { margin-bottom: 4px; }
.brand-info p  { flex: 1; margin-bottom: 0; }

/* ── CTA VERDE — CORREGIDO para móvil y web ── */
.brand-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 14px;
  padding: 13px 20px;
  background: var(--wsp);
  color: #fff;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: var(--r-xl);
  min-height: 48px;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: background .2s, transform .2s, box-shadow .2s;
  animation: cta-pulse 2.8s ease-in-out infinite;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.brand-cta svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.brand-card:hover .brand-cta,
.brand-card:active .brand-cta {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.55);
  animation: none;
}

/* ═══════════════════════════════════════════════════
   SISTEMA UNIFICADO DE BOTONES WHATSAPP
   Aplica a: btn-wsp, cmp-btn--mayor, nav-cta, ig-btn--wsp
   ═══════════════════════════════════════════════════ */

/* Botones WhatsApp en paneles TikTok */
.btn-wsp {
  background: var(--wsp) !important;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.btn-wsp:hover {
  background: #1db954 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(37,211,102,.5) !important;
}

/* WhatsApp en carrusel Instagram */
.ig-btn--wsp {
  background: var(--wsp) !important;
  box-shadow: 0 2px 10px rgba(37,211,102,.3);
}
.ig-btn--wsp:hover {
  background: #1db954 !important;
  transform: translateY(-1px);
}

/* CTA Mayorista en comparativa — mantiene degradado pero más llamativo */
.cmp-btn--mayor {
  box-shadow: 0 6px 20px rgba(212,120,154,.4) !important;
  font-size: .92rem !important;
  min-height: 52px !important;
}
.cmp-btn--mayor:hover {
  box-shadow: 0 10px 30px rgba(212,120,154,.55) !important;
  transform: translateY(-3px) !important;
  opacity: 1 !important;
}

/* Nav CTA WhatsApp */
.nav-cta {
  animation: nav-wsp-pulse 3s ease-in-out infinite;
}
@keyframes nav-wsp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
  50%       { box-shadow: 0 0 0 5px rgba(37,211,102,.18); }
}

/* Botón hero primario — más visual */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.1) 100%);
  pointer-events: none;
}

/* ── BOTÓN FLOTANTE WSP — más llamativo en móvil ── */
.wsp-float {
  width: 62px !important;
  height: 62px !important;
  box-shadow: 0 4px 20px rgba(37,211,102,.5) !important;
}

/* ── Consistencia táctil — todos los botones ── */
@media (max-width: 768px) {
  .btn,
  .brand-cta,
  .btn-wsp,
  .btn-tiktok,
  .cmp-btn,
  .ig-btn,
  .nav-cta {
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
  }

  /* brand-cta en móvil — más grande y sólido */
  .brand-cta {
    font-size: .92rem !important;
    padding: 14px 20px !important;
    min-height: 52px !important;
    border-radius: 26px !important;
  }
}

/* ============================================================
   INDISUTEX v3 — Nuevos componentes y correcciones definitivas
   pijamaspormayor.com · 2026
   ============================================================ */

/* ── URGENCY BAR ── */
.urgency-bar {
  position: relative;
  z-index: 10;
  background: #111;
  color: rgba(255,255,255,.9);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.5;
}
.urgency-bar span { color: #e8c87a; font-weight: 700; }

/* ── HERO MOBILE — texto arriba, imagen abajo ── */
@media (max-width: 899px) {
  .hero { min-height: auto !important; }
  .hero-layout {
    flex-direction: column !important;
    min-height: auto !important;
    padding-top: calc(var(--navbar-h) + 24px) !important;
    padding-bottom: 40px !important;
    gap: 28px !important;
    align-items: center !important;
  }
  .hero .hero-content {
    order: 1; width: 100%;
    max-width: 100%; text-align: center;
  }
  .hero .hero-ctas,
  .hero .trust-strip { justify-content: center; }
  .inline-proof { justify-content: center; }
  .hero-img-wrap {
    order: 2;
    max-width: 280px !important;
    width: 100%; margin: 0 auto;
  }
  .hero-title { font-size: clamp(2rem, 7vw, 2.7rem) !important; }
}

/* ── PRECIO FLOTANTE sobre imagen ── */
.hero-price-float {
  position: absolute;
  bottom: 52px; left: -10px;
  z-index: 10; background: #fff;
  border-radius: 12px; padding: 8px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  font-family: var(--font-body);
  min-width: 106px; pointer-events: none;
}
.hero-price-float .hpf-label {
  font-size: .64rem; color: #999; font-weight: 500;
}
.hero-price-float .hpf-price {
  font-size: 1.08rem; font-weight: 700; color: #0e0e0e;
}
.hero-price-float .hpf-stock {
  font-size: .63rem; color: #25D366; font-weight: 700;
}
@media (max-width: 400px) {
  .hero-price-float { left: 4px; bottom: 44px; }
}

/* ── PRICE BADGE animado ── */
.price-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #25D366; color: #fff;
  font-family: var(--font-body); font-size: .84rem; font-weight: 600;
  padding: 7px 16px; border-radius: 40px;
  margin-bottom: 14px; width: fit-content;
  animation: pricePulse 2.5s ease-in-out infinite;
}
.price-badge strong { font-size: 1.05rem; font-weight: 700; }
@keyframes pricePulse {
  0%,100% { box-shadow: 0 4px 14px rgba(37,211,102,.28); }
  50%      { box-shadow: 0 6px 28px rgba(37,211,102,.55); }
}

/* ── FAB BADGE ── */
.fab-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: #fff;
  font-family: var(--font-body); font-size: .7rem;
  font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 12px; width: fit-content;
}

/* ── INLINE PROOF ── */
.inline-proof {
  display: flex; align-items: center;
  gap: 10px; margin-top: 20px; flex-wrap: wrap;
}
.inline-proof-avatars { display: flex; flex-shrink: 0; }
.inline-proof-avatars span {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--rose); border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; margin-left: -8px; flex-shrink: 0;
}
.inline-proof-avatars span:first-child { margin-left: 0; }
.inline-proof-text { font-size: .8rem; color: var(--ink-mid); line-height: 1.35; }
.inline-proof-text strong { color: var(--ink); font-weight: 600; display: block; }

/* ── SECCIÓN MAYORISTA HERO ── */
.mayor-hero {
  background: var(--ink); color: var(--white);
  padding: 72px 0; text-align: center;
  position: relative; overflow: hidden;
}
.mayor-hero::before {
  content: ''; position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,146,42,.05) 0%, transparent 70%);
  pointer-events: none;
}
.mayor-hero .mh-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #e8c87a; margin-bottom: 16px;
  font-family: var(--font-body);
  background: rgba(232,200,122,.08);
  padding: 6px 16px; border-radius: 20px;
  border: 1px solid rgba(232,200,122,.18);
}
.mayor-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white); margin-bottom: 16px; line-height: 1.05;
}
.mayor-hero > .container > p {
  color: rgba(255,255,255,.62);
  max-width: 520px; margin: 0 auto 40px;
  font-size: 1rem; font-family: var(--font-body);
}
/* Stats en grid */
.mayor-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin: 0 auto 40px; max-width: 700px;
  background: rgba(255,255,255,.04);
  border-radius: 16px; border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
@media (max-width: 599px) {
  .mayor-stats { grid-template-columns: repeat(2,1fr); }
  .mayor-stat:nth-child(2) { border-right: none !important; }
  .mayor-stat:nth-child(3),
  .mayor-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
}
.mayor-stat {
  text-align: center; padding: 20px 10px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.mayor-stat:last-child { border-right: none; }
.mayor-stat-num {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: #e8c87a; line-height: 1.1;
}
.mayor-stat-label {
  display: block; font-size: .69rem;
  color: rgba(255,255,255,.48); margin-top: 4px;
  font-family: var(--font-body);
}
.mayor-cta-group {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.btn-mayor-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 15px 32px; border-radius: 14px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 6px 24px rgba(37,211,102,.38); text-decoration: none;
}
.btn-mayor-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,.52);
}
.btn-mayor-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-family: var(--font-body); font-weight: 600; font-size: .93rem;
  padding: 15px 28px; border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.28);
  transition: border-color .15s, background .15s; text-decoration: none;
}
.btn-mayor-secondary:hover {
  border-color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.06);
}
@media (max-width: 560px) {
  .mayor-cta-group { flex-direction: column; padding: 0 20px; }
  .btn-mayor-primary, .btn-mayor-secondary {
    justify-content: center; text-align: center;
  }
}

/* ── PRICE TAGS EN CARDS ── */
.product-price-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.22);
  color: #1a8a44; font-size: .73rem; font-weight: 700;
  font-family: var(--font-body); padding: 4px 10px;
  border-radius: 20px; margin-top: 8px; margin-bottom: 4px;
}
.section-dark .product-price-tag {
  background: rgba(37,211,102,.14); color: #4ade80;
  border-color: rgba(37,211,102,.38);
}
.ig-card-price {
  font-size: .73rem; font-weight: 600;
  font-family: var(--font-body); color: #25D366; margin: 2px 0 8px;
}
.ig-card-price strong { font-size: .83rem; font-weight: 700; }

/* ── TIKTOK TABS — diseño definitivo de píldora ── */
/* (Cancela el display:none de la línea 2121 que ya fue corregida arriba) */
.tt-tabs {
  display: flex !important;
  flex-wrap: nowrap; gap: 8px;
  overflow-x: auto; scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 20px; margin-bottom: 28px;
}
.tt-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 640px) {
  .tt-tabs { justify-content: center; flex-wrap: wrap; }
}

/* Cada tab — reset + diseño píldora horizontal */
.tt-story {
  all: unset !important;
  box-sizing: border-box !important;
  display: inline-flex !important; flex-direction: row !important;
  align-items: center !important; gap: 7px !important;
  flex-shrink: 0 !important; cursor: pointer !important;
  padding: 7px 14px 7px 7px !important; border-radius: 40px !important;
  background: #f5f5f3 !important; border: 2px solid transparent !important;
  transition: background .2s, border-color .2s !important;
  font-family: var(--font-body) !important;
  -webkit-tap-highlight-color: transparent !important;
  white-space: nowrap !important; position: relative !important;
}
.tt-story:hover {
  background: var(--rose-light) !important;
  border-color: var(--rose) !important;
}
.tt-story.active {
  background: var(--ink) !important; border-color: var(--ink) !important;
  box-shadow: 0 4px 14px rgba(14,14,14,.18) !important;
}
/* Ocultar elementos del diseño viejo */
.tt-story-ring, .tt-story-img, .tt-story-followers,
.tt-story-name-old { display: none !important; }

/* Avatar del tab */
.tt-story .tt-story-avatar {
  width: 28px !important; height: 28px !important;
  border-radius: 50% !important; object-fit: cover !important;
  border: 2px solid #fff !important; display: block !important;
  flex-shrink: 0 !important;
}
/* Nombre */
.tt-story .tt-story-name {
  font-size: .78rem !important; font-weight: 600 !important;
  color: var(--ink) !important; line-height: 1.2 !important;
}
.tt-story.active .tt-story-name { color: #fff !important; }
/* Contador */
.tt-story .tt-story-count {
  font-size: .65rem !important; font-weight: 700 !important;
  color: var(--rose-dark) !important;
  background: var(--rose-light) !important;
  padding: 2px 6px !important; border-radius: 10px !important;
}
.tt-story.active .tt-story-count {
  color: #e8c87a !important;
  background: rgba(232,200,122,.15) !important;
}
/* Punto indicador activo */
.tt-story::after { content: '' !important; display: none !important; }
.tt-story.active::after {
  display: block !important; position: absolute !important;
  bottom: -14px !important; left: 50% !important;
  transform: translateX(-50%) !important;
  width: 5px !important; height: 5px !important;
  background: var(--ink) !important; border-radius: 50% !important;
}
.tt-story:focus-visible {
  outline: 2px solid var(--gold) !important; outline-offset: 2px !important;
}

/* ── CARRUSEL DISEÑOS — FIX MOBILE DEFINITIVO ── */
@media (max-width: 639px) {
  #igPrev, #igNext { display: none !important; }
  .ig-carousel-wrapper { display: block !important; margin-top: 1.5rem; }
  .ig-track-outer { overflow: hidden !important; border-radius: 16px; width: 100%; }
  .ig-track { display: flex !important; gap: 0; }
  .ig-card {
    flex: 0 0 calc(100vw - 56px) !important;
    width: calc(100vw - 56px) !important;
    max-width: calc(100vw - 56px) !important;
    margin-right: 12px !important; min-width: 0 !important;
  }
  .ig-card-img-wrap { height: 230px !important; }
  .ig-card-body { padding: 13px 13px 15px !important; }
  .ig-cta-row { flex-direction: column !important; gap: 7px !important; }
  .ig-btn { width: 100% !important; justify-content: center !important; }
  .ig-dot { width: 10px; height: 10px; touch-action: manipulation; }
  .ig-dot.active { width: 24px; }
  .ig-swipe-hint { display: block; }
}

/* ── MEGA CTA SECTION ── */
.mega-cta-section {
  background: linear-gradient(155deg, var(--rose-light) 0%, #fff6fb 50%, var(--rose-light) 100%);
  padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.mega-cta-section::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,120,154,.07) 0%, transparent 70%);
  pointer-events: none;
}
.mega-cta-section h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-bottom: 14px; position: relative;
}
.mega-cta-section p {
  color: var(--ink-mid); max-width: 480px;
  margin: 0 auto 36px; position: relative;
}
.mega-cta-group {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; position: relative;
}
@media (max-width: 560px) {
  .mega-cta-group { flex-direction: column; padding: 0 24px; }
  .mega-cta-group a { text-align: center; justify-content: center; }
}

/* ── MOBILE CTA BAR FIJA ── */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: #fff; box-shadow: 0 -3px 20px rgba(0,0,0,.11);
  gap: 10px; border-top: 1px solid rgba(0,0,0,.06);
}
@media (max-width: 767px) {
  .mobile-cta-bar { display: flex; }
  .wsp-float { bottom: calc(80px + env(safe-area-inset-bottom)) !important; }
  main { padding-bottom: 74px; }
  .sale-notif { bottom: calc(88px + env(safe-area-inset-bottom)) !important; }
}
.mcta-mayor {
  flex: 1; background: var(--ink); color: #fff;
  border: none; border-radius: 12px; padding: 13px 8px;
  font-family: var(--font-body); font-size: .79rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  min-height: 48px; cursor: pointer; text-decoration: none;
  -webkit-tap-highlight-color: transparent; transition: opacity .15s;
}
.mcta-mayor:active { opacity: .8; }
.mcta-wsp {
  flex: 1; background: var(--wsp); color: #fff;
  border: none; border-radius: 12px; padding: 13px 8px;
  font-family: var(--font-body); font-size: .79rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  min-height: 48px; cursor: pointer; text-decoration: none;
  -webkit-tap-highlight-color: transparent; transition: opacity .15s;
}
.mcta-wsp:active { opacity: .8; }

/* ── SOCIAL PROOF NOTIF ── */
.sale-notif {
  position: fixed; bottom: 100px; left: 16px; z-index: 990;
  background: #fff; border-radius: 14px;
  padding: 12px 36px 12px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  display: flex; align-items: center; gap: 10px;
  max-width: 280px;
  transform: translateX(-130%);
  transition: transform .42s cubic-bezier(.34,1.56,.64,1);
  border-left: 3px solid var(--wsp);
}
.sale-notif.show { transform: translateX(0); }
.sale-notif-icon { font-size: 1.3rem; flex-shrink: 0; }
.sale-notif-text { font-size: .76rem; line-height: 1.35; font-family: var(--font-body); }
.sale-notif-text strong {
  display: block; font-size: .8rem; color: var(--ink); font-weight: 600;
}
.sale-notif-close {
  position: absolute; top: 6px; right: 10px;
  background: none; border: none; font-size: .85rem;
  cursor: pointer; color: var(--gray); padding: 0; line-height: 1;
}
@media (max-width: 767px) { .sale-notif { max-width: calc(100vw - 32px); } }

/* ── PRINT ── */
@media print {
  .mobile-cta-bar, .sale-notif, .wsp-float,
  .cookie-bar, .urgency-bar { display: none !important; }
}


/* ============================================================
   TIKTOK CARRUSEL v3 — Definitivo
   Approach: viewport overflow:hidden + track translateX
   Las cartas van en flujo flex normal — NINGUNA tapa a otra
   Botones 100% clickeables en desktop y móvil
   ============================================================ */

/* ── Sección ── */
.tkt-section {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  padding: 0 0 64px;
}
.tkt-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 50%, rgba(212,120,154,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 55%, rgba(196,146,42,.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ── Header editorial ── */
.tkt-header {
  padding: 72px 20px 48px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.tkt-header-inner { text-align: center; }

.tkt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #e8c87a;
  background: rgba(232,200,122,.08);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(232,200,122,.18);
  margin-bottom: 16px;
}
.tkt-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 14px;
}
.tkt-title em { color: var(--rose); font-style: italic; }
.tkt-subtitle {
  font-family: var(--font-body);
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  max-width: 520px;
  margin: 0 auto;
}

/* Stats strip */
.tkt-total-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
}
.tkt-total-item {
  flex: 1 1 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.tkt-total-item:last-child { border-right: none; }
.tkt-total-sep { display: none; } /* separator via border-right ya */
.tkt-total-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #e8c87a;
  line-height: 1.1;
}
.tkt-total-lbl {
  display: block;
  font-size: .67rem;
  font-family: var(--font-body);
  color: rgba(255,255,255,.45);
  margin-top: 3px;
}
@media (max-width: 560px) {
  .tkt-total-strip { display: grid; grid-template-columns: 1fr 1fr; }
  .tkt-total-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .tkt-total-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .tkt-total-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════════════
   CARRUSEL — approach correcto sin position:absolute en cards
   ═══════════════════════════════════════════════════════════ */

.tkt-carousel {
  position: relative;
}

/* Las flechas van FUERA del viewport, absolutas al carousel */
#tktPrev, #tktNext {
  position: absolute;
  top: 28%; /* alineado con la zona del phone */
  transform: translateY(-50%);
  z-index: 20;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(20,20,20,.85);
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: 1.4rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, transform .15s;
  -webkit-tap-highlight-color: transparent;
}
#tktPrev { left: 8px; }
#tktNext { right: 8px; }
#tktPrev:hover, #tktNext:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-50%) scale(1.08);
}
@media (max-width: 640px) {
  #tktPrev, #tktNext { display: none; }
}

/* Viewport — clip sin cortar el contenido en z */
.tkt-viewport {
  overflow: hidden;
  margin: 0 60px; /* espacio para las flechas */
}
@media (max-width: 900px) { .tkt-viewport { margin: 0 52px; } }
@media (max-width: 640px) { .tkt-viewport { margin: 0 12px; } }

/* Track — flex, se desplaza con translateX */
.tkt-track {
  display: flex;
  gap: 20px;
  padding: 24px 0 16px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  align-items: flex-start; /* cards se alinean arriba */
}

/* ── CARD — en flujo normal, NUNCA position:absolute ── */
.tkt-card {
  flex: 0 0 calc(33.333% - 14px); /* 3 en desktop */
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: opacity .4s ease, transform .4s ease, filter .4s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* Cards no activas: visibles pero atenuadas, NO BLOQUEAN CLICKS */
.tkt-card:not(.tkt-active) {
  opacity: .45;
  filter: blur(.5px) saturate(.6);
  transform: scale(.94);
  /* pointer-events HABILITADOS para poder navegar al hacer click */
  cursor: pointer;
}
/* Hover en no-activa: invitar al click */
.tkt-card:not(.tkt-active):hover {
  opacity: .65;
  filter: blur(0) saturate(.8);
}

/* Card activa */
.tkt-card.tkt-active {
  opacity: 1;
  filter: none;
  transform: scale(1);
  cursor: default;
}

/* Tablet: 2 cards */
@media (min-width: 641px) and (max-width: 900px) {
  .tkt-card { flex: 0 0 calc(50% - 10px); }
}

/* Mobile: 1 card */
@media (max-width: 640px) {
  .tkt-card { flex: 0 0 calc(100vw - 48px); }
  .tkt-card:not(.tkt-active) {
    opacity: .4; filter: blur(.5px); transform: scale(.92);
    cursor: pointer;
  }
  .tkt-track { gap: 12px; padding: 16px 0 8px; }
}

/* ── PHONE MOCKUP ── */
.tkt-phone {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: #111;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,.07),
    0 20px 48px rgba(0,0,0,.55);
  transition: box-shadow .4s ease;
}
.tkt-card.tkt-active .tkt-phone {
  box-shadow:
    0 0 0 1.5px rgba(240,184,205,.25),
    0 32px 64px rgba(0,0,0,.65);
}
/* Notch decorativo */
.tkt-phone::before {
  content: '';
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 5px;
  background: rgba(0,0,0,.6);
  border-radius: 3px;
  z-index: 10;
  pointer-events: none;
}

.tkt-phone-screen {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
}

.tkt-phone-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .5s ease;
  display: block;
}
.tkt-card.tkt-active .tkt-phone-img { transform: scale(1.04); }

.tkt-phone-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.5) 0%,
    transparent 28%,
    transparent 52%,
    rgba(0,0,0,.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Top del phone: badge + viral counter */
.tkt-phone-top {
  position: absolute; top: 14px; left: 14px; right: 14px;
  z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  pointer-events: none;
}
.tkt-phone-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(0,0,0,.72);
  color: #fff; font-size: .64rem; font-weight: 700;
  padding: 4px 9px; border-radius: 20px;
  font-family: var(--font-body);
}
.tkt-phone-viral {
  font-size: .61rem; font-weight: 700;
  color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.52);
  padding: 3px 8px; border-radius: 20px;
  font-family: var(--font-body);
}

/* Botón play — pointer-events none en no-activas */
.tkt-play-btn {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none; /* invisible = no bloquea */
}
.tkt-card.tkt-active .tkt-play-btn {
  opacity: 1;
  pointer-events: auto;
}
.tkt-play-btn > svg {
  background: rgba(255,255,255,.9);
  color: #010101;
  border-radius: 50%;
  width: 58px; height: 58px;
  padding: 14px 12px 14px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.tkt-play-btn:hover > svg {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0,0,0,.65);
}

/* Bottom del phone: logo + nombre */
.tkt-phone-bottom {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  z-index: 3;
  display: flex; align-items: center; gap: 8px;
  pointer-events: none;
}
.tkt-brand-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(255,255,255,.6); flex-shrink: 0;
}
.tkt-brand-name {
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  color: #fff; margin: 0; line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}
.tkt-brand-handle {
  font-family: var(--font-body); font-size: .63rem;
  color: rgba(255,255,255,.68); margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}

/* ── INFO debajo del phone — en flujo normal ── */
.tkt-card-info {
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease .1s, transform .35s ease .1s;
  /* pointer-events none en no-activas — no hay conflicto */
  pointer-events: none;
}
.tkt-card.tkt-active .tkt-card-info {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Stats */
.tkt-card-stats {
  display: flex;
  background: rgba(255,255,255,.06);
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.tkt-cs {
  flex: 1; text-align: center; padding: 10px 4px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.tkt-cs:last-child { border-right: none; }
.tkt-cs-v {
  display: block; font-family: var(--font-display);
  font-size: .95rem; font-weight: 700; color: #e8c87a; line-height: 1.1;
}
.tkt-cs-l {
  display: block; font-size: .58rem;
  color: rgba(255,255,255,.42); font-family: var(--font-body); margin-top: 2px;
}

.tkt-card-desc {
  font-family: var(--font-body); font-size: .8rem;
  color: rgba(255,255,255,.58); line-height: 1.5; margin: 0;
}

/* ── BOTONES — z-index alto, cursor pointer explícito ── */
.tkt-card-ctas {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 5; /* siempre por encima */
}
.tkt-btn-wsp {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: #25D366; color: #fff;
  font-family: var(--font-body); font-size: .84rem; font-weight: 700;
  padding: 13px 12px; border-radius: 12px;
  text-decoration: none; min-height: 48px;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: background .18s, transform .15s, box-shadow .18s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.tkt-btn-wsp:hover {
  background: #1db954; transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.55);
}
.tkt-btn-wsp:active { transform: scale(.97); }

.tkt-btn-tt {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.85);
  font-family: var(--font-body); font-size: .84rem; font-weight: 600;
  padding: 13px 14px; border-radius: 12px;
  text-decoration: none; min-height: 48px;
  border: 1px solid rgba(255,255,255,.16);
  transition: background .18s;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.tkt-btn-tt:hover { background: rgba(255,255,255,.17); }
.tkt-btn-tt:active { transform: scale(.97); }

.tkt-card-loc {
  font-family: var(--font-body); font-size: .7rem;
  color: rgba(255,255,255,.28); margin: 0;
}

/* ── CONTROLES — dots centrados ── */
.tkt-controls {
  display: flex; align-items: center;
  justify-content: center;
  padding: 20px 20px 0;
  gap: 0;
}
/* Las flechas en .tkt-controls se ocultan — ya están absolutas en .tkt-carousel */
.tkt-controls .tkt-arr-prev,
.tkt-controls .tkt-arr-next { display: none !important; }

.tkt-dots { display: flex; gap: 8px; align-items: center; }
.tkt-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none;
  cursor: pointer; transition: all .3s ease;
  padding: 0; -webkit-tap-highlight-color: transparent; min-width: 8px;
}
.tkt-dot.active {
  background: var(--rose); width: 26px; border-radius: 4px;
}

/* Barra de progreso autoplay */
.tkt-progress {
  width: calc(100% - 40px); max-width: 420px;
  height: 2px; margin: 14px auto 0;
  background: rgba(255,255,255,.07); border-radius: 2px; overflow: hidden;
}
.tkt-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--rose-dark), var(--gold));
  border-radius: 2px; transition: width 4s linear;
}

/* Mobile refinements */
@media (max-width: 640px) {
  .tkt-header { padding: 48px 20px 32px; }
  .tkt-card-ctas { flex-direction: column; }
  .tkt-btn-wsp, .tkt-btn-tt { width: 100%; }
}
