/* ============================================
   INFOSISTEMAS - ESTILOS GLOBALES
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #1a56db;
  --primary-dark: #1340a8;
  --primary-light: #e8effc;
  --accent: #00b4d8;
  --dark: #0c1a32;
  --dark-2: #1a2f50;
  --text: #334155;
  --text-light: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --success: #10b981;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --transition: all 0.3s ease;
  --nav-height: 70px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-height); background: rgba(15,23,42,0.96); backdrop-filter: blur(12px); z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.06); transition: var(--transition); }
.navbar.scrolled { background: rgba(15,23,42,0.99); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link { color: rgba(255,255,255,0.8); padding: 8px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; transition: var(--transition); cursor: pointer; display: flex; align-items: center; gap: 5px; }
.nav-link:hover, .nav-link.active { color: white; background: rgba(255,255,255,0.1); }
.nav-item.dropdown { position: relative; }
.nav-item.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--dark); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 8px; min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition); box-shadow: var(--shadow-lg); }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); padding: 10px 14px; border-radius: 8px; font-size: 0.875rem; transition: var(--transition); }
.dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: white; }
.dropdown-menu a i { width: 16px; color: var(--accent); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }

/* SECTIONS */
.page-section { display: none; min-height: 100vh; padding-top: var(--nav-height); }
.page-section.active { display: block; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #1e3a6e 100%); padding: 80px 0 70px; position: relative; overflow: hidden; min-height: calc(100vh - var(--nav-height)); display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(26,86,219,0.35) 0%, transparent 65%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px; background: linear-gradient(to bottom, transparent, var(--bg)); pointer-events: none; }
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 60px; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,180,216,0.12); border: 1px solid rgba(0,180,216,0.35); color: var(--accent); padding: 8px 16px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
.hero-content h1 { font-size: 3rem; font-weight: 800; color: white; line-height: 1.15; margin-bottom: 20px; }
.hero-content h1 span { background: linear-gradient(135deg, #60a5fa, var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-content p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; line-height: 1.75; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { display: flex; align-items: center; justify-content: center; }
.hero-graphic { position: relative; width: 340px; height: 320px; display: flex; align-items: center; justify-content: center; }
.hero-graphic > i { font-size: 8rem; color: rgba(26,86,219,0.25); position: relative; z-index: 1; filter: drop-shadow(0 0 40px rgba(26,86,219,0.4)); }
.floating-card { position: absolute; background: rgba(255,255,255,0.09); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.14); color: white; padding: 10px 18px; border-radius: 12px; font-size: 0.82rem; font-weight: 600; display: flex; align-items: center; gap: 8px; animation: float 3s ease-in-out infinite; white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.floating-card i { color: var(--accent); font-size: 0.9rem; }
.card-1 { top: 10px; right: 0; animation-delay: 0s; }
.card-2 { bottom: 30px; left: 0; animation-delay: 1.2s; }
.card-3 { bottom: 110px; right: 10px; animation-delay: 2.1s; }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }

/* BOTONES */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 10px; font-size: 0.9rem; font-weight: 600; cursor: pointer; border: 2px solid transparent; transition: var(--transition); text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--primary), #2563eb); color: white; border-color: transparent; }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,86,219,0.35); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-full { width: 100%; justify-content: center; }

/* FEATURES */
.features-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 40px auto; box-shadow: var(--shadow); }
.feature-item { background: white; padding: 28px 24px; text-align: center; cursor: pointer; transition: var(--transition); }
.feature-item:hover { background: var(--primary-light); }
.feature-item i { font-size: 2rem; color: var(--primary); margin-bottom: 10px; display: block; }
.feature-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.feature-item p { font-size: 0.8rem; color: var(--text-light); }

/* STATS */
.stats-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 60px; }
.stat-card { text-align: center; background: white; padding: 32px 20px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--text-light); margin-top: 6px; }

/* SECTION HEROES */
.section-hero { padding: 60px 0; text-align: center; }
.quienes-hero { background: linear-gradient(135deg, var(--dark) 0%, #1a3060 100%); }
.servicios-hero { background: linear-gradient(135deg, #1a3060 0%, var(--dark-2) 100%); }
.clientes-hero { background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%); }
.contacto-hero { background: linear-gradient(135deg, var(--dark) 0%, #1e3460 100%); }
.section-title-light { font-size: 2.5rem; font-weight: 800; color: white; margin-bottom: 8px; }
.section-sub-light { color: rgba(255,255,255,0.65); font-size: 1rem; }
.section-heading { font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.section-heading.center, .section-desc.center, .tag-label.center-tag { text-align: center; }
.section-desc { color: var(--text-light); font-size: 1rem; max-width: 600px; margin: 0 auto 40px; }
.tag-label { display: inline-block; background: var(--primary-light); color: var(--primary); padding: 4px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 12px; }

/* QUIÉNES SOMOS */
.quienes-content { padding: 60px 0; }
.quienes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.quienes-image-block { position: relative; }
.quienes-img { width: 100%; border-radius: 16px; object-fit: cover; height: 420px; box-shadow: var(--shadow-lg); }
.experience-badge { position: absolute; bottom: -20px; right: -20px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 20px 24px; border-radius: 14px; text-align: center; box-shadow: 0 8px 24px rgba(26,86,219,0.4); }
.exp-num { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: 0.75rem; opacity: 0.9; line-height: 1.4; }
.quienes-text-block h2 { font-size: 2rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.quienes-text-block p { color: var(--text-light); margin-bottom: 16px; font-size: 1rem; }
.valores-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 28px; }
.valor-item { display: flex; align-items: flex-start; gap: 12px; }
.valor-item > i { font-size: 1.2rem; color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.valor-item strong { display: block; font-size: 0.9rem; color: var(--dark); margin-bottom: 2px; }
.valor-item p { font-size: 0.8rem; color: var(--text-light); margin: 0; }
.mision-vision { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mv-card { background: white; padding: 32px 28px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); text-align: center; transition: var(--transition); }
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.mv-icon { width: 60px; height: 60px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; color: var(--primary); }
.mv-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.mv-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* SERVICIOS */
.service-nav-buttons { display: flex; gap: 12px; padding: 40px 24px 0; flex-wrap: wrap; }
.svc-btn { display: flex; align-items: center; gap: 8px; padding: 12px 22px; background: white; border: 2px solid var(--border); border-radius: 10px; font-size: 0.9rem; font-weight: 600; color: var(--text); cursor: pointer; transition: var(--transition); }
.svc-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.svc-btn.active { background: var(--primary); border-color: var(--primary); color: white; box-shadow: 0 4px 14px rgba(26,86,219,0.3); }
.svc-btn i { font-size: 1rem; }
.service-panel { display: none; padding: 40px 0 60px; }
.service-panel.active { display: block; }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 50px; }
.service-detail-image { position: relative; border-radius: 16px; overflow: hidden; }
.service-detail-image img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; display: block; }
.service-detail-badge { position: absolute; bottom: 16px; left: 16px; background: rgba(15,23,42,0.85); color: white; padding: 8px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; backdrop-filter: blur(8px); display: flex; align-items: center; gap: 8px; }
.service-detail-badge i { color: var(--accent); }
.service-detail-text h2 { font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
.service-detail-text p { color: var(--text-light); margin-bottom: 20px; font-size: 1rem; line-height: 1.7; }
.service-features { margin-bottom: 28px; }
.service-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text); }
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: var(--success); flex-shrink: 0; }
.highlight-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.highlight-card { background: white; padding: 28px 22px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); text-align: center; }
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.highlight-card > i { font-size: 2rem; color: var(--primary); margin-bottom: 12px; display: block; }
.highlight-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.highlight-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* CLIENTES */
.clients-slider-wrapper { position: relative; overflow: hidden; padding: 20px 0 40px; }
.clients-slider { display: flex; transition: transform 0.4s ease; gap: 20px; padding: 10px 24px; }
.client-logo-item { flex: 0 0 180px; }
.client-logo-placeholder { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: var(--transition); cursor: pointer; box-shadow: var(--shadow); }
.client-logo-placeholder:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(26,86,219,0.12); transform: translateY(-4px); }
.client-logo-placeholder i { font-size: 2.2rem; color: var(--primary); margin-bottom: 10px; display: block; }
.client-logo-placeholder span { font-size: 0.82rem; font-weight: 600; color: var(--text-light); }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: white; border: 1px solid var(--border); border-radius: 50%; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow); font-size: 0.9rem; color: var(--text); transition: var(--transition); z-index: 10; }
.slider-arrow:hover { background: var(--primary); color: white; border-color: var(--primary); }
.slider-arrow.left { left: 8px; }
.slider-arrow.right { right: 8px; }
.testimonials-section { padding: 20px 24px 60px; }
.testimonials-slider-wrapper { position: relative; overflow: hidden; padding: 10px 0 50px; margin-top: 20px; }
.testimonials-slider { display: flex; transition: transform 0.4s ease; gap: 24px; }
.testimonial-card { flex: 0 0 calc(50% - 12px); background: white; padding: 32px 28px; border-radius: 16px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.testimonial-stars { margin-bottom: 14px; color: #1a56db; font-size: 1rem; }
.testimonial-card > p { color: var(--text); font-size: 0.95rem; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }
.slider-dots { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--transition); border: none; }
.dot.active { background: var(--primary); width: 20px; border-radius: 4px; }

/* CONTACTO */
.contacto-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; padding: 60px 24px; align-items: start; }
.contacto-info h3, .contacto-form-wrapper h3 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.contacto-info > p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.9rem; color: var(--dark); margin-bottom: 2px; }
.contact-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; margin: 0; }
.contacto-form-wrapper { background: white; padding: 36px; border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.form-group { margin-bottom: 18px; }
.form-group label { display: flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-group label i { color: var(--primary); font-size: 0.8rem; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 0.9rem; font-family: inherit; color: var(--dark); background: var(--bg); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(26,86,219,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-brand p { font-size: 0.88rem; margin: 14px 0 20px; line-height: 1.6; color: rgba(255,255,255,0.55); }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: var(--transition); font-size: 0.95rem; }
.social-links a:hover { background: var(--primary); color: white; }
.footer-col h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 12px; line-height: 1.5; }
.footer-contact li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; width: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 24px; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ══════════════════════════════════════════════
   HELP DESK PAGE
══════════════════════════════════════════════ */

/* HERO */
.hd-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #112340 50%, #162d52 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.hd-hero-bg-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,86,219,0.22) 0%, transparent 70%);
  top: -150px; right: -150px;
  pointer-events: none;
}
.hd-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}
.hd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.3);
  color: var(--accent);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hd-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: wa-blink 1.6s ease-in-out infinite;
}
.hd-hero-content h1 {
  font-size: 2.7rem;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hd-highlight {
  background: linear-gradient(135deg, #60a5fa, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hd-hero-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 480px;
}
.hd-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hd-btn-lg { padding: 14px 28px; font-size: 0.95rem; }
.hd-trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.hd-trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 500; }
.hd-trust-item i { color: var(--success); font-size: 0.85rem; }

/* Pantalla de tickets */
.hd-hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hd-screen {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.hd-screen-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hd-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.hd-dot.r { background: #ff5f57; }
.hd-dot.y { background: #febc2e; }
.hd-dot.g { background: #28c840; }
.hd-screen-title { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.5); margin-left: 6px; }
.hd-ticket {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 11px 14px;
  margin-bottom: 8px;
}
.hd-ticket-id { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.35); flex-shrink: 0; }
.hd-ticket-desc { font-size: 0.8rem; color: rgba(255,255,255,0.75); flex: 1; line-height: 1.3; }
.hd-ticket-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.hd-ticket-badge.open     { background: rgba(239,68,68,0.15);  color: #f87171; }
.hd-ticket-badge.progress { background: rgba(251,191,36,0.15); color: #60a5fa; }
.hd-ticket-badge.done     { background: rgba(16,185,129,0.15); color: #34d399; }
.hd-screen-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.hd-bar-track { flex: 1; height: 5px; background: rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
.hd-bar-fill  { height: 100%; width: 82%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 10px; }
.hd-screen-bar strong { color: var(--accent); font-size: 0.8rem; }

/* Tarjetas flotantes del hero */
.hd-float-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: float 4s ease-in-out infinite;
}
.hd-float-stat i { font-size: 1.4rem; color: var(--accent); }
.hd-float-stat div { display: flex; flex-direction: column; }
.hd-float-stat strong { font-size: 1rem; font-weight: 800; color: white; line-height: 1; }
.hd-float-stat span   { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.hd-float-stat.s1 { top: -20px; right: -20px; animation-delay: 0s; }
.hd-float-stat.s2 { bottom: 80px; left: -30px; animation-delay: 1.5s; }
.st-fs-1 { top: -22px; left: -40px; animation-delay: 0s; }
.st-fs-2 { bottom: -22px; right: -40px; animation-delay: 1.5s; }
.hd-hero-visual:has(.st-diag-panel) { padding: 30px 50px; }
.hd-float-stat.s3 { bottom: -44px; right: 20px; animation-delay: 0.8s; }
.hd-hero-visual { padding-bottom: 24px; }

/* Métricas strip */
.hd-metrics-strip,
.hd-metrics {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 28px 0;
}
.hd-metrics-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.hd-metric,
.hd-metric-item { text-align: center; }
.hd-metric-num { display: block; font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hd-metric-label,
.hd-metric-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px; display: block; }
.hd-metric-sep { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* SECCIONES GENÉRICAS */
.hd-section { padding: 80px 0; }
.hd-section-alt { background: var(--bg); }
.hd-section-header { text-align: center; margin-bottom: 50px; }

/* ¿QUÉ INCLUYE? */
.hd-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hd-include-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.hd-include-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.hd-include-icon {
  width: 56px; height: 56px;
  background: var(--primary-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: var(--transition);
}
.hd-include-card:hover .hd-include-icon { background: var(--primary); color: white; }
.hd-include-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.hd-include-card p  { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* SLA */
.hd-sla-section {
  background: linear-gradient(135deg, var(--dark) 0%, #112846 100%);
  padding: 80px 0;
}
.hd-sla-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hd-sla-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.hd-sla-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.hd-sla-featured {
  background: rgba(26,86,219,0.2);
  border-color: rgba(26,86,219,0.5);
  transform: scale(1.03);
}
.hd-sla-featured:hover { transform: scale(1.03) translateY(-4px); }
.hd-sla-urgent {
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.25);
}
.hd-sla-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.hd-sla-level { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.hd-sla-time {
  font-size: 3rem; font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 16px;
}
.hd-sla-featured .hd-sla-time { color: #60a5fa; }
.hd-sla-urgent  .hd-sla-time  { color: #f87171; }
.hd-sla-card > p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 20px; }
.hd-sla-list { list-style: none; }
.hd-sla-list li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: rgba(255,255,255,0.65); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hd-sla-list li:last-child { border: none; }
.hd-sla-list li i { color: var(--success); font-size: 0.75rem; flex-shrink: 0; }

/* PASOS */
.hd-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.hd-step {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 0 16px;
}
.hd-step-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.hd-step-icon {
  width: 70px; height: 70px;
  background: var(--primary-light);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(26,86,219,0.15);
}
.hd-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.hd-step p  { font-size: 0.83rem; color: var(--text-light); line-height: 1.65; }
.hd-step-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 56px;
  color: var(--border);
  font-size: 1.2rem;
}

/* CANALES */
.hd-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hd-channel-card {
  border-radius: 16px;
  padding: 30px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.hd-channel-card:hover { transform: translateY(-6px); }
.hd-channel-wa     { background: #f0fdf4; border-color: #bbf7d0; }
.hd-channel-phone  { background: var(--primary-light); border-color: #bfdbfe; }
.hd-channel-mail   { background: #fef3c7; border-color: #fde68a; }
.hd-channel-portal { background: #f0f9ff; border-color: #bae6fd; }
.hd-channel-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.hd-channel-wa    .hd-channel-icon { background: #25d366; color: white; }
.hd-channel-phone .hd-channel-icon { background: var(--primary); color: white; }
.hd-channel-mail  .hd-channel-icon { background: #1a56db; color: white; }
.hd-channel-portal .hd-channel-icon { background: #0ea5e9; color: white; }
.hd-channel-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); }
.hd-channel-card p  { font-size: 0.83rem; color: var(--text-light); line-height: 1.6; flex: 1; }
.hd-channel-cta { font-size: 0.82rem; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.hd-channel-wa    .hd-channel-cta { color: #16a34a; }
.hd-channel-phone .hd-channel-cta { color: var(--primary); }
.hd-channel-mail  .hd-channel-cta { color: #0e3fa8; }
.hd-channel-portal .hd-channel-cta { color: #0284c7; }

/* POR QUÉ */
.hd-why-section { padding: 80px 0; background: white; }
.hd-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.hd-why-text .tag-label { margin-bottom: 14px; }
.hd-why-text h2 { font-size: 2rem; font-weight: 700; color: var(--dark); line-height: 1.25; margin-bottom: 14px; }
.hd-why-text > p { color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }
.hd-why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.hd-why-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--text); line-height: 1.5; }
.hd-why-list li i { color: var(--primary); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.hd-why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hd-why-stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.hd-why-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.hd-stat-icon { font-size: 1.6rem; color: var(--primary); margin-bottom: 10px; }
.hd-stat-num  { font-size: 2.4rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hd-stat-label { font-size: 0.8rem; color: var(--text-light); margin-top: 6px; line-height: 1.4; }

/* CTA FINAL */
.hd-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a56db 60%, #1e3a8a 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hd-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hd-cta-inner { position: relative; z-index: 1; }
.hd-cta-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 28px;
}
.hd-cta-section h2 { font-size: 2.2rem; font-weight: 800; color: white; margin-bottom: 14px; line-height: 1.2; }
.hd-cta-section > .hd-cta-inner > p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 36px; }
.hd-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.btn-wa, .hd-btn-wa { background: #25d366; color: white; border-color: transparent; }
.hd-btn-wa:hover { background: #1da851; color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.hd-cta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); display: flex; align-items: center; justify-content: center; gap: 6px; }

/* RESPONSIVE HELP DESK */
@media (max-width: 1024px) {
  .hd-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hd-float-stat.s1, .hd-float-stat.s2, .hd-float-stat.s3 { display: none; }
  .hd-includes-grid { grid-template-columns: repeat(2, 1fr); }
  .hd-sla-grid { grid-template-columns: 1fr; gap: 16px; }
  .hd-sla-featured { transform: none; }
  .hd-sla-featured:hover { transform: translateY(-4px); }
  .hd-channels-grid { grid-template-columns: repeat(2, 1fr); }
  .hd-why-inner { grid-template-columns: 1fr; gap: 40px; }
  .hd-metric-sep { display: none; }
}
@media (max-width: 768px) {
  .hd-hero-content h1 { font-size: 2rem; }
  .hd-steps { flex-direction: column; align-items: center; gap: 24px; }
  .hd-step-arrow { transform: rotate(90deg); padding: 0; }
  .hd-step { max-width: 100%; }
  .hd-includes-grid { grid-template-columns: 1fr; }
  .hd-channels-grid { grid-template-columns: 1fr 1fr; }
  .hd-why-stats { grid-template-columns: 1fr 1fr; }
  .hd-cta-section h2 { font-size: 1.7rem; }
  .hd-metrics-grid { gap: 24px; }
}
@media (max-width: 480px) {
  .hd-channels-grid { grid-template-columns: 1fr; }
  .hd-cta-buttons { flex-direction: column; }
}

/* ══════════════════════════════════════════════
   SOPORTE TÉCNICO
══════════════════════════════════════════════ */
.st-hero { background: linear-gradient(135deg, #0a1930 0%, #0f2452 45%, #162440 100%); position: relative; overflow: hidden; padding-bottom: 0; }
.st-hero-glow { position: absolute; width: 650px; height: 650px; background: radial-gradient(circle, rgba(26,86,219,0.18) 0%, transparent 70%); top: -100px; right: -100px; pointer-events: none; }
.st-highlight { background: linear-gradient(135deg, #60a5fa, #1a56db); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Panel de diagnóstico */
.st-diag-panel { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 20px; width: 100%; max-width: 380px; backdrop-filter: blur(10px); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.st-diag-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.st-diag-label { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: rgba(255,255,255,0.55); width: 60px; flex-shrink: 0; }
.st-diag-label i { width: 12px; color: rgba(255,255,255,0.4); }
.st-diag-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
.st-diag-fill { height: 100%; border-radius: 10px; }
.st-diag-val { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.65); width: 50px; text-align: right; }
.st-diag-alert { color: #f87171; display: flex; align-items: center; gap: 4px; }
.st-checklist { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; gap: 7px; }
.st-check { font-size: 0.78rem; display: flex; align-items: center; gap: 8px; }
.st-check.done { color: rgba(255,255,255,0.6); }
.st-check.done i { color: #34d399; }
.st-check.warn { color: #fbbf24; }
.st-check.warn i { color: #f59e0b; }
.st-diag-footer { margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.07); }
.st-status-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(26,86,219,0.15); border: 1px solid rgba(26,86,219,0.3); color: #60a5fa; padding: 6px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }

/* Planes de mantenimiento */
.st-plans-section { background: linear-gradient(135deg, #0a1930 0%, #0f2452 50%, #162440 100%); padding: 80px 0; }

/* ══════════════════════════════════════════════
   DESARROLLO WEB
══════════════════════════════════════════════ */
.dw-hero { background: linear-gradient(135deg, #150a2e 0%, #1e1048 50%, #1a2850 100%); position: relative; overflow: hidden; padding-bottom: 0; }
.dw-hero-glow { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%); top: -150px; right: -100px; pointer-events: none; }
.dw-highlight { background: linear-gradient(135deg, #a78bfa, #818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dw-btn-primary { background: linear-gradient(135deg, #7c3aed, #6d28d9); color: white; border-color: transparent; }
.dw-btn-primary:hover { background: linear-gradient(135deg, #6d28d9, #5b21b6); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,0.35); }

/* Browser mockup */
.dw-browser { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; overflow: hidden; width: 100%; max-width: 400px; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.dw-browser-top { background: rgba(255,255,255,0.06); padding: 10px 14px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.dw-browser-dots { display: flex; gap: 5px; }
.dw-browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.dw-browser-dots span:nth-child(1) { background: #ff5f57; }
.dw-browser-dots span:nth-child(2) { background: #febc2e; }
.dw-browser-dots span:nth-child(3) { background: #28c840; }
.dw-browser-bar { flex: 1; background: rgba(255,255,255,0.07); border-radius: 6px; padding: 5px 12px; font-size: 0.72rem; color: rgba(255,255,255,0.4); display: flex; align-items: center; gap: 6px; }
.dw-browser-body { padding: 16px; }
.dw-mock-hero-bar { height: 6px; background: linear-gradient(90deg, #7c3aed, #8b5cf6, #a78bfa); border-radius: 3px; margin-bottom: 12px; }
.dw-mock-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dw-mock-logo { width: 60px; height: 10px; background: rgba(255,255,255,0.15); border-radius: 4px; }
.dw-mock-links { display: flex; gap: 8px; }
.dw-mock-links span { width: 30px; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; }
.dw-mock-content { background: rgba(139,92,246,0.08); border-radius: 8px; padding: 16px; margin-bottom: 12px; }
.dw-mock-headline { height: 14px; background: rgba(255,255,255,0.2); border-radius: 4px; margin-bottom: 8px; width: 80%; }
.dw-mock-sub { height: 8px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-bottom: 12px; width: 60%; }
.dw-mock-btn { height: 28px; width: 100px; background: linear-gradient(90deg,#7c3aed,#8b5cf6); border-radius: 6px; }
.dw-seo-panel { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.dw-seo-row { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.dw-seo-row i { width: 14px; flex-shrink: 0; }
.dw-seo-row span { width: 60px; }
.dw-seo-bar { flex: 1; height: 5px; background: rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
.dw-seo-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.dw-seo-row strong { font-size: 0.78rem; color: white; width: 24px; text-align: right; }

/* Qué incluye cada web */
.dw-includes-section { background: linear-gradient(135deg, #150a2e 0%, #1e1048 100%); padding: 80px 0; }
.dw-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dw-feat { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 14px 16px; font-size: 0.84rem; color: rgba(255,255,255,0.7); transition: var(--transition); }
.dw-feat:hover { background: rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.3); color: white; }
.dw-feat i { color: #a78bfa; font-size: 1rem; flex-shrink: 0; width: 18px; }

/* ══════════════════════════════════════════════
   LICENCIAS
══════════════════════════════════════════════ */
.lic-hero { background: linear-gradient(135deg, #033828 0%, #085c44 40%, #163a58 100%); position: relative; overflow: hidden; padding-bottom: 0; }
.lic-hero-glow { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 70%); top: -150px; right: -100px; pointer-events: none; }
.lic-highlight { background: linear-gradient(135deg, #34d399, #10b981); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lic-btn-primary { background: linear-gradient(135deg, #059669, #047857); color: white; border-color: transparent; }
.lic-btn-primary:hover { background: linear-gradient(135deg, #047857, #065f46); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(5,150,105,0.35); }

/* Tarjetas de software */
.lic-cards-grid { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 380px; }
.lic-sw-card { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 12px; padding: 12px 16px; transition: var(--transition); }
.lic-sw-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.lic-sw-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: white; flex-shrink: 0; }
.lic-sw-info { flex: 1; min-width: 0; }
.lic-sw-info strong { display: block; font-size: 0.82rem; color: white; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lic-sw-info span { font-size: 0.7rem; color: rgba(255,255,255,0.45); }
.lic-sw-badge { font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.lic-sw-badge.verified { background: rgba(16,185,129,0.15); color: #34d399; }
.lic-sw-badge.ask { background: rgba(37,211,102,0.15); color: #25d366; cursor: pointer; }
.lic-card-more { border-style: dashed; }

/* Riesgos piratería */
.lic-risk-section { background: linear-gradient(135deg, #220000 0%, #3a0000 50%, #162440 100%); padding: 80px 0; }
.lic-risks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.lic-risk-card { background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.15); border-radius: 16px; padding: 28px 22px; text-align: center; transition: var(--transition); }
.lic-risk-card:hover { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.25); transform: translateY(-4px); }
.lic-risk-icon { width: 56px; height: 56px; background: rgba(239,68,68,0.12); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #f87171; margin: 0 auto 16px; }
.lic-risk-card h3 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 10px; }
.lic-risk-card p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin: 0; }
.lic-risk-cta { text-align: center; }
.lic-risk-cta p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 20px; }

/* RESPONSIVE páginas de servicios */
@media (max-width: 1024px) {
  .dw-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lic-risks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .st-diag-panel, .dw-browser, .lic-cards-grid { max-width: 100%; }
  .dw-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lic-risks-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .dw-features-grid { grid-template-columns: 1fr; }
  .lic-risks-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   QUIÉNES SOMOS
══════════════════════════════════════════════ */
.qs-hero-text { display: flex; flex-direction: column; }
.qs-counter { display: inline; }

/* ══════════════════════════════════════════════
   CLIENTES
══════════════════════════════════════════════ */
.cl-hero-text { display: flex; flex-direction: column; }
.cl-counter { display: inline; }

.qs-hero { background: linear-gradient(135deg, #061628 0%, #0e2c50 50%, #162d52 100%); position: relative; overflow: hidden; padding: 120px 0 80px; }
.qs-hero-glow { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 70%); top: -150px; right: -100px; pointer-events: none; }
.qs-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.qs-highlight { background: linear-gradient(135deg, #67e8f9, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Panel hero */
.qs-company-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 22px; backdrop-filter: blur(10px); box-shadow: 0 24px 60px rgba(0,0,0,0.35); position: relative; z-index: 1; }
.qs-company-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.qs-company-logo { width: 44px; height: 44px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.qs-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 18px; }
.qs-stat-mini { background: rgba(6,182,212,0.08); border: 1px solid rgba(6,182,212,0.15); border-radius: 10px; padding: 12px 8px; text-align: center; }
.qs-stat-num { display: block; font-size: 1.2rem; font-weight: 800; color: #67e8f9; line-height: 1; }
.qs-stat-lbl { display: block; font-size: 0.65rem; color: rgba(255,255,255,0.68); margin-top: 4px; }
.qs-services-list { display: flex; flex-direction: column; gap: 8px; }
.qs-svc-item { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.82); padding: 8px 12px; background: rgba(255,255,255,0.07); border-radius: 8px; }
.qs-float-badge { position: absolute; top: -18px; left: -18px; background: rgba(15,23,42,0.9); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; backdrop-filter: blur(10px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.qs-hero-panel { position: relative; }

/* Historia */
.qs-history-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.qs-img-wrapper { position: relative; border-radius: 18px; overflow: hidden; }
.qs-main-img { width: 100%; border-radius: 18px; object-fit: cover; max-height: 420px; }
.qs-exp-badge { position: absolute; bottom: 20px; right: 20px; background: linear-gradient(135deg,#0891b2,#06b6d4); border-radius: 14px; padding: 16px 20px; text-align: center; box-shadow: 0 8px 24px rgba(6,182,212,0.35); }
.qs-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.qs-pillar { display: flex; align-items: flex-start; gap: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 14px; }
.qs-pillar i { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.qs-pillar strong { display: block; font-size: 0.82rem; color: white; margin-bottom: 2px; }
.qs-pillar span { font-size: 0.72rem; color: rgba(255,255,255,0.7); }

/* Timeline */
.qs-timeline { display: flex; flex-direction: column; gap: 0; }
.qs-tl-item { display: grid; grid-template-columns: 12px 60px 1fr; gap: 14px; align-items: start; padding-bottom: 20px; position: relative; }
.qs-tl-item:not(:last-child)::before { content: ''; position: absolute; left: 5px; top: 12px; bottom: 0; width: 2px; background: rgba(6,182,212,0.2); }
.qs-tl-dot { width: 12px; height: 12px; border-radius: 50%; background: #06b6d4; flex-shrink: 0; margin-top: 3px; box-shadow: 0 0 8px rgba(6,182,212,0.5); }
.qs-tl-year { font-size: 0.78rem; font-weight: 700; color: #67e8f9; white-space: nowrap; margin-top: 2px; }
.qs-tl-desc { font-size: 0.83rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* Misión/Visión/Valores */
.qs-mvv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.qs-mvv-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: 18px; padding: 32px 28px; transition: var(--transition); }
.qs-mvv-card:hover { background: rgba(6,182,212,0.06); border-color: rgba(6,182,212,0.2); transform: translateY(-4px); }
.qs-mvv-featured { background: rgba(6,182,212,0.08); border-color: rgba(6,182,212,0.25); }
.qs-mvv-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 20px; }
.qs-mvv-card h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 12px; }
.qs-mvv-card p { font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.75; }

/* Diferenciadores */
.qs-diff-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.qs-diff-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: 16px; padding: 28px 24px; transition: var(--transition); }
.qs-diff-card:hover { background: rgba(6,182,212,0.07); border-color: rgba(6,182,212,0.2); transform: translateY(-3px); }
.qs-diff-icon { width: 48px; height: 48px; background: rgba(6,182,212,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #06b6d4; margin-bottom: 16px; }
.qs-diff-card h3 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 10px; }
.qs-diff-card p { font-size: 0.83rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* ══════════════════════════════════════════════
   CLIENTES
══════════════════════════════════════════════ */
.cl-hero { background: linear-gradient(135deg, #061628 0%, #0d2244 50%, #162d52 100%); position: relative; overflow: hidden; padding: 120px 0 80px; }
.cl-hero-glow { position: absolute; width: 700px; height: 700px; background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%); top: -150px; right: -100px; pointer-events: none; }
.cl-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cl-highlight { background: linear-gradient(135deg, #93c5fd, #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Panel sectores */
.cl-sectors-panel { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 24px; backdrop-filter: blur(10px); box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
.cl-sectors-header { margin-bottom: 16px; }
.cl-sectors-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.cl-sector-chip { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 7px 14px; font-size: 0.78rem; color: rgba(255,255,255,0.7); transition: var(--transition); }
.cl-sector-chip:hover { background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.3); }
.cl-trust-bar { display: flex; align-items: center; gap: 0; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 18px; }
.cl-trust-item { flex: 1; text-align: center; }
.cl-trust-num { display: block; font-size: 1.4rem; font-weight: 800; color: #93c5fd; }
.cl-trust-lbl { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.68); margin-top: 3px; }
.cl-trust-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* Grilla de logos */
.cl-logos-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 16px; margin-top: 48px; }
/* Grilla estática de logos (legacy, reemplazada por marquee en clientes.html) */
.cl-logo-card { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); border-radius: 14px; padding: 18px 12px; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: var(--transition); cursor: default; }
.cl-logo-card:hover { background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.35); transform: translateY(-3px); }
.cl-logo-img { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; }
.cl-logo-img img { max-width: 100%; max-height: 100%; object-fit: contain; opacity: 0.95; transition: var(--transition); }
.cl-logo-card:hover .cl-logo-img img { opacity: 1; }
.cl-logo-name { font-size: 0.68rem; color: rgba(255,255,255,0.85); text-align: center; line-height: 1.3; }

/* ══════════════════════════════════════════════
   LOGO MARQUEE CAROUSEL (clientes)
══════════════════════════════════════════════ */
.cl-marquee-wrapper {
  overflow: hidden;
  padding: 16px 0 28px;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}
.cl-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: cl-marquee 36s linear infinite;
}
.cl-marquee-track:hover { animation-play-state: paused; }
.cl-logo-slide {
  flex: 0 0 160px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: var(--transition);
  cursor: default;
}
.cl-logo-slide:hover {
  box-shadow: 0 8px 28px rgba(26,86,219,0.16);
  transform: translateY(-4px);
  border-color: #bfdbfe;
}
.cl-logo-slide img {
  max-width: 110px;
  max-height: 64px;
  object-fit: contain;
}
.cl-logo-slide span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
  line-height: 1.3;
}
@keyframes cl-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .cl-marquee-track { animation: none; }
}

/* Industrias */
.cl-industries-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.cl-industry-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: 16px; padding: 28px 24px; transition: var(--transition); }
.cl-industry-card:hover { background: rgba(59,130,246,0.07); border-color: rgba(59,130,246,0.2); transform: translateY(-3px); }
.cl-industry-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; }
.cl-industry-card h3 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 10px; }
.cl-industry-card p { font-size: 0.83rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 14px; }
.cl-industry-tag { display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 6px; padding: 5px 10px; font-size: 0.7rem; color: rgba(255,255,255,0.72); }


/* RESPONSIVE qs + cl */
@media (max-width: 1024px) {
  .qs-hero-inner, .cl-hero-inner { grid-template-columns: 1fr; }
  .qs-hero-panel, .cl-sectors-panel { max-width: 480px; }
  .qs-history-grid { grid-template-columns: 1fr; }
  .qs-mvv-grid { grid-template-columns: 1fr; }
  .qs-diff-grid { grid-template-columns: repeat(2,1fr); }
  .cl-logos-grid { grid-template-columns: repeat(4,1fr); }
  .cl-industries-grid { grid-template-columns: repeat(2,1fr); }

}
@media (max-width: 768px) {
  .qs-stats-row { grid-template-columns: repeat(2,1fr); }
  .qs-pillars { grid-template-columns: 1fr; }
  .qs-diff-grid { grid-template-columns: 1fr; }
  .cl-logos-grid { grid-template-columns: repeat(3,1fr); }
  .cl-industries-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cl-logos-grid { grid-template-columns: repeat(2,1fr); }
}

/* CAPTCHA */
.captcha-box { background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px; padding: 18px 20px; margin-bottom: 18px; }
.captcha-header { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.captcha-header i { font-size: 0.85rem; }
.captcha-question { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.captcha-label { font-size: 0.9rem; color: var(--text-light); }
.captcha-num { font-size: 1.4rem; font-weight: 800; color: var(--dark); background: white; border: 2px solid var(--primary-light); border-radius: 8px; padding: 2px 14px; min-width: 44px; text-align: center; }
.captcha-op { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.captcha-refresh { background: none; border: 1.5px solid var(--border); border-radius: 8px; padding: 5px 10px; cursor: pointer; color: var(--text-light); font-size: 0.8rem; transition: var(--transition); margin-left: 4px; }
.captcha-refresh:hover { border-color: var(--primary); color: var(--primary); }
.captcha-input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 0.95rem; font-family: inherit; color: var(--dark); background: white; transition: var(--transition); outline: none; box-sizing: border-box; }
.captcha-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,86,219,0.08); }
.captcha-error { display: none; color: #e53e3e; font-size: 0.82rem; font-weight: 600; margin-top: 8px; margin-bottom: 0; gap: 5px; align-items: center; }
.captcha-error.visible { display: flex; }
.captcha-box.error .captcha-input { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,0.1); }

/* WHATSAPP FLOTANTE */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 6px 32px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.18);
  font-family: 'Inter', sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-entrance 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.2);
  color: white;
}

/* Anillos de pulso */
.wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  border: 3px solid rgba(37,211,102,0.7);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
.wa-ring-2 { animation-delay: 1.1s; }

/* Ícono */
.wa-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

/* Texto */
.wa-content {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.wa-status {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wa-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px #fff;
  animation: wa-blink 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.wa-text {
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Animaciones */
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.75; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes wa-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
@keyframes wa-entrance {
  from { opacity: 0; transform: translateY(30px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* Atención periódica: pequeño rebote */
.wa-attention {
  animation: wa-bounce 0.5s cubic-bezier(0.34,1.56,0.64,1) 2;
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Responsive: en móvil muestra solo el ícono */
@media (max-width: 480px) {
  .whatsapp-float { padding: 14px; border-radius: 50%; gap: 0; }
  .wa-content { display: none; }
  .wa-icon { font-size: 1.8rem; }
}

/* ══════════════════════════════════════════════
   BOTÓN WHATSAPP CTA (llamativo, verde)
══════════════════════════════════════════════ */
.btn-wa-cta {
  background: linear-gradient(135deg, #128c3e, #0f7a35);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(18,140,62,0.45);
}
.btn-wa-cta:hover {
  background: linear-gradient(135deg, #0e6e2c, #0b5e26);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(18,140,62,0.6);
}

/* Float badge en quienes somos — mover a esquina inferior-derecha, fuera de la tarjeta */
.qs-float-badge { top: auto !important; left: auto !important; bottom: -36px; right: -36px; }
.qs-hero-panel { padding: 0 40px 40px 0; }

/* Carousel más grande */
.cl-logo-slide { flex: 0 0 230px; padding: 26px 20px 18px; }
.cl-logo-slide img { max-width: 160px; max-height: 92px; }
.cl-logo-slide span { font-size: 0.82rem; }

/* ══════════════════════════════════════════════
   INICIO PAGE (ix-*)
══════════════════════════════════════════════ */
.ix-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #1e3a6e 100%);
  padding: calc(var(--nav-height) + 70px) 0 80px;
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
}
.ix-hero-glow {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(26,86,219,0.3) 0%, transparent 65%);
  top: -200px; right: -200px; pointer-events: none;
}
.ix-hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  align-items: center; gap: 60px; position: relative; z-index: 1;
}
.ix-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,0.12); border: 1px solid rgba(0,180,216,0.35);
  color: var(--accent); padding: 8px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 24px;
}
.ix-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent); animation: wa-blink 1.6s ease-in-out infinite; flex-shrink: 0;
}
.ix-hero-h1 { font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 800; color: white; line-height: 1.1; margin-bottom: 20px; }
.ix-hero-sub { color: rgba(255,255,255,0.82); font-size: 1.05rem; line-height: 1.75; margin-bottom: 28px; max-width: 520px; }
.ix-trust-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.ix-chip {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.82); padding: 7px 14px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500;
}
.ix-chip i { color: #34d399; font-size: 0.8rem; }
.ix-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Dashboard visual */
.ix-hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.ix-dashboard {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; overflow: hidden; width: 100%; max-width: 400px;
  backdrop-filter: blur(12px); box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.ix-dash-top {
  background: rgba(255,255,255,0.06); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ix-dash-dots { display: flex; gap: 5px; }
.ix-dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.ix-dash-dots span:nth-child(1) { background: #ff5f57; }
.ix-dash-dots span:nth-child(2) { background: #febc2e; }
.ix-dash-dots span:nth-child(3) { background: #28c840; }
.ix-dash-title { font-size: 0.75rem; color: rgba(255,255,255,0.45); font-weight: 500; }
.ix-dash-body { padding: 16px; }
.ix-dash-status { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.ix-status-item { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; }
.ix-status-ok { background: rgba(16,185,129,0.12); color: #34d399; }
.ix-status-warn { background: rgba(26,86,219,0.12); color: #60a5fa; }
.ix-ticket {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 10px 12px; margin-bottom: 7px;
}
.ix-t-id { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.3); flex-shrink: 0; width: 36px; }
.ix-t-desc { font-size: 0.78rem; color: rgba(255,255,255,0.78); flex: 1; line-height: 1.3; }
.ix-t-badge { font-size: 0.66rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }
.ix-done { background: rgba(16,185,129,0.15); color: #34d399; }
.ix-prog { background: rgba(251,191,36,0.15); color: #60a5fa; }
.ix-open { background: rgba(239,68,68,0.15); color: #f87171; }
.ix-dash-bar {
  display: flex; align-items: center; gap: 10px; margin-top: 12px;
  padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.73rem; color: rgba(255,255,255,0.45);
}
.ix-bar-track { flex: 1; height: 5px; background: rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; }
.ix-bar-fill { height: 100%; width: 98%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 10px; }
.ix-dash-bar strong { color: var(--accent); font-size: 0.78rem; }
.ix-float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(15,23,42,0.92); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 10px 16px; backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); animation: float 4s ease-in-out infinite;
}
.ix-float-card i { font-size: 1.3rem; color: var(--accent); }
.ix-float-card div { display: flex; flex-direction: column; }
.ix-float-card strong { font-size: 1rem; font-weight: 800; color: white; line-height: 1; }
.ix-float-card span { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.ix-fc-1 { top: -36px; right: -56px; animation-delay: 0s; }
.ix-fc-2 { bottom: -40px; left: -20px; animation-delay: 1.4s; }
.ix-fc-3 { top: 44%; right: -56px; animation-delay: 0.7s; }
.ix-hero-visual { padding: 40px 56px; }

/* SERVICES */
.ix-services { padding: 90px 0; background: var(--bg); }
.ix-section-header { text-align: center; margin-bottom: 52px; }
.ix-section-h2 { font-size: clamp(1.7rem,3.5vw,2.4rem); font-weight: 800; color: var(--dark); margin: 12px 0 14px; line-height: 1.2; }
.ix-services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.ix-svc-card {
  background: white; border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 26px; display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; transition: var(--transition); box-shadow: var(--shadow);
}
.ix-svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.ix-svc-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: white; margin-bottom: 6px; }
.ix-svc-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.ix-svc-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; flex: 1; }
.ix-svc-link { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 700; color: var(--primary); margin-top: 4px; transition: var(--transition); }
.ix-svc-card:hover .ix-svc-link { gap: 11px; }

/* WHY US */
.ix-why { padding: 90px 0; background: white; }
.ix-why-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: start; }
.ix-why-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.ix-why-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--text); line-height: 1.55; }
.ix-why-list li i { color: #25d366; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.ix-why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ix-why-stat-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px 20px; text-align: center; box-shadow: var(--shadow); transition: var(--transition);
}
.ix-why-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.ix-wsc-num { font-size: 2.4rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.ix-wsc-label { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* CLIENTS IN INICIO */
.ix-clients { padding: 80px 0 60px; background: var(--bg); border-top: 1px solid var(--border); }
.ix-clients-header { text-align: center; margin-bottom: 40px; }

/* CTA FINAL */
.ix-cta {
  background: linear-gradient(135deg, #1340a8 0%, #1a56db 60%, #1e3a8a 100%);
  padding: 90px 0; text-align: center; position: relative; overflow: hidden;
}
.ix-cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.ix-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 0 24px; }
.ix-cta-icon {
  width: 80px; height: 80px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: white; margin: 0 auto 28px;
}
.ix-cta h2 { font-size: clamp(1.7rem,4vw,2.4rem); font-weight: 800; color: white; margin-bottom: 14px; line-height: 1.2; }
.ix-cta p:not(.ix-cta-note) { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 36px; }
.ix-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.ix-cta-wa { font-size: 1rem; padding: 16px 32px; }
.ix-cta-note { font-size: 0.8rem; color: rgba(255,255,255,0.45); display: flex; align-items: center; justify-content: center; gap: 6px; }


/* Responsive ix-* */
@media (max-width: 1024px) {
  .ix-hero-inner { grid-template-columns: 1fr; }
  .ix-fc-1, .ix-fc-2, .ix-fc-3 { display: none; }
  .ix-services-grid { grid-template-columns: repeat(2,1fr); }
  .ix-why-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .ix-services-grid { grid-template-columns: 1fr; }
  .ix-why-stats { grid-template-columns: repeat(2,1fr); }
  .ix-hero-h1 { font-size: 2.2rem; }
  .cl-logo-slide { flex: 0 0 160px; }
  .cl-logo-slide img { max-width: 110px; max-height: 64px; }
}
@media (max-width: 480px) {
  .ix-hero-btns { flex-direction: column; }
  .ix-why-stats { grid-template-columns: 1fr; }
  .ix-cta-btns { flex-direction: column; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-image { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.4rem; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-section { grid-template-columns: repeat(2, 1fr); }
  .highlight-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu { position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--dark); flex-direction: column; align-items: stretch; padding: 16px; gap: 4px; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: var(--transition); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { padding: 12px 14px; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,0.05); border-radius: 8px; margin-top: 4px; }
  .hero { padding: 50px 0 40px; }
  .hero-content h1 { font-size: 2rem; }
  .quienes-grid, .service-detail { grid-template-columns: 1fr; gap: 30px; }
  .mision-vision { grid-template-columns: 1fr; }
  .valores-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; }
  .contacto-grid { grid-template-columns: 1fr; gap: 30px; }
  .contacto-form-wrapper { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-nav-buttons { flex-wrap: wrap; }
  .svc-btn { flex: 1; justify-content: center; min-width: 140px; }
}
@media (max-width: 480px) {
  .features-strip { grid-template-columns: 1fr; }
  .stats-section { grid-template-columns: repeat(2, 1fr); }
  .highlight-cards { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ══════════════════════════════════════════════
   TEMA CLARO — overrides de superficies oscuras
   (navbar, heroes, footer y paneles quedan claros
   pero mantienen color e impacto de marca)
══════════════════════════════════════════════ */

/* NAVBAR / MENÚ */
.navbar, .navbar.scrolled { background: rgba(255,255,255,0.97); border-bottom: 1px solid var(--border); box-shadow: 0 2px 16px rgba(15,23,42,0.06); }
.nav-link { color: var(--text); }
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }
.hamburger span { background: var(--dark); }
.dropdown-menu { background: white; border: 1px solid var(--border); }
.dropdown-menu a { color: var(--text); }
.dropdown-menu a:hover { background: var(--primary-light); color: var(--primary); }
@media (max-width: 768px) {
  .nav-menu { background: white; box-shadow: var(--shadow-lg); border-bottom: 1px solid var(--border); }
  .dropdown-menu { background: var(--bg); }
}

/* HERO PRINCIPAL / GENÉRICOS */
.hero, .ix-hero { background: linear-gradient(135deg, #eaf1ff 0%, #dbe9fc 55%, #eef6ff 100%); }
.hero::before, .ix-hero-glow { background: radial-gradient(ellipse at 70% 50%, rgba(26,86,219,0.12) 0%, transparent 65%); }
.hero-content h1, .ix-hero-h1 { color: var(--dark); }
.hero-content p, .ix-hero-sub { color: var(--text); }
.btn-outline { color: var(--dark); border-color: var(--border); }
.btn-outline:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.hero-graphic > i { color: rgba(26,86,219,0.18); filter: drop-shadow(0 0 30px rgba(26,86,219,0.2)); }
.floating-card, .ix-float-card { background: white; border: 1px solid var(--border); color: var(--dark); box-shadow: var(--shadow-lg); }
.floating-card i, .ix-float-card i { color: var(--primary); }
.ix-float-card strong { color: var(--dark); }
.ix-float-card span { color: var(--text-light); }
.ix-chip { background: white; border: 1px solid var(--border); color: var(--text); box-shadow: var(--shadow); }
.ix-dashboard { background: white; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.ix-hero-badge { color: #0e7490; }
.ix-dash-top { background: var(--bg); border-bottom: 1px solid var(--border); }
.ix-dash-title { color: var(--text-light); }
.ix-ticket { background: var(--bg); border: 1px solid var(--border); }
.ix-t-id { color: var(--text-light); }
.ix-t-desc { color: var(--text); }
.ix-dash-bar { border-top: 1px solid var(--border); color: var(--text-light); }
.ix-bar-track { background: var(--border); }

.quienes-hero, .servicios-hero, .clientes-hero, .contacto-hero { background: linear-gradient(135deg, #eaf1ff 0%, #dbe9fc 100%); }
.section-title-light { color: var(--dark); }
.section-sub-light { color: var(--text-light); }

/* FOOTER */
.footer { background: var(--bg); color: var(--text); border-top: 1px solid var(--border); }
.footer-brand p { color: var(--text-light); }
.social-links a { background: var(--primary-light); color: var(--primary); }
.social-links a:hover { background: var(--primary); color: white; }
.footer-col h4 { color: var(--dark); }
.footer-col ul li a { color: var(--text-light); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact li { color: var(--text-light); }
.footer-contact li i { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); color: var(--text-light); }

/* HELP DESK / SOPORTE / DESARROLLO / LICENCIAS — encabezado compartido */
.hd-badge { background: rgba(0,180,216,0.12); border-color: rgba(0,180,216,0.35); color: #0e7490; }
.hd-hero-content h1 { color: var(--dark); }
.hd-hero-content p { color: var(--text); }
.hd-trust-item { color: var(--text-light); }
.hd-screen, .st-diag-panel, .dw-browser { background: white; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.hd-screen-top, .dw-browser-top { background: var(--bg); border-bottom: 1px solid var(--border); }
.hd-screen-title, .dw-browser-bar { color: var(--text-light); }
.hd-ticket { background: var(--bg); border: 1px solid var(--border); }
.hd-ticket-id { color: var(--text-light); }
.hd-ticket-desc { color: var(--text); }
.hd-screen-bar { border-top: 1px solid var(--border); color: var(--text-light); }
.hd-bar-track, .dw-seo-bar, .dw-mock-links span, .dw-mock-logo { background: var(--border); }
.hd-float-stat { background: white; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.hd-float-stat strong { color: var(--dark); }
.hd-float-stat span { color: var(--text-light); }
.hd-metrics-strip, .hd-metrics { background: rgba(255,255,255,0.7); border-top: 1px solid var(--border); }
.hd-metric-label, .hd-metric-lbl { color: var(--text-light); }
.hd-metric-sep { background: var(--border); }

/* HELP DESK */
.hd-hero { background: linear-gradient(135deg, #eaf6fb 0%, #dcedfb 55%, #eef8fc 100%); }
.hd-hero-bg-glow { background: radial-gradient(circle, rgba(26,86,219,0.1) 0%, transparent 70%); }
.hd-sla-section { background: linear-gradient(135deg, #eef6ff 0%, #e2eefd 100%); }
.hd-sla-card { background: white; border: 1px solid var(--border); box-shadow: var(--shadow); }
.hd-sla-card:hover { background: var(--primary-light); }
.hd-sla-featured { background: var(--primary-light); border-color: var(--primary); }
.hd-sla-urgent { background: #fef1f1; border-color: #fca5a5; }
.hd-sla-level { color: var(--text-light); }
.hd-sla-time { color: var(--dark); }
.hd-sla-featured .hd-sla-time { color: var(--primary); }
.hd-sla-urgent .hd-sla-time { color: #dc2626; }
.hd-sla-card > p { color: var(--text-light); }
.hd-sla-list li { color: var(--text); border-bottom: 1px solid var(--border); }

/* SOPORTE TÉCNICO */
.st-hero { background: linear-gradient(135deg, #eaf1ff 0%, #dbe9fc 55%, #eef6ff 100%); }
.st-hero-glow { background: radial-gradient(circle, rgba(26,86,219,0.12) 0%, transparent 70%); }
.st-diag-label { color: var(--text-light); }
.st-diag-label i { color: var(--text-light); }
.st-diag-bar { background: var(--border); }
.st-diag-val { color: var(--text); }
.st-checklist, .st-diag-footer { border-top: 1px solid var(--border); }
.st-check.done { color: var(--text-light); }
.st-plans-section { background: linear-gradient(135deg, #eaf1ff 0%, #dbe9fc 100%); }

/* DESARROLLO WEB */
.dw-hero { background: linear-gradient(135deg, #f3ecff 0%, #eadfff 55%, #eaf1ff 100%); }
.dw-hero-glow { background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%); }
.dw-mock-content { background: rgba(124,58,237,0.06); }
.dw-mock-headline { background: var(--border); }
.dw-mock-sub { background: var(--border); }
.dw-seo-row { color: var(--text-light); }
.dw-seo-row strong { color: var(--dark); }
.dw-seo-panel { border-top: 1px solid var(--border); }
.dw-feat { background: white; border: 1px solid var(--border); color: var(--text); box-shadow: var(--shadow); }
.dw-feat:hover { background: var(--primary-light); border-color: var(--primary-light); color: var(--dark); }
.dw-includes-section { background: linear-gradient(135deg, #f3ecff 0%, #eadfff 100%); }

/* LICENCIAS */
.lic-hero { background: linear-gradient(135deg, #e8fbf3 0%, #d7f5e6 55%, #eaf1ff 100%); }
.lic-hero-glow { background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%); }
.lic-sw-card { background: white; border: 1px solid var(--border); box-shadow: var(--shadow); }
.lic-sw-card:hover { background: var(--primary-light); border-color: var(--primary-light); }
.lic-sw-icon { color: white; }
.lic-sw-info strong { color: var(--dark); }
.lic-sw-info span { color: var(--text-light); }
.lic-risk-section { background: linear-gradient(135deg, #fef1f1 0%, #fde2e2 100%); }
.lic-risk-card { background: white; border: 1px solid #fecaca; box-shadow: var(--shadow); }
.lic-risk-card:hover { background: #fff5f5; border-color: #fca5a5; }
.lic-risk-card h3 { color: var(--dark); }
.lic-risk-card p { color: var(--text-light); }
.lic-risk-cta p { color: var(--text-light); }

/* QUIÉNES SOMOS */
.qs-hero { background: linear-gradient(135deg, #e3fbff 0%, #d6f3fb 55%, #eafcff 100%); }
.qs-hero-glow { background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%); }
.qs-company-card { background: white; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.qs-stat-lbl { color: var(--text-light); }
.qs-svc-item { background: var(--bg); border: 1px solid var(--border); color: var(--text); }
.qs-float-badge { background: white; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.qs-pillar { background: white; border: 1px solid var(--border); box-shadow: var(--shadow); }
.qs-pillar strong { color: var(--dark); }
.qs-pillar span { color: var(--text-light); }
.qs-tl-desc { color: var(--text); }
.qs-tl-year { color: #0e7490; }
.qs-mvv-card, .qs-diff-card { background: white; border: 1px solid var(--border); box-shadow: var(--shadow); }
.qs-mvv-card:hover, .qs-diff-card:hover { background: var(--primary-light); border-color: var(--primary-light); }
.qs-mvv-featured { background: #e3fbff; border-color: #67e8f9; }
.qs-mvv-card h3, .qs-diff-card h3 { color: var(--dark); }
.qs-mvv-card p, .qs-diff-card p { color: var(--text-light); }

/* CLIENTES */
.cl-hero { background: linear-gradient(135deg, #eaf1ff 0%, #dbe9fc 55%, #eef6ff 100%); }
.cl-hero-glow { background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%); }
.cl-sectors-panel { background: white; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.cl-sector-chip { background: var(--bg); border: 1px solid var(--border); color: var(--text); }
.cl-sector-chip:hover { background: var(--primary-light); border-color: var(--primary); }
.cl-trust-bar { border-top: 1px solid var(--border); }
.cl-trust-lbl { color: var(--text-light); }
.cl-trust-sep { background: var(--border); }
.cl-logo-card { background: white; border: 1px solid var(--border); box-shadow: var(--shadow); }
.cl-logo-card:hover { background: var(--primary-light); border-color: var(--primary-light); }
.cl-logo-name { color: var(--text-light); }
.cl-industry-card { background: white; border: 1px solid var(--border); box-shadow: var(--shadow); }
.cl-industry-card:hover { background: var(--primary-light); border-color: var(--primary-light); }
.cl-industry-card h3 { color: var(--dark); }
.cl-industry-card p { color: var(--text-light); }
.cl-industry-tag { background: var(--primary-light); border: 1px solid var(--border); color: var(--primary); }

/* Móvil: colapsa menú claro */
@media (max-width: 768px) {
  .nav-menu { background: white; }
}
