/* ============================================================
   DEVMARKET PRO — Estilos Principales
   Paleta: Azul Profundo + Cian Eléctrico + Profesional TechElite
   Fuente: Inter (body) + Poppins (títulos)
   ============================================================ */

/* ── Variables de color ───────────────────────────────────── */
:root {
  --color-primario:    #1565C0;
  --color-primario-dark: #0D47A1;
  --color-acento:      #00B4D8;
  --color-acento-dark: #0096BB;
  --color-fondo-dark:  #0D1B2A;
  --color-fondo-nav:   #0A1628;
  --color-superficie:  #F4F6F8;
  --color-texto:       #1A1A2E;
  --color-texto-sec:   #8896A5;
  --color-borde:       #E3E8EF;
  --color-exito:       #28A745;
  --color-alerta:      #FFC107;
  --color-error:       #DC3545;
  --color-naranja:     #FF6B35;

  --fuente-body:    'Inter', sans-serif;
  --fuente-titulo:  'Poppins', sans-serif;

  --radio-card:     12px;
  --radio-btn:      8px;
  --sombra-card:    0 4px 24px rgba(0,0,0,0.08);
  --sombra-hover:   0 8px 32px rgba(21,101,192,0.18);
  --transicion:     0.25s ease;
}

/* ── Reset y base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body.devmarket-body {
  font-family: var(--fuente-body);
  color: var(--color-texto);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fuente-titulo);
  font-weight: 600;
  line-height: 1.25;
}

a { color: var(--color-primario); text-decoration: none; }
a:hover { color: var(--color-primario-dark); }

/* ── NAVBAR ───────────────────────────────────────────────── */
.devmarket-navbar {
  background: var(--color-fondo-nav);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transicion), box-shadow var(--transicion);
}
.devmarket-navbar.scrolled {
  background: rgba(10,22,40,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}
.navbar-brand-logo {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 180, 216, 0.18));
}
.navbar-brand-icon { font-size: 1.6rem; color: var(--color-acento); }
.navbar-brand-text {
  font-family: var(--fuente-titulo);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}
.nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem !important;
  border-radius: 6px;
  transition: background var(--transicion), color var(--transicion);
}
.nav-link:hover, .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,0.1);
}
.header-action-btn {
  min-height: 40px;
  padding: 0.48rem 1rem;
  font-size: 0.96rem;
  border-radius: 8px;
}
.header-action-btn-primary {
  padding-inline: 1.1rem;
}
.carrito-contador {
  font-size: 0.65rem;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  padding: 0 4px;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-fondo-dark) 0%, #1A2C4A 50%, #0D2137 100%);
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,180,216,0.12) 0%, transparent 60%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  color: var(--color-acento);
  font-size: 0.85rem;
  font-weight: 500;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-exito);
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(40,167,69,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(40,167,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,167,69,0); }
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  max-width: 560px;
}
.hero-tech-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
}
.btn-hero {
  padding: 0.7rem 1.75rem;
  border-radius: var(--radio-btn);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transicion), box-shadow var(--transicion);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn-primary {
  background: var(--color-primario);
  border-color: var(--color-primario);
}
.btn-primary:hover { background: var(--color-primario-dark); border-color: var(--color-primario-dark); }

/* Code window decorativo */
.code-window {
  background: #1A2C4A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  max-width: 400px;
}
.code-window-header {
  background: rgba(255,255,255,0.05);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.window-title { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-left: 8px; }
.code-window-body { padding: 1.25rem 1.5rem; }
.code-content {
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: 0.82rem;
  color: #A8D8EA;
  line-height: 1.8;
  margin: 0;
  white-space: pre-wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.hero-scroll-indicator a { color: rgba(255,255,255,0.5); font-size: 1.5rem; }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-section { background: var(--color-fondo-dark); }
.stats-bar { border-radius: 0; }
.stat-item { border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 1.5rem; color: var(--color-acento); }
.stat-valor { font-size: 2rem; font-weight: 800; color: #fff; font-family: var(--fuente-titulo); }
.stat-etiqueta { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── SECTION HEADERS ──────────────────────────────────────── */
.section-badge {
  display: inline-block;
  background: rgba(21,101,192,0.1);
  color: var(--color-primario);
  border: 1px solid rgba(21,101,192,0.2);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-texto);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--color-texto-sec);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-header { margin-bottom: 3rem; }
.bg-section-alt { background: var(--color-superficie); }

/* ── TARJETA DE PRODUCTO ──────────────────────────────────── */
.servicios-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-fondo-dark) 0%, #1A2C4A 50%, #0D2137 100%);
}
.servicios-section .section-title {
  color: #fff;
}
.servicios-section .section-subtitle {
  color: rgba(255,255,255,0.72);
}
.servicios-section .section-badge {
  background: rgba(255,255,255,0.08);
  color: #8fd8ff;
  border-color: rgba(143,216,255,0.25);
}
.productos-home-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-fondo-dark) 0%, #1A2C4A 50%, #0D2137 100%);
}
.productos-home-section .section-title {
  color: #fff;
}
.productos-home-section .section-subtitle {
  color: rgba(255,255,255,0.72);
}
.productos-home-section .section-badge {
  background: rgba(255,255,255,0.08);
  color: #8fd8ff;
  border-color: rgba(143,216,255,0.25);
}
.servicio-card {
  background: rgba(16,30,49,0.92);
  border-radius: var(--radio-card);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(4,10,20,0.18);
  transition: transform var(--transicion), box-shadow var(--transicion), border-color var(--transicion);
  height: 100%;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(4,10,20,0.28);
  border-color: rgba(0,180,216,0.45);
}
.servicio-icono {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.servicio-icono-azul    { background: rgba(21,101,192,0.1);  color: var(--color-primario); }
.servicio-icono-cian    { background: rgba(0,180,216,0.1);   color: var(--color-acento); }
.servicio-icono-violeta { background: rgba(111,66,193,0.1);  color: #6f42c1; }
.servicio-icono-verde   { background: rgba(40,167,69,0.1);   color: var(--color-exito); }
.servicio-icono-naranja { background: rgba(255,107,53,0.1);  color: var(--color-naranja); }
.servicio-icono-rojo    { background: rgba(220,53,69,0.1);   color: var(--color-error); }
.servicio-titulo { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; color: #fff; }
.servicio-desc   { color: rgba(255,255,255,0.72); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; }
.btn-servicio {
  color: #8fd8ff;
  font-weight: 600;
  font-size: 0.88rem;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transicion);
}
.btn-servicio:hover { border-bottom-color: #8fd8ff; }

/* ── TECNOLOGÍAS ──────────────────────────────────────────── */
.tecnologias-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.tech-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.tech-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: transform var(--transicion), box-shadow var(--transicion);
}
.tech-item:hover .tech-icon-wrapper { transform: translateY(-4px); box-shadow: var(--sombra-card); }
.tech-name { font-size: 0.7rem; font-weight: 700; }
.tech-label { font-size: 0.78rem; color: var(--color-texto-sec); font-weight: 500; }

/* ── TESTIMONIOS ──────────────────────────────────────────── */
.testimonio-card {
  background: #fff;
  border-radius: var(--radio-card);
  padding: 2.5rem;
  box-shadow: var(--sombra-card);
  border: 1px solid var(--color-borde);
}
.testimonio-texto {
  font-size: 1.1rem;
  color: var(--color-texto);
  line-height: 1.8;
  font-style: italic;
  position: relative;
}
.quote-icon-left  { color: var(--color-acento); opacity: 0.4; font-size: 2rem; vertical-align: middle; }
.quote-icon-right { color: var(--color-acento); opacity: 0.4; font-size: 2rem; vertical-align: middle; }
.testimonio-autor { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonio-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 3px solid var(--color-acento); }
.testimonio-avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primario);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonio-info strong { display: block; font-weight: 700; }
.testimonio-info span   { font-size: 0.85rem; color: var(--color-texto-sec); }

/* ── VENTAJAS ─────────────────────────────────────────────── */
.ventajas-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-fondo-dark) 0%, #1A2C4A 50%, #0D2137 100%);
}
.ventajas-section .section-title {
  color: #fff;
}
.ventajas-section .section-badge {
  background: rgba(255,255,255,0.08);
  color: #8fd8ff;
  border-color: rgba(143,216,255,0.25);
}
.ventaja-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.ventaja-item:last-child { border-bottom: none; }
.ventaja-item .bi { font-size: 1.25rem; flex-shrink: 0; }
.text-accent { color: var(--color-acento) !important; }

/* ── CTA BOX ──────────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, var(--color-primario), var(--color-fondo-dark));
  border-radius: 20px;
  color: #fff;
}
.cta-icon { font-size: 3rem; }
.cta-titulo { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; }
.cta-desc { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* ── CTA FINAL ────────────────────────────────────────────── */
.cta-final-section { background: linear-gradient(135deg, var(--color-primario), var(--color-acento-dark)); }
.cta-final-card { padding: 4rem 2rem; color: #fff; }
.cta-final-card h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cta-final-card .lead { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.devmarket-footer { background: var(--color-fondo-dark); color: rgba(255,255,255,0.7); }
.footer-shell {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.footer-brand .footer-logo-text {
  font-family: var(--fuente-titulo);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.footer-logo-image {
  height: 56px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}
.footer-slogan {
  color: rgba(255,255,255,0.76);
  line-height: 1.6;
}
.footer-heading {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.footer-links { margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.35rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transicion);
}
.footer-links a:hover { color: var(--color-acento); }
.footer-contact li { margin-bottom: 0.55rem; font-size: 0.88rem; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--color-acento); }
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: background var(--transicion), color var(--transicion);
}
.footer-social-link:hover { background: var(--color-acento); color: #fff; }
.footer-divider { border-color: rgba(255,255,255,0.1); }
.footer-subscribe-form .form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.85rem;
}
.footer-subscribe-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.footer-legal-text {
  color: rgba(255,255,255,0.86);
}
.footer-legal-text strong {
  color: #ffffff;
}
.footer-payment-text {
  color: rgba(233,240,246,0.92);
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer-shell {
    padding-top: 1.5rem;
    padding-bottom: 0.85rem;
  }
}

/* ── WHATSAPP FLOTANTE ────────────────────────────────────── */
.chat-float-stack {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 1000;
}
.chat-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.28);
  transition: transform var(--transicion), box-shadow var(--transicion), opacity var(--transicion);
}
.chat-float:hover {
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}
.telegram-float {
  background: #229ED9;
}
.telegram-float:hover {
  box-shadow: 0 10px 24px rgba(34,158,217,0.45);
}
.whatsapp-float {
  background: #25D366;
}
.whatsapp-float:hover {
  box-shadow: 0 10px 24px rgba(37,211,102,0.45);
}
@media (max-width: 768px) {
  .chat-float-stack {
    right: 1rem;
    bottom: 1rem;
    gap: 0.7rem;
  }
}

/* ── DETALLE PRODUCTO ─────────────────────────────────────── */
.breadcrumb-bar { background: var(--color-superficie); border-bottom: 1px solid var(--color-borde); }
.producto-galeria-main { position: relative; border-radius: var(--radio-card); overflow: hidden; background: var(--color-superficie); }
.producto-imagen-main { object-fit: cover; aspect-ratio: 4/3; }
.producto-imagen-placeholder { aspect-ratio: 4/3; background: var(--color-superficie); }
.producto-badges-overlay { position: absolute; top: 1rem; left: 1rem; display: flex; flex-wrap: wrap; gap: 6px; }
.badge-producto { font-size: 0.75rem; padding: 4px 10px; border-radius: 20px; font-weight: 600; }
.badge-nuevo    { background: var(--color-acento); color: #fff; }
.badge-destacado { background: var(--color-alerta); color: #000; }
.badge-oferta   { background: var(--color-error); color: #fff; }
.galeria-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transicion);
}
.galeria-thumb.active, .galeria-thumb:hover { border-color: var(--color-primario); }
.demo-box { background: rgba(0,180,216,0.05); border: 1px solid rgba(0,180,216,0.2); border-radius: var(--radio-card); overflow: hidden; }
.demo-box-header { background: rgba(0,180,216,0.1); color: var(--color-acento); font-weight: 600; padding: 0.75rem 1rem; font-size: 0.9rem; }
.demo-box-body { padding: 1rem; }
.demo-url { color: var(--color-primario); font-size: 0.88rem; font-weight: 500; }
.demo-credential { background: rgba(0,0,0,0.05); border-radius: 4px; padding: 2px 6px; font-size: 0.82rem; }
.producto-detalle-nombre { font-size: 1.75rem; font-weight: 800; line-height: 1.2; margin-bottom: 0.75rem; }
.producto-detalle-resumen { color: var(--color-texto-sec); font-size: 1rem; line-height: 1.7; }
.precio-principal { font-size: 2.25rem; font-weight: 800; color: var(--color-primario); font-family: var(--fuente-titulo); }
.caract-item { padding: 0.5rem 0.75rem; background: var(--color-superficie); border-radius: 8px; font-size: 0.85rem; }
.pago-resumen { border: 1px solid var(--color-borde); }
.pago-seguridad-info { background: rgba(40,167,69,0.05); border: 1px solid rgba(40,167,69,0.15); border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.82rem; color: var(--color-texto-sec); }
.nav-tabs-custom { border-bottom: 2px solid var(--color-borde); }
.nav-tabs-custom .nav-link { border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; color: var(--color-texto-sec); font-weight: 500; }
.nav-tabs-custom .nav-link.active { color: var(--color-primario); border-bottom-color: var(--color-primario); background: none; }
.tab-content-custom { background: var(--color-superficie); border-radius: 0 0 var(--radio-card) var(--radio-card); padding: 1.5rem; }
.btn-compartir {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-borde);
  color: var(--color-texto-sec);
  transition: background var(--transicion), color var(--transicion);
  cursor: pointer;
  background: #fff;
}
.btn-compartir:hover { background: var(--color-primario); color: #fff; border-color: var(--color-primario); }
.faq-item { border: 1px solid var(--color-borde) !important; border-radius: var(--radio-card) !important; margin-bottom: 0.75rem !important; overflow: hidden; }

.breadcrumb-bar-producto {
  background: linear-gradient(135deg, #0d1828 0%, #11243a 52%, #17355b 100%);
  border-bottom: 1px solid rgba(92, 155, 214, 0.16);
}
.breadcrumb-bar-producto .breadcrumb {
  padding: 0.35rem 0;
}
.breadcrumb-bar-producto .breadcrumb-item,
.breadcrumb-bar-producto .breadcrumb-item.active {
  color: rgba(225, 238, 251, 0.82);
}
.breadcrumb-bar-producto .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-bar-producto .breadcrumb-item a {
  color: #8ecaff;
}
.breadcrumb-bar-producto .breadcrumb-item a:hover {
  color: #ffffff;
}

.detalle-producto-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(24, 96, 170, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(10, 181, 212, 0.12), transparent 28%),
    linear-gradient(135deg, #101c2d 0%, #173153 48%, #122845 100%);
}
.detalle-producto-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.02), transparent 22%);
  pointer-events: none;
}
.detalle-producto-page > .container {
  position: relative;
  z-index: 1;
}
.detalle-panel {
  height: 100%;
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(104, 160, 217, 0.16);
  background: linear-gradient(180deg, rgba(19, 34, 54, 0.95) 0%, rgba(23, 41, 66, 0.96) 100%);
  box-shadow: 0 24px 60px rgba(7, 15, 26, 0.34);
}
.detalle-info-panel {
  padding: 2rem;
}
.detalle-producto-page .text-muted {
  color: rgba(214, 227, 241, 0.72) !important;
}
.detalle-producto-page .producto-galeria-main {
  border: 1px solid rgba(113, 171, 230, 0.16);
  background: linear-gradient(135deg, rgba(21, 46, 76, 0.96) 0%, rgba(20, 83, 128, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.detalle-producto-page .producto-imagen-placeholder {
  min-height: 510px;
  background: linear-gradient(135deg, rgba(18, 46, 80, 0.94) 0%, rgba(16, 109, 155, 0.88) 100%);
}
.detalle-producto-page .galeria-thumb {
  border-color: rgba(115, 167, 220, 0.18);
  background: rgba(15, 32, 54, 0.92);
}
.detalle-producto-page .galeria-thumb:hover,
.detalle-producto-page .galeria-thumb.active {
  border-color: rgba(10, 194, 224, 0.72);
  box-shadow: 0 10px 24px rgba(6, 15, 30, 0.3);
}
.detalle-producto-page .demo-box {
  border: 1px solid rgba(116, 173, 232, 0.16);
  background: rgba(14, 28, 46, 0.88);
  border-radius: 20px;
  overflow: hidden;
}
.detalle-producto-page .demo-box-header {
  background: rgba(21, 101, 192, 0.16);
  color: #eef6ff;
}
.detalle-producto-page .demo-box-body {
  color: #edf4fd;
}
.detalle-producto-page .demo-url {
  color: #65cbff;
}
.detalle-producto-page .demo-credential {
  color: #eef6ff;
  background: rgba(255, 255, 255, 0.08);
}
.badge-categoria-detalle {
  color: #8ecaff;
  background: rgba(76, 133, 204, 0.2);
  border: 1px solid rgba(111, 177, 247, 0.2);
  font-size: 0.92rem;
}
.detalle-producto-page .producto-detalle-nombre {
  color: #ffffff;
  font-size: clamp(2.3rem, 4.2vw, 3.45rem);
  line-height: 1.08;
}
.detalle-producto-page .producto-detalle-resumen {
  color: rgba(226, 236, 248, 0.88);
  font-size: 1.07rem;
}
.detalle-producto-page .precio-principal {
  color: #24b8ff;
}
.detalle-producto-page .precio-anterior,
.detalle-producto-page .moneda-tag {
  color: rgba(210, 221, 234, 0.75) !important;
}
.detalle-producto-page .caract-item {
  min-height: 56px;
  border: 1px solid rgba(98, 152, 207, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #eff7ff;
}
.detalle-producto-page .caract-item .small {
  color: #eff7ff;
}
.detalle-producto-page .btn-agregar-carrito {
  box-shadow: 0 18px 38px rgba(18, 86, 158, 0.28);
}
.detalle-producto-page .btn-comprar-ahora {
  box-shadow: 0 18px 38px rgba(246, 167, 0, 0.2);
}
.detalle-producto-page .compartir-seccion small,
.detalle-producto-page .tecnologias-producto small {
  color: rgba(214, 227, 241, 0.72) !important;
}
.detalle-producto-page .btn-compartir {
  border-color: rgba(99, 151, 206, 0.16);
  color: #d7e8f8;
  background: rgba(255, 255, 255, 0.04);
}
.detalle-producto-page .btn-compartir:hover {
  background: #1f71d7;
  border-color: #1f71d7;
}
.detalle-tabs-wrap {
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(104, 160, 217, 0.16);
  background: linear-gradient(180deg, rgba(18, 32, 52, 0.96) 0%, rgba(18, 38, 62, 0.96) 100%);
  box-shadow: 0 24px 60px rgba(7, 15, 26, 0.28);
}
.detalle-producto-page .nav-tabs-custom {
  gap: 0.5rem;
  border-bottom-color: rgba(93, 149, 206, 0.18);
}
.detalle-producto-page .nav-tabs-custom .nav-link {
  border-radius: 999px;
  color: rgba(215, 229, 244, 0.78);
  padding: 0.8rem 1.15rem;
}
.detalle-producto-page .nav-tabs-custom .nav-link:hover,
.detalle-producto-page .nav-tabs-custom .nav-link.active {
  color: #fff;
  background: rgba(30, 107, 195, 0.18);
  border-bottom-color: #26b8ff;
}
.detalle-producto-page .tab-content-custom {
  margin-top: 1.5rem;
  padding: 1.85rem;
  border: 1px solid rgba(98, 152, 207, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}
.detalle-producto-page .descripcion-contenido,
.detalle-producto-page .descripcion-contenido p,
.detalle-producto-page .descripcion-contenido li,
.detalle-producto-page .descripcion-contenido div,
.detalle-producto-page .descripcion-contenido span {
  color: #edf5ff !important;
}
.detalle-producto-page .descripcion-contenido h1,
.detalle-producto-page .descripcion-contenido h2,
.detalle-producto-page .descripcion-contenido h3,
.detalle-producto-page .descripcion-contenido h4,
.detalle-producto-page .descripcion-contenido h5,
.detalle-producto-page .descripcion-contenido h6 {
  color: #ffffff !important;
}
.detalle-producto-page .modulo-item,
.detalle-producto-page .beneficio-item span {
  color: #edf5ff;
}
.detalle-producto-page .faq-item {
  border-color: rgba(98, 152, 207, 0.14) !important;
  background: rgba(255, 255, 255, 0.03);
}
.detalle-producto-page .faq-item .accordion-button {
  color: #f3f8ff;
  background: rgba(255, 255, 255, 0.02);
}
.detalle-producto-page .faq-item .accordion-button:not(.collapsed) {
  color: #ffffff;
  background: rgba(30, 107, 195, 0.16);
  box-shadow: none;
}
.detalle-producto-page .faq-item .accordion-body {
  color: rgba(226, 236, 248, 0.86);
}
.detalle-relacionados-wrap {
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(104, 160, 217, 0.16);
  background: linear-gradient(180deg, rgba(18, 32, 52, 0.94) 0%, rgba(18, 38, 62, 0.94) 100%);
  box-shadow: 0 24px 60px rgba(7, 15, 26, 0.28);
}
.detalle-producto-page .section-title-sm {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .detalle-info-panel {
    padding: 1.5rem;
  }
  .detalle-producto-page .producto-imagen-placeholder {
    min-height: 380px;
  }
}

/* ── DASHBOARD CLIENTE ────────────────────────────────────── */
.cliente-hero { background: linear-gradient(135deg, var(--color-fondo-dark), #1A2C4A); color: #fff; }
.cliente-avatar-lg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primario);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cliente-stat-card { background: #fff; border-radius: var(--radio-card); padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem; box-shadow: var(--sombra-card); border: 1px solid var(--color-borde); }
.cliente-stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.cliente-stat-valor { font-size: 1.6rem; font-weight: 800; font-family: var(--fuente-titulo); color: var(--color-texto); }
.cliente-stat-label { font-size: 0.8rem; color: var(--color-texto-sec); font-weight: 500; }
.quick-nav-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1rem; }
.quick-nav-item {
  background: #fff;
  border: 1px solid var(--color-borde);
  border-radius: var(--radio-card);
  padding: 1.25rem;
  text-align: center;
  color: var(--color-texto);
  transition: all var(--transicion);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.quick-nav-item:hover { background: var(--color-primario); color: #fff; border-color: var(--color-primario); transform: translateY(-2px); }
.quick-nav-item .bi { font-size: 1.5rem; }
.quick-nav-item span { font-size: 0.8rem; font-weight: 600; }
.cliente-card { background: #fff; border-radius: var(--radio-card); box-shadow: var(--sombra-card); border: 1px solid var(--color-borde); overflow: hidden; }
.cliente-card-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--color-borde); background: var(--color-superficie); }
.cliente-card-body { padding: 1.5rem; }
.descarga-item:last-child { border-bottom: none !important; padding-bottom: 0 !important; margin-bottom: 0 !important; }

/* Sobre mi */
.about-page {
  background: var(--color-fondo-dark);
  min-height: 80vh;
}
.about-hero-card {
  background: linear-gradient(135deg, rgba(7, 24, 42, 0.96), rgba(17, 45, 76, 0.94));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(6, 16, 30, 0.28);
  padding: 3rem;
  color: #fff;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(0,180,216,0.14);
  border: 1px solid rgba(0,180,216,0.32);
  color: #7de7ff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-title {
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 1rem 0 1.25rem;
  color: #fff;
}
.about-lead {
  color: rgba(255,255,255,0.78);
  font-size: 1.06rem;
  line-height: 1.85;
  max-width: 42rem;
}
.about-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.about-profile-card,
.about-feature-card,
.about-content-card {
  background: #1a2a3a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: var(--sombra-card);
  color: #fff;
}
.about-profile-card {
  height: 100%;
  padding: 2rem;
  background: #1a2a3a;
}
.about-profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 16px 36px rgba(217,119,6,0.26);
}
.about-profile-label {
  color: rgba(255,255,255,0.52);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.about-profile-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.about-profile-role {
  color: rgba(255,255,255,0.68);
  margin-bottom: 1.25rem;
}
.about-profile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-profile-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  color: rgba(255,255,255,0.9);
}
.about-profile-list i {
  color: var(--color-primario);
  margin-top: 0.15rem;
}
.about-contact-stack {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.about-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(13,27,42,0.8);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
}
.about-contact-link:hover {
  background: rgba(21,101,192,0.18);
  color: #fff;
}
.about-feature-card,
.about-content-card {
  padding: 2rem;
  height: 100%;
}
.about-feature-card h3,
.about-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.about-feature-card p,
.about-content-text,
.about-step p,
.about-note p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
  line-height: 1.8;
}
.about-feature-card h3,
.about-step h3,
.about-content-card .section-title,
.about-profile-name {
  color: #fff;
}
.about-content-card .section-badge {
  background: rgba(21,101,192,0.16);
  color: #7dc7ff;
  border-color: rgba(21,101,192,0.28);
}
.about-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21,101,192,0.1);
  color: var(--color-primario);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.about-steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
.about-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(13,27,42,0.55);
  border: 1px solid rgba(255,255,255,0.06);
}
.about-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, #bf6a2a, #df9240);
  color: #fff;
  font-weight: 800;
  font-family: var(--fuente-titulo);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 10px 22px rgba(20, 24, 29, 0.18);
  border: 1px solid rgba(255,255,255,0.08);
}
.about-step:nth-child(2) .about-step-number {
  background: linear-gradient(135deg, #5d8b36, #7fb84d);
}
.about-step:nth-child(3) .about-step-number {
  background: linear-gradient(135deg, #b45a3c, #d78462);
}
.about-tech-card {
  background: #1a2a3a;
}
.about-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.about-tech-item {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 132px;
  padding: 1.15rem;
  border-radius: 18px;
  background: rgba(13,27,42,0.55);
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 700;
}
.about-tech-item i {
  font-size: 1.35rem;
  color: var(--color-primario);
}
.about-note {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.18);
}
.about-note i {
  color: var(--color-acento-dark);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero-section { min-height: 80vh; padding: 4rem 0; }
  .hero-title { font-size: 2.25rem; }
  .stats-bar .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .about-hero-card { padding: 2rem; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 1.85rem; }
  .cta-final-card { padding: 2.5rem 1.25rem; }
  .quick-nav-grid { grid-template-columns: repeat(3, 1fr); }
  .about-title { font-size: 2rem; }
  .about-tech-grid { grid-template-columns: 1fr; }
  .about-step { grid-template-columns: 1fr; }
  .about-step-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
}
