
    :root {
      --navy: #162f63;
      --blue: #2259d1;
      --gold: #e3ac28;
      --bg: #f6f8fc;
      --text: #1c2440;
      --muted: #667085;
      --white: #ffffff;
      --line: #e6eaf2;
      --shadow: 0 18px 48px rgba(20, 33, 73, 0.10);
      --radius: 22px;
      --radius-sm: 16px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #f8faff 0%, #f3f6fb 100%);
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(12px);
      background: rgba(255, 255, 255, 0.78);
      border-bottom: 1px solid rgba(22, 47, 99, 0.08);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      min-height: 78px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 700;
      color: var(--navy);
    }

    .brand img {
      width: 172px;
      height: auto;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 24px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 500;
    }

    .menu a:hover { color: var(--navy); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 700;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }

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

    .btn-primary {
      background: linear-gradient(135deg, var(--blue), var(--navy));
      color: var(--white);
      box-shadow: 0 10px 26px rgba(34, 89, 209, 0.20);
    }

    .btn-secondary {
      background: rgba(34, 89, 209, 0.08);
      color: var(--navy);
      border-color: rgba(34, 89, 209, 0.15);
    }

    .hero {
      padding: 74px 0 42px;
    }

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

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      background: rgba(227, 172, 40, 0.12);
      color: #9d6a00;
      border: 1px solid rgba(227, 172, 40, 0.20);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    h1 {
      margin: 0 0 18px;
      font-size: clamp(2.4rem, 5vw, 4.45rem);
      line-height: 1.02;
      letter-spacing: -0.03em;
      color: var(--navy);
    }

    .hero p {
      margin: 0;
      font-size: 18px;
      line-height: 1.75;
      color: var(--muted);
      max-width: 720px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .mini-card {
      background: rgba(255,255,255,0.78);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 18px;
      box-shadow: var(--shadow);
    }

    .mini-card strong {
      display: block;
      font-size: 1.35rem;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .mini-card span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .hero-card {
      background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
      border: 1px solid var(--line);
      border-radius: 30px;
      padding: 24px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: auto -70px -90px auto;
      width: 210px;
      height: 210px;
      background: radial-gradient(circle, rgba(34,89,209,.18), rgba(34,89,209,0));
      border-radius: 50%;
    }

    .panel {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 18px;
      margin-bottom: 16px;
    }

    .panel-label {
      font-size: 12px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .14em;
      margin-bottom: 10px;
      font-weight: 800;
    }

    .panel-title {
      font-size: 1.2rem;
      font-weight: 800;
      color: var(--navy);
      margin: 0 0 8px;
    }

    .panel p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
      font-size: 15px;
    }

    .stack-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 16px;
    }

    .chip {
      background: rgba(34, 89, 209, 0.08);
      color: var(--navy);
      border: 1px solid rgba(34, 89, 209, 0.12);
      border-radius: 999px;
      padding: 12px 14px;
      font-weight: 700;
      font-size: 14px;
      text-align: center;
    }

    section {
      padding: 38px 0;
    }

    .section-header {
      margin-bottom: 24px;
    }

    .section-header .tag {
      color: var(--blue);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: inline-block;
    }

    .section-header h2 {
      margin: 0 0 10px;
      font-size: clamp(1.9rem, 3vw, 2.9rem);
      color: var(--navy);
      letter-spacing: -0.03em;
    }

    .section-header p {
      margin: 0;
      color: var(--muted);
      max-width: 780px;
      line-height: 1.75;
    }

    .grid-3, .grid-4 {
      display: grid;
      gap: 18px;
    }

    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }

    .service-card, .feature-card, .process-card {
      background: rgba(255,255,255,0.82);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
      height: 100%;
    }

    .icon {
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(34,89,209,0.16), rgba(227,172,40,0.16));
      color: var(--navy);
      font-size: 24px;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .service-card h3, .feature-card h3, .process-card h3 {
      margin: 0 0 10px;
      color: var(--navy);
      font-size: 1.18rem;
    }

    .service-card p, .feature-card p, .process-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.72;
      font-size: 15px;
    }

    .solutions {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 22px;
      align-items: stretch;
    }

    .solutions-main,
    .solutions-side {
      background: rgba(255,255,255,0.82);
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .bullet-list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 14px;
    }

    .bullet-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--muted);
      line-height: 1.65;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--gold));
      margin-top: 7px;
      flex: 0 0 auto;
    }

    .solutions-side .stat {
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }

    .solutions-side .stat:last-child { border-bottom: none; }

    .solutions-side strong {
      display: block;
      color: var(--navy);
      font-size: 2rem;
      margin-bottom: 6px;
      letter-spacing: -0.03em;
    }

    .cta {
      padding: 28px;
      border-radius: 30px;
      background: linear-gradient(135deg, var(--navy), #1d4ab0);
      color: white;
      box-shadow: 0 22px 46px rgba(22,47,99,0.28);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 18px;
      align-items: center;
    }

    .cta h2 {
      margin: 0 0 12px;
      font-size: clamp(1.9rem, 3vw, 3rem);
      letter-spacing: -0.03em;
    }

    .cta p {
      margin: 0;
      color: rgba(255,255,255,0.88);
      line-height: 1.75;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 12px;
    }

    .btn-light {
      background: white;
      color: var(--navy);
    }

    .btn-outline-light {
      border-color: rgba(255,255,255,0.26);
      color: white;
      background: rgba(255,255,255,0.08);
    }

    .contact-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-top: 16px;
    }

    .contact-item {
      background: rgba(255,255,255,0.82);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 18px;
      box-shadow: var(--shadow);
    }

    .contact-item strong {
      display: block;
      font-size: 13px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 8px;
    }

    .contact-item span {
      color: var(--navy);
      font-weight: 700;
      font-size: 1rem;
    }

    footer {
      padding: 36px 0 48px;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 14px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
    }

    @media (max-width: 980px) {
      .menu { display: none; }
      .hero-grid,
      .solutions,
      .cta,
      .contact-box,
      .grid-3,
      .grid-4 {
        grid-template-columns: 1fr;
      }
      .cta-actions { justify-content: flex-start; }
      .trust-row { grid-template-columns: 1fr; }
      .stack-list { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      .hero { padding-top: 36px; }
      .brand img { width: 144px; }
      .stack-list { grid-template-columns: 1fr; }
      .btn { width: 100%; }
      .hero-actions { flex-direction: column; }
    }


    /* ==============================
       COREVA Soft - Premium Motion
       Animaciones livianas, modernas y compatibles con IIS
       ============================== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(26px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes floatSoft {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    @keyframes pulseGlow {
      0%, 100% { opacity: .45; transform: scale(1); }
      50% { opacity: .85; transform: scale(1.08); }
    }

    @keyframes shine {
      0% { transform: translateX(-120%) rotate(12deg); }
      100% { transform: translateX(220%) rotate(12deg); }
    }

    @keyframes slideLine {
      from { transform: scaleX(0); transform-origin: left; }
      to { transform: scaleX(1); transform-origin: left; }
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
      background:
        radial-gradient(circle at 15% 10%, rgba(34, 89, 209, .14), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(227, 172, 40, .14), transparent 24%),
        radial-gradient(circle at 45% 80%, rgba(34, 89, 209, .10), transparent 26%);
      animation: fadeIn 1.2s ease both;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      opacity: .34;
      background-image:
        linear-gradient(rgba(22,47,99,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22,47,99,.055) 1px, transparent 1px);
      background-size: 52px 52px;
      mask-image: linear-gradient(to bottom, black 0%, transparent 72%);
    }

    .brand img {
      transition: transform .25s ease, filter .25s ease;
    }

    .brand:hover img {
      transform: translateY(-1px) scale(1.015);
      filter: drop-shadow(0 10px 18px rgba(22,47,99,.12));
    }

    .menu a:not(.btn) {
      position: relative;
    }

    .menu a:not(.btn)::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--blue), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .22s ease;
    }

    .menu a:not(.btn):hover::after {
      transform: scaleX(1);
    }

    .eyebrow, .hero h1, .hero p, .hero-actions, .trust-row {
      animation: fadeUp .85s ease both;
    }

    .eyebrow { animation-delay: .05s; }
    .hero h1 { animation-delay: .13s; }
    .hero p { animation-delay: .21s; }
    .hero-actions { animation-delay: .29s; }
    .trust-row { animation-delay: .37s; }

    .hero-card {
      animation: fadeUp .95s ease .24s both, floatSoft 6s ease-in-out 1.5s infinite;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      top: -55%;
      left: -45%;
      width: 42%;
      height: 210%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
      animation: shine 6.5s ease-in-out 1.4s infinite;
      pointer-events: none;
    }

    .hero-card::before {
      animation: pulseGlow 5.2s ease-in-out infinite;
    }

    .panel, .mini-card, .service-card, .feature-card, .process-card, .solutions-main, .solutions-side, .contact-item {
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
      will-change: transform;
    }

    .panel:hover, .mini-card:hover, .service-card:hover, .feature-card:hover, .process-card:hover, .solutions-main:hover, .solutions-side:hover, .contact-item:hover {
      transform: translateY(-6px);
      border-color: rgba(34, 89, 209, .22);
      box-shadow: 0 24px 58px rgba(20, 33, 73, 0.14);
      background: rgba(255,255,255,.94);
    }

    .icon {
      position: relative;
      overflow: hidden;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .icon::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,.52), transparent);
      transform: translateX(-120%);
      transition: transform .55s ease;
    }

    .service-card:hover .icon,
    .feature-card:hover .icon,
    .process-card:hover .icon {
      transform: rotate(-2deg) scale(1.07);
      box-shadow: 0 12px 28px rgba(34,89,209,.16);
    }

    .service-card:hover .icon::after,
    .feature-card:hover .icon::after,
    .process-card:hover .icon::after {
      transform: translateX(120%);
    }

    .chip {
      transition: transform .22s ease, background .22s ease, border-color .22s ease;
    }

    .chip:hover {
      transform: translateY(-3px) scale(1.02);
      background: rgba(34, 89, 209, 0.12);
      border-color: rgba(34, 89, 209, 0.20);
    }

    .section-header {
      position: relative;
      animation: fadeUp .75s ease both;
      animation-timeline: view();
      animation-range: entry 8% cover 32%;
    }

    .section-header::after {
      content: "";
      display: block;
      width: 82px;
      height: 4px;
      margin-top: 18px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--blue), var(--gold));
      animation: slideLine .8s ease both;
      animation-timeline: view();
      animation-range: entry 10% cover 32%;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .service-card.reveal:nth-child(2), .feature-card.reveal:nth-child(2), .process-card.reveal:nth-child(2), .mini-card.reveal:nth-child(2) { transition-delay: .08s; }
    .service-card.reveal:nth-child(3), .feature-card.reveal:nth-child(3), .process-card.reveal:nth-child(3), .mini-card.reveal:nth-child(3) { transition-delay: .16s; }
    .service-card.reveal:nth-child(4), .feature-card.reveal:nth-child(4), .process-card.reveal:nth-child(4) { transition-delay: .24s; }
    .service-card.reveal:nth-child(5) { transition-delay: .32s; }
    .service-card.reveal:nth-child(6) { transition-delay: .40s; }

    .cta {
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      right: -90px;
      top: -110px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(227,172,40,.28), transparent 68%);
      animation: pulseGlow 5.8s ease-in-out infinite;
    }

    .cta > * { position: relative; z-index: 1; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
      }
    }
	
	.clients-section {
  padding: 40px 0;
  overflow: hidden;
}

.clients-header {
  text-align: center;
}

.clients-header p {
  margin-inline: auto;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f6f8fc, transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f6f8fc, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: scrollLogos 28s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.client-logo {
  width: 220px;
  height: 110px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.72;
  flex: 0 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.client-logo:hover {
  transform: translateY(-6px);
  opacity: 1;
  filter: grayscale(0%);
}

.client-logo img {
  max-width: 155px;
  max-height: 62px;
  object-fit: contain;
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .client-logo {
    width: 180px;
    height: 92px;
    padding: 18px;
  }

  .logo-track {
    animation-duration: 22s;
  }
}

 