/* GA Solutions — Página de Soporte */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #F54927;
  --orange-light: #ff6b4a;
  --orange-deep: #c73d1a;
  --orange-soft: rgba(245, 73, 39, 0.12);
  --purple: #352B7F;
  --purple-light: #4a3fa8;
  --purple-soft: rgba(53, 43, 127, 0.1);
  --desklink: #4f8cff;
  --desklink-soft: rgba(79, 140, 255, 0.12);
  --dark: #1a1a1c;
  --muted: #6b7280;
  --border: #ececf1;
  --surface: #ffffff;
  --surface-alt: #f8f9fc;
  --gradient-hero: linear-gradient(135deg, #F54927 0%, #e84225 42%, #352B7F 100%);
  --shadow: 0 4px 24px rgba(26, 26, 28, 0.06);
  --shadow-lg: 0 20px 60px rgba(53, 43, 127, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 72px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --whatsapp: #25d366;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--surface-alt);
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* Nav (mismo estilo que landing) */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
}
.brand img { width: 40px; height: 40px; }
.brand span {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .9rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px rgba(245, 73, 39, .28);
}
.btn-primary:hover { background: var(--orange-deep); }
.btn-desklink {
  background: var(--desklink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(79, 140, 255, .28);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .28);
}
.btn-ghost {
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--dark);
}
.btn-sm { padding: 9px 16px; font-size: .82rem; border-radius: 10px; }

/* Hero soporte */
.support-hero {
  padding: calc(var(--nav-h) + 40px) 0 56px;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(79,140,255,.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(245,73,39,.1), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--surface-alt) 100%);
}
.support-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--desklink-soft);
  color: var(--desklink);
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(79,140,255,.2);
}
.support-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 800;
  margin-bottom: 16px;
}
.support-hero h1 .hl {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.support-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 560px;
}
.support-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.support-hours {
  font-size: .88rem;
  color: var(--muted);
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  display: inline-block;
}
.support-preview {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.support-preview figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
}

section { padding: 72px 0; }
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.section-head p { color: var(--muted); }

/* Tarjeta de descarga QuickSupport */
.download-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0f1117 0%, #1a1d27 100%);
  color: #e8eaef;
  border: 1px solid #2e3345;
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
}
.download-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #242836;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid #2e3345;
}
.download-icon img { width: 48px; height: 48px; object-fit: contain; }
.download-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.download-info p {
  color: #8b92a8;
  font-size: .92rem;
  margin-bottom: 10px;
}
.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.download-meta span {
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(79,140,255,.15);
  color: #93c5fd;
  border: 1px solid rgba(79,140,255,.25);
}
.download-meta .ver {
  background: rgba(34,197,94,.12);
  color: #86efac;
  border-color: rgba(34,197,94,.25);
}

/* Pasos de descarga */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-num {
  padding: 14px 18px 0;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}
.step-card h3 {
  padding: 6px 18px 12px;
  font-size: 1rem;
  font-weight: 800;
}
.step-visual {
  background: #f4f4f7;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 16px;
}
.step-card p {
  padding: 14px 18px 18px;
  font-size: .88rem;
  color: var(--muted);
}
.step-card kbd {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 6px;
  background: #eef0f5;
  border: 1px solid #d8dbe5;
  font-family: Consolas, monospace;
  font-size: .8rem;
  color: var(--dark);
}

/* Mockups de navegador inline */
.browser-mock {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d1d5db;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.browser-mock .bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: #edf0f5;
  border-bottom: 1px solid #d8dbe5;
}
.browser-mock .bar span {
  width: 8px; height: 8px; border-radius: 50%;
}
.browser-mock .bar span:nth-child(1) { background: #ff5f57; }
.browser-mock .bar span:nth-child(2) { background: #febc2e; }
.browser-mock .bar span:nth-child(3) { background: #28c840; }
.browser-mock .url {
  flex: 1;
  margin-left: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #fff;
  font-size: 9px;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-mock .body { padding: 14px; }
.mock-dl-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--desklink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.mock-dl-btn img { width: 22px; height: 22px; border-radius: 4px; }
.mock-downloads-panel {
  padding: 10px;
  font-size: 10px;
}
.mock-downloads-panel .item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  margin-bottom: 6px;
}
.mock-downloads-panel .item img { width: 20px; height: 20px; }
.mock-downloads-panel .item strong { display: block; font-size: 10px; color: #111; }
.mock-downloads-panel .item small { color: #6b7280; font-size: 9px; }
.mock-folder {
  padding: 12px;
  font-size: 10px;
}
.mock-folder .file {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 2px solid var(--desklink);
  background: rgba(79,140,255,.08);
}
.mock-folder .file img { width: 28px; height: 28px; }
.highlight-ring {
  position: relative;
}
.highlight-ring::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px dashed var(--orange);
  border-radius: 12px;
  pointer-events: none;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

/* Sesión remota */
.session-steps {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.session-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}
.session-step .n {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-hero);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .9rem;
}
.session-step h4 { font-size: .95rem; font-weight: 800; margin-bottom: 4px; }
.session-step p { font-size: .88rem; color: var(--muted); }

/* FAQ */
.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--orange);
  font-weight: 800;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer {
  padding: 0 18px 16px;
  font-size: .9rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* CTA */
.cta-box {
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
}
.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-box p {
  opacity: .92;
  margin-bottom: 24px;
  max-width: 560px;
  margin-inline: auto;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta-buttons .btn-ghost {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

/* Footer */
.footer {
  padding: 40px 0 24px;
  background: #121218;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brand span { font-weight: 800; color: #fff; }
.footer h4 {
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer a { font-size: .88rem; }
.footer a:hover { color: var(--orange-light); }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  text-align: center;
}

.session-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}
.session-layout img {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 960px) {
  .support-hero-grid { grid-template-columns: 1fr; }
  .session-layout { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .download-card { grid-template-columns: 1fr; text-align: center; }
  .download-icon { margin: 0 auto; }
  .download-actions { display: flex; justify-content: center; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-actions .btn-ghost { display: none; }
}
