/* ==========================================================================
   SHOPIFY + IA TUTORIAL HUB - STYLESHEET (OPTIMIZADO PARA MÓVIL Y DESKTOP)
   ========================================================================== */

:root {
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --primary-glow: rgba(79, 70, 229, 0.25);
  --accent-orange: #ea580c;
  --accent-warm: #fffbeb;
  --dark-bg: #090d16;
  --dark-surface: #111827;
  --dark-border: #1f2937;
  --light-bg: #f8fafc;
  --light-surface: #ffffff;
  --border-color: #e2e8f0;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-code: 'Fira Code', monospace;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 35px -10px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--light-bg);
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ==========================================================================
   ANNOUNCEMENT BAR & HEADER
   ========================================================================== */

.announcement-banner {
  background: linear-gradient(90deg, #1e1b4b 0%, #312e81 100%);
  color: #e0e7ff;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  flex-wrap: wrap;
}

.badge-pill {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Header en PC: Sigue la página con blur */
.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--primary-glow);
  flex-shrink: 0;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 800;
  font-size: 17px;
  line-height: 1.1;
  color: var(--text-main);
}

.brand-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14.5px;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--primary);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: var(--font-sans);
  box-sizing: border-box;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13.5px;
}

.btn-lg {
  padding: 13px 26px;
  font-size: 15px;
  border-radius: 12px;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--primary-glow);
}

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

.btn-primary-glow {
  background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
  color: #fff;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  max-width: 100%;
}

.pill-tag svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.gradient-text {
  background: linear-gradient(135deg, #4338ca 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding: 60px 0 50px;
  position: relative;
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #0f172a;
  word-break: break-word;
}

.hero-description {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  max-width: 100%;
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 28px;
  background-color: var(--border-color);
}

.hero-visual {
  min-width: 0;
  width: 100%;
}

/* Code Preview Window in Hero */
.code-preview-window {
  background: #0f172a;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.25);
  border: 1px solid #1e293b;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.window-header {
  background: #1e293b;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.window-title {
  font-family: var(--font-code);
  font-size: 11.5px;
  color: #94a3b8;
}

.badge-status {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.window-body {
  padding: 18px;
  overflow-x: auto;
  max-width: 100%;
}

.window-body pre {
  font-family: var(--font-code);
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.55;
  overflow-x: auto;
}

.tok-tag { color: #f43f5e; }
.tok-attr { color: #38bdf8; }
.tok-str { color: #a3e635; }
.tok-liquid { color: #fbbf24; font-weight: 600; }
.tok-comment { color: #64748b; font-style: italic; }

/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */

.content-section {
  padding: 70px 0;
  position: relative;
}

.bg-alt {
  background-color: #f1f5f9;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.section-badge svg {
  width: 15px;
  height: 15px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 10px;
  word-break: break-word;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 820px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ==========================================================================
   COMPARISON VERTICAL STACK (UNO DEBAJO DEL OTRO)
   ========================================================================== */

.comparison-vertical-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.compare-card-row {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: start;
  transition: transform 0.2s, box-shadow 0.2s;
}

.compare-card-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card-left-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card-tag {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 14px;
}

.tag-fast {
  background: #fef3c7;
  color: #b45309;
}

.tag-block {
  background: #e0e7ff;
  color: #4338ca;
}

.tag-pro {
  background: #d1fae5;
  color: #065f46;
}

.card-icon-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-amber {
  background: #fef3c7;
  color: #d97706;
}

.icon-indigo {
  background: #e0e7ff;
  color: #4f46e5;
}

.icon-emerald {
  background: #d1fae5;
  color: #059669;
}

.card-icon-header h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 4px;
}

.card-subtitle-phrase {
  color: #475569;
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 600;
}

.card-subtitle-phrase code {
  background: rgba(0,0,0,0.06);
  padding: 2px 5px;
  border-radius: 4px;
  font-family: var(--font-code);
  font-size: 12px;
  color: #4338ca;
}

.card-right-col {
  min-width: 0;
}

.card-right-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-main);
  margin-bottom: 14px;
  font-weight: 700;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  line-height: 1.45;
}

.check-list svg {
  width: 17px;
  height: 17px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.limitations-box, .benefit-box {
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 12px;
}

.limitations-box {
  background: #fffbeb;
  border: 1px solid #fef08a;
  color: #92400e;
}

.benefit-box {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  color: #166534;
}

.benefit-indigo {
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  color: #3730a3;
}

.limitations-title, .benefit-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  margin-bottom: 4px;
}

.limitations-title svg, .benefit-title svg {
  width: 15px;
  height: 15px;
}

/* ==========================================================================
   DECISION BANNER (PUNTOS VERTICALES CLAROS)
   ========================================================================== */

.decision-banner {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  color: #ffffff;
  padding: 26px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.decision-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.decision-icon {
  width: 44px;
  height: 44px;
  background: rgba(99, 102, 241, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  flex-shrink: 0;
}

.decision-icon svg {
  width: 22px;
  height: 22px;
}

.decision-header h3 {
  font-size: 19px;
  color: #ffffff;
  font-weight: 800;
}

.decision-steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.decision-step-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.step-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}

.step-badge.badge-amber {
  background: #fef3c7;
  color: #92400e;
}

.step-badge.badge-indigo {
  background: #e0e7ff;
  color: #3730a3;
}

.step-badge.badge-emerald {
  background: #d1fae5;
  color: #065f46;
}

.decision-step-item p {
  font-size: 13.5px;
  color: #e2e8f0;
  line-height: 1.45;
  margin: 0;
}

.decision-step-item p strong {
  color: #ffffff;
}

.decision-step-item p code {
  background: rgba(255, 255, 255, 0.15);
  color: #93c5fd;
  padding: 1px 4px;
  border-radius: 4px;
  font-family: var(--font-code);
  font-size: 12px;
}

/* ==========================================================================
   TIMELINE / TEMARIO
   ========================================================================== */

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.timeline-marker {
  font-size: 26px;
  font-weight: 800;
  color: #cbd5e1;
  line-height: 1;
  padding-top: 12px;
  width: 40px;
  flex-shrink: 0;
  text-align: center;
}

.timeline-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px 26px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  flex-grow: 1;
  transition: transform 0.2s, border-color 0.2s;
  min-width: 0;
}

.timeline-card:hover {
  transform: translateX(4px);
  border-color: var(--primary);
}

.card-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.badge-time {
  background: #e0e7ff;
  color: var(--primary);
  font-size: 11.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.badge-type {
  background: #f1f5f9;
  color: #475569;
  font-size: 11.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.timeline-title code {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-code);
  font-size: 14.5px;
  color: #d97706;
}

.timeline-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.module-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.module-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #334155;
  font-weight: 500;
  line-height: 1.5;
}

.module-points li svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.module-points li span {
  flex: 1;
  min-width: 0;
}

.module-points li strong {
  color: #0f172a;
}

.module-points li code {
  background: #f1f5f9;
  padding: 1px 5px;
  border-radius: 4px;
  font-family: var(--font-code);
  font-size: 12.5px;
  color: #d97706;
}

/* ==========================================================================
   EXAMPLE SHOWCASE (ALL 4 VISIBLE VERTICALLY ONE BELOW THE OTHER)
   ========================================================================== */

.examples-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.example-container-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.example-header-bar {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  background: #fafafa;
}

.ex-category-badge {
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 4px;
}

.section-type-badge {
  background: #dbeafe;
  color: #1e40af;
}

.ex-main-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
}

.ex-main-desc {
  font-size: 13.5px;
  color: var(--text-muted);
}

.ex-video-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fdf2e9;
  border: 1px solid #fed7aa;
  color: #c2410c;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
}

.ex-video-badge svg {
  width: 15px;
  height: 15px;
}

/* 2-Column Example Body Grid */
.example-body-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  padding: 26px;
  align-items: start;
}

.example-preview-col,
.example-details-col {
  min-width: 0;
  width: 100%;
}

/* Sandbox Preview Container */
.sandbox-container {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 16px 20px;
  position: relative;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.02);
  width: 100%;
  box-sizing: border-box;
}

.sandbox-badge {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 10.5px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #f1f5f9;
  padding: 2px 7px;
  border-radius: 4px;
}

.sandbox-actions-inline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-top: 8px;
  flex-wrap: wrap;
}

.text-muted-small {
  font-size: 11.5px;
  color: #64748b;
}

/* Case Info Card (Right Column) */
.case-info-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px;
  width: 100%;
  box-sizing: border-box;
}

.case-info-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.case-info-card h4 svg {
  width: 17px;
  height: 17px;
  color: var(--primary);
}

.case-summary-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.case-points-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.point-item svg {
  width: 17px;
  height: 17px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.point-item strong {
  display: block;
  font-size: 13px;
  color: #1e293b;
  margin-bottom: 1px;
}

.point-item span {
  display: block;
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.4;
}

.video-cta-note {
  background: #ffffff;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.video-cta-note svg {
  width: 16px;
  height: 16px;
  color: #ea580c;
  flex-shrink: 0;
}

/* ==========================================================================
   RECREATION 1: TRUST BADGES (CLEAN 3 ICONS ONLY)
   ========================================================================== */

.shopify-recreation-1 {
  background-color: #fcfbf7;
  padding: 20px 12px;
  border-radius: 12px;
  width: 100%;
}

.trust-bar-divider {
  border-top: 1px dashed #dfdbca;
  max-width: 100%;
  margin: 0 auto;
}

.trust-bar-grid {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  width: 100%;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  color: #2b2b2b;
  font-weight: 600;
  font-size: 12.5px;
  flex: 1;
  min-width: 0;
}

.trust-icon-box {
  color: #ea580c;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.trust-icon-box svg {
  width: 100%;
  height: 100%;
}

.trust-label {
  line-height: 1.25;
}

/* ==========================================================================
   RECREATION 2: VIDEO DEMO CARD
   ========================================================================== */

.shopify-recreation-2 {
  background: #f7f4ed;
  padding: 24px 14px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.video-card-inner {
  background: #ffffff;
  border-radius: 18px;
  max-width: 100%;
  width: 100%;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.video-card-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #7b4f35;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.video-card-heading {
  font-family: var(--font-serif);
  font-size: 21px;
  color: #3b1d11;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}

.video-screen-mockup {
  background: #141414;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
  transition: transform 0.25s ease;
  width: 100%;
}

.video-screen-mockup:hover {
  transform: scale(1.01);
}

.video-play-btn-glow {
  width: 50px;
  height: 50px;
  background: #ff5722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 22px rgba(255, 87, 34, 0.6);
  transition: transform 0.2s ease;
}

.video-play-btn-glow svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.video-screen-footer {
  position: absolute;
  bottom: 10px;
  color: #e5e7eb;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ==========================================================================
   RECREATION 3: TOAST SOCIAL PROOF
   ========================================================================== */

.shopify-recreation-3 {
  background: linear-gradient(135deg, #fffbeb 0%, #ffe4e6 100%);
  border: 1px solid rgba(254, 205, 211, 0.8);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 10px auto;
}

.shopify-recreation-3.sp-toast-hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}

.sp-close-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.sp-product-img-box {
  flex-shrink: 0;
}

.sp-fake-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fef08a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #854d0e;
  border: 1px solid #fde047;
}

.sp-fake-img svg {
  width: 20px;
  height: 20px;
}

.sp-fake-badge {
  position: absolute;
  top: 2px;
  left: 2px;
  font-size: 7px;
  font-weight: 800;
  background: #e11d48;
  color: #fff;
  padding: 1px 3px;
  border-radius: 2px;
  text-transform: uppercase;
}

.sp-content-box {
  flex-grow: 1;
  min-width: 0;
}

.sp-buyer-text {
  font-size: 12px;
  color: #1f2937;
  line-height: 1.35;
  margin-bottom: 4px;
}

.sp-buyer-text strong {
  color: #0f172a;
}

.sp-product-link {
  color: #0f172a;
  text-decoration: underline;
  font-weight: 600;
}

.sp-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.sp-badge-price {
  background: #9b474e;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
}

.sp-compare-price {
  font-size: 10.5px;
  color: #6b7280;
  text-decoration: line-through;
}

.sp-footer-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #854d0e;
  opacity: 0.85;
}

/* ==========================================================================
   RECREATION 4: AUTHOR / STORY CARD
   ========================================================================== */

.shopify-recreation-4 {
  background: #fbf9f4;
  padding: 18px 12px;
  border-radius: 16px;
  width: 100%;
  box-sizing: border-box;
}

.story-card-wrapper {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  box-sizing: border-box;
}

.story-eyebrow {
  color: #7a4325;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.story-content-layout {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: start;
}

.story-profile-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.story-avatar-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fef3c7;
  margin-bottom: 6px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
}

.story-avatar-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0369a1;
}

.story-avatar-img svg {
  width: 40px;
  height: 40px;
}

.story-author-name {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 2px;
}

.story-community-pill {
  font-size: 9.5px;
  font-weight: 800;
  color: #7a4325;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.story-social-metrics {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.social-metric-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 700;
  color: #9a3412;
}

.social-metric-item svg {
  width: 10px;
  height: 10px;
}

.story-text-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.story-main-heading {
  font-family: var(--font-serif);
  font-size: 16px;
  color: #3b1d11;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.story-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.story-paragraphs strong {
  color: #1f2937;
}

.story-badges-footer {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.story-tag {
  background: #fdf2e9;
  color: #9a3412;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 10.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.story-tag svg {
  width: 11px;
  height: 11px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 35px 0;
  border-top: 1px solid #1e293b;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-left .brand-title {
  color: #ffffff;
}

.footer-left p {
  font-size: 13px;
}

.footer-note {
  font-size: 12.5px;
  color: #cbd5e1;
  background: #1e293b;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MÓVILES & TABLETS)
   ========================================================================== */

/* Tablet & Smaller Screens (<= 992px) */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-title {
    font-size: 34px;
  }
  .compare-card-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
  .example-body-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
}

/* Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  .container {
    padding: 0 14px;
    width: 100%;
    max-width: 100%;
  }
  
  /* Header estático en móvil (NO sigue la página) */
  .site-header {
    position: relative;
    top: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #ffffff;
    padding: 12px 0;
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .header-actions .btn {
    font-size: 11.5px;
    padding: 6px 10px;
  }

  /* Hero Section en Móvil */
  .hero-section {
    padding: 25px 0 20px;
    overflow: hidden;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    min-width: 0;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
  }

  .pill-tag {
    font-size: 11.5px;
    padding: 4px 10px;
    gap: 6px;
    line-height: 1.3;
    max-width: 100%;
    white-space: normal;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 23px;
    line-height: 1.22;
    margin-bottom: 12px;
    word-break: break-word;
    letter-spacing: -0.01em;
  }

  .hero-description {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 18px;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    font-size: 13.5px;
    padding: 11px 14px;
    box-sizing: border-box;
  }

  .hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 4px;
    gap: 2px;
    box-sizing: border-box;
  }

  .stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stat-number {
    font-size: 15px;
  }

  .stat-label {
    font-size: 9px;
    line-height: 1.2;
  }

  .stat-divider {
    display: none;
  }

  .hero-visual {
    width: 100%;
    min-width: 0;
  }

  .code-preview-window {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .window-body {
    padding: 12px 10px;
    overflow-x: auto;
  }

  .window-body pre {
    font-size: 11px;
    line-height: 1.45;
    white-space: pre;
    overflow-x: auto;
  }

  /* Secciones Globales */
  .content-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 22px;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 13.5px;
    margin-bottom: 20px;
  }

  /* Los 3 Métodos en Móvil */
  .compare-card-row {
    padding: 18px 14px;
    border-radius: var(--radius-md);
    gap: 16px;
  }

  .card-icon-header h3 {
    font-size: 16.5px;
  }

  .card-subtitle-phrase {
    font-size: 12.5px;
  }

  .check-list li {
    font-size: 13px;
  }

  /* Decision Banner en Móvil */
  .decision-banner {
    padding: 18px 14px;
  }

  .decision-header {
    margin-bottom: 14px;
    gap: 10px;
  }

  .decision-header h3 {
    font-size: 16px;
    line-height: 1.25;
  }

  .decision-icon {
    width: 36px;
    height: 36px;
  }

  .decision-step-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 12px;
  }

  .decision-step-item p {
    font-size: 12.5px;
    line-height: 1.4;
  }

  /* Temario en Móvil */
  .timeline-item {
    flex-direction: column;
    gap: 6px;
  }

  .timeline-marker {
    display: inline-block;
    width: auto;
    font-size: 14px;
    background: #e0e7ff;
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    text-align: left;
    margin-bottom: 2px;
  }

  .timeline-card {
    padding: 16px 12px;
  }

  .timeline-title {
    font-size: 15.5px;
    line-height: 1.3;
  }

  .module-points {
    gap: 8px;
  }

  .module-points li {
    font-size: 13px;
    line-height: 1.45;
    gap: 8px;
  }

  .module-points li svg {
    margin-top: 2px;
  }

  /* Ejemplos en Móvil */
  .example-header-bar {
    padding: 14px 12px;
  }

  .ex-main-title {
    font-size: 17px;
  }

  .example-body-grid {
    padding: 12px;
    gap: 14px;
  }

  .sandbox-container {
    padding: 24px 8px 14px;
  }

  .case-info-card {
    padding: 14px 12px;
  }

  /* Ejemplo 1 (Trust Badges) */
  .trust-bar-grid {
    padding: 10px 0;
    gap: 4px;
  }

  .trust-label {
    font-size: 10px;
  }

  .trust-icon-box {
    width: 20px;
    height: 20px;
  }

  /* Ejemplo 4 (Story Card) */
  .story-content-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .story-social-metrics {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }

  .story-paragraphs {
    text-align: left;
    font-size: 11.5px;
  }

  .story-badges-footer {
    justify-content: center;
  }
}
