/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-deep:       #0a0a0f;
  --bg-card:       #12121a;
  --bg-card2:      #16161f;
  --accent-purple: #7c3aed;
  --accent-blue:   #2563eb;
  --accent-grad:   linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  --accent-grad-h: linear-gradient(135deg, #9155ff 0%, #3b82f6 100%);
  --text-primary:  #f1f0ff;
  --text-muted:    #8b8aa0;
  --text-dim:      #5a5970;
  --border:        rgba(255,255,255,0.08);
  --border-accent: rgba(124,58,237,0.35);
  --glow-purple:   0 0 24px rgba(124,58,237,0.45);
  --glow-blue:     0 0 24px rgba(37,99,235,0.35);
  --radius:        14px;
  --radius-sm:     8px;
  --transition:    0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

/* ── Utilities ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-purple);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 52px;
}
.text-center { text-align: center; }
.grad-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-primary:hover {
  background: var(--accent-grad-h);
  box-shadow: 0 6px 28px rgba(124,58,237,0.55);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: rgba(124,58,237,0.5);
  background: rgba(124,58,237,0.08);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ── Fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(10,10,15,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.nav-logo .logo-icon {
  width: 34px; height: 34px;
  background: var(--accent-grad);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--glow-purple);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-btn {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.cart-btn:hover { background: rgba(124,58,237,0.15); border-color: var(--border-accent); }
#cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--accent-grad);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
}
#cart-badge.bump { transform: scale(1.4); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(18,18,26,0.97);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
#mobile-menu.open { max-height: 500px; }
#mobile-menu a {
  padding: 13px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#mobile-menu a:hover { color: var(--text-primary); background: rgba(124,58,237,0.08); }
#mobile-menu .btn-primary { margin: 12px 24px 0; border-radius: 10px; }

/* ════════════════════════════
   HERO
════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-grad);
  opacity: 0.18;
  animation: float-particle linear infinite;
}
.particle:nth-child(1)  { width:4px;  height:4px;  left:12%;  top:20%; animation-duration:14s; animation-delay:0s; }
.particle:nth-child(2)  { width:6px;  height:6px;  left:80%;  top:15%; animation-duration:18s; animation-delay:2s; }
.particle:nth-child(3)  { width:3px;  height:3px;  left:55%;  top:60%; animation-duration:12s; animation-delay:1s; }
.particle:nth-child(4)  { width:8px;  height:8px;  left:25%;  top:75%; animation-duration:22s; animation-delay:3s; }
.particle:nth-child(5)  { width:4px;  height:4px;  left:70%;  top:45%; animation-duration:16s; animation-delay:5s; }
.particle:nth-child(6)  { width:5px;  height:5px;  left:40%;  top:30%; animation-duration:20s; animation-delay:1.5s;}
.particle:nth-child(7)  { width:3px;  height:3px;  left:90%;  top:70%; animation-duration:15s; animation-delay:4s; }
.particle:nth-child(8)  { width:6px;  height:6px;  left:5%;   top:50%; animation-duration:19s; animation-delay:0.5s;}
.particle:nth-child(9)  { width:4px;  height:4px;  left:65%;  top:85%; animation-duration:13s; animation-delay:2.5s;}
.particle:nth-child(10) { width:7px;  height:7px;  left:35%;  top:10%; animation-duration:17s; animation-delay:3.5s;}
.particle:nth-child(11) { width:3px;  height:3px;  left:85%;  top:35%; animation-duration:21s; animation-delay:6s; }
.particle:nth-child(12) { width:5px;  height:5px;  left:20%;  top:90%; animation-duration:11s; animation-delay:1s; }
@keyframes float-particle {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity:0.18; }
  33%  { transform: translateY(-60px) translateX(20px) scale(1.2); opacity:0.3; }
  66%  { transform: translateY(-30px) translateX(-15px) scale(0.9); opacity:0.15; }
  100% { transform: translateY(0) translateX(0) scale(1); opacity:0.18; }
}
/* Radial glow behind hero */
#hero::before {
  content: '';
  position: absolute;
  top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.1);
  font-size: 0.8rem;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #a78bfa;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity:1; }
  50% { transform: scale(1.6); opacity:0.5; }
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-title span { display: block; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 3px; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* Hero mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.mockup-window {
  width: 100%;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04), var(--glow-purple);
  animation: float-window 6s ease-in-out infinite;
}
@keyframes float-window {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-dot.r { background: #ff5f57; }
.mockup-dot.y { background: #ffbd2e; }
.mockup-dot.g { background: #28ca42; }
.mockup-content { padding: 20px; }
.mock-topbar {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  height: 36px;
  margin-bottom: 16px;
  display: flex; align-items: center; padding: 0 12px; gap: 8px;
}
.mock-topbar-line { height: 8px; border-radius: 4px; flex: 1; background: rgba(255,255,255,0.07); }
.mock-topbar-btn { width: 60px; height: 20px; border-radius: 6px; background: var(--accent-grad); opacity:0.7; }
.mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.mock-card {
  border-radius: 10px;
  overflow: hidden;
}
.mock-card-img {
  height: 70px;
}
.mock-card-img.c1 { background: linear-gradient(135deg, #7c3aed, #2563eb); }
.mock-card-img.c2 { background: linear-gradient(135deg, #059669, #0ea5e9); }
.mock-card-img.c3 { background: linear-gradient(135deg, #d97706, #dc2626); }
.mock-card-body { padding: 8px; background: rgba(255,255,255,0.04); }
.mock-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); margin-bottom: 4px; }
.mock-line.short { width: 60%; }
.mock-line.price { width: 40%; background: rgba(124,58,237,0.4); }
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mock-stat {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px;
}
.mock-stat-num { height: 14px; border-radius: 4px; background: var(--accent-grad); opacity: 0.5; margin-bottom: 5px; width: 70%; }
.mock-stat-label { height: 7px; border-radius: 3px; background: rgba(255,255,255,0.07); width: 90%; }

/* ════════════════════════════
   LOGO BAR
════════════════════════════ */
#logos { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos-label { text-align: center; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); margin-bottom: 28px; }
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 26s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 48px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.3s;
}
.logo-item:hover { color: var(--text-muted); }
.logo-item .logo-mark {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: #fff;
}

/* ════════════════════════════
   CATEGORIES
════════════════════════════ */
#categorias .cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--glow-purple);
  background: var(--bg-card2);
}
.cat-icon { font-size: 2.4rem; margin-bottom: 14px; line-height: 1; }
.cat-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 7px; }
.cat-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.cat-count {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-purple);
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 18px;
}
.cat-card .btn-sm {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}
.cat-card:hover .btn-sm { background: var(--accent-grad); color: #fff; border-color: transparent; }

/* ════════════════════════════
   PRODUCTS
════════════════════════════ */
#productos { background: var(--bg-card); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.product-img {
  height: 170px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  font-size: 2.8rem;
}
.product-img.g1 { background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%); }
.product-img.g2 { background: linear-gradient(135deg, #059669 0%, #0ea5e9 100%); }
.product-img.g3 { background: linear-gradient(135deg, #d97706 0%, #dc2626 100%); }
.product-img.g4 { background: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%); }
.product-img.g5 { background: linear-gradient(135deg, #16a34a 0%, #2563eb 100%); }
.product-img.g6 { background: linear-gradient(135deg, #be185d 0%, #7c3aed 100%); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  color: #fff;
}
.badge-new     { background: #16a34a; }
.badge-best    { background: linear-gradient(90deg, #d97706, #dc2626); }
.badge-sale    { background: linear-gradient(90deg, #7c3aed, #2563eb); }
.product-body { padding: 18px 18px 20px; }
.product-cat { font-size: 0.75rem; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.product-name { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.product-rating {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.82rem; color: #fbbf24; margin-bottom: 12px;
}
.product-rating span { color: var(--text-muted); }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.price-old { font-size: 0.85rem; color: var(--text-dim); text-decoration: line-through; }
.price-new { font-size: 1.2rem; font-weight: 800; background: var(--accent-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.btn-cart {
  width: 100%;
  padding: 11px;
  border-radius: 9px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-cart:hover, .btn-cart.added {
  background: var(--accent-grad);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(124,58,237,0.35);
}

/* ════════════════════════════
   WHY US
════════════════════════════ */
#porque .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--glow-purple);
}
.why-icon { font-size: 2.2rem; margin-bottom: 14px; line-height:1; }
.why-title { font-size: 1rem; font-weight: 700; margin-bottom: 9px; }
.why-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ════════════════════════════
   HOW IT WORKS
════════════════════════════ */
#como { background: var(--bg-card); }
.steps-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step {
  text-align: center;
  padding: 0 16px;
}
.step-num {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  opacity: 0.35;
}
.step-icon-wrap {
  width: 68px; height: 68px;
  background: rgba(124,58,237,0.12);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  box-shadow: var(--glow-purple);
}
.step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
  color: var(--accent-purple);
  font-size: 1.5rem;
  opacity: 0.5;
}

/* ════════════════════════════
   TESTIMONIALS
════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--glow-purple);
}
.testi-stars { color: #fbbf24; font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-text::before { content: '"'; color: var(--accent-purple); font-size: 1.4rem; font-style: normal; line-height: 0; vertical-align: -0.3em; margin-right: 3px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #7c3aed, #2563eb); }
.av2 { background: linear-gradient(135deg, #059669, #0ea5e9); }
.av3 { background: linear-gradient(135deg, #d97706, #dc2626); }
.testi-info .name { font-size: 0.9rem; font-weight: 700; }
.testi-info .role { font-size: 0.78rem; color: var(--text-dim); }

/* ════════════════════════════
   PRICING
════════════════════════════ */
#precios { background: var(--bg-card); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--accent-purple);
  box-shadow: var(--glow-purple), inset 0 0 0 1px rgba(124,58,237,0.2);
  background: rgba(124,58,237,0.06);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent-grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(124,58,237,0.4);
}
.plan-name { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 4px;
}
.plan-price .cur { font-size: 1.2rem; font-weight: 700; color: var(--text-muted); margin-top: 8px; }
.plan-price .amount { font-size: 3rem; font-weight: 900; line-height: 1; }
.plan-price .period { font-size: 0.85rem; color: var(--text-muted); margin-top: 14px; }
.pricing-card.featured .plan-price .amount {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plan-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 11px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.plan-features li .check {
  color: #4ade80;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-features li.off { opacity: 0.4; text-decoration: line-through; }
.plan-features li.off .check { color: var(--text-dim); }
.btn-plan {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-plan-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
}
.btn-plan-outline:hover { border-color: var(--border-accent); background: rgba(124,58,237,0.08); }
.btn-plan-primary {
  background: var(--accent-grad);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(124,58,237,0.35);
}
.btn-plan-primary:hover {
  background: var(--accent-grad-h);
  box-shadow: 0 6px 24px rgba(124,58,237,0.5);
}

/* ════════════════════════════
   FAQ
════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-accent); }
.faq-question {
  width: 100%;
  background: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: rgba(124,58,237,0.2); color: var(--accent-purple); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ════════════════════════════
   NEWSLETTER
════════════════════════════ */
#newsletter {
  position: relative;
  overflow: hidden;
}
#newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(124,58,237,0.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(37,99,235,0.14) 0%, transparent 55%);
  pointer-events: none;
}
.newsletter-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.newsletter-inner { position: relative; z-index: 1; }
.newsletter-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
.newsletter-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 36px; }
.newsletter-form-wrap {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 24px;
  border-radius: 50px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: rgba(255,255,255,0.04);
  transition: border-color var(--transition);
}
.newsletter-form-wrap:focus-within { border-color: rgba(124,58,237,0.5); }
.newsletter-form-wrap input[type="email"] {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  padding: 14px 20px;
  font-family: inherit;
}
.newsletter-form-wrap input::placeholder { color: var(--text-dim); }
.newsletter-form-wrap button[type="submit"] {
  background: var(--accent-grad);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.newsletter-form-wrap button:hover { opacity: 0.88; }
.newsletter-msg {
  min-height: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 32px;
}
.newsletter-msg.success { color: #4ade80; }
.newsletter-msg.error   { color: #f87171; }
.social-links { display: flex; justify-content: center; gap: 14px; }
.social-link {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--accent-grad); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(124,58,237,0.35); }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
#footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 9px; font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }
.footer-logo .logo-icon { width: 30px; height: 30px; background: var(--accent-grad); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.footer-tagline { font-size: 0.845rem; color: var(--text-muted); line-height: 1.6; max-width: 220px; margin-bottom: 20px; }
.footer-col-title { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.845rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy { font-size: 0.8rem; color: var(--text-dim); }
.footer-payments { display: flex; align-items: center; gap: 10px; }
.payment-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  gap: 5px;
}
.ssl-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #4ade80;
  font-weight: 600;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  #categorias .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  #porque .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  #mobile-menu { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-visual { order: -1; }
  .mockup-window { max-width: 100%; }
  .mock-grid { grid-template-columns: repeat(3, 1fr); }
  #categorias .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  #porque .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap { grid-template-columns: 1fr; gap: 8px; }
  .step-connector { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-title { text-align: center; }
}
@media (max-width: 480px) {
  #categorias .cats-grid { grid-template-columns: 1fr; }
  #porque .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.3rem; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-form-wrap { flex-direction: column; border-radius: 12px; border: 1.5px solid var(--border); }
  .newsletter-form-wrap button[type="submit"] { border-radius: 0 0 10px 10px; }
}
