:root {
      --bg: #f5f5f7;
      --text: #0f0f12;
      --muted: #6c6c75;
      --purple: #6f2cff;
      --purple-soft: #b18aff;
      --card: #ffffff;
      --dark-card: #14141d;
      --border: rgba(111, 44, 255, 0.14);
      --shadow: 0 20px 50px rgba(111, 44, 255, 0.08);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    .bg-glow {
      position: fixed;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(111,44,255,.18) 0%, transparent 70%);
      top: -200px;
      right: -200px;
      z-index: -1;
      pointer-events: none;
      filter: blur(10px);
    }

    .container {
      width: min(1200px, 92%);
      margin: auto;
    }

    header {
      position: sticky;
      top: 0;
      backdrop-filter: blur(14px);
      background: rgba(245,245,247,.78);
      border-bottom: 1px solid rgba(0,0,0,.04);
      z-index: 999;
    }

    nav {
      position: relative;
      min-height: 82px;
      height: auto;
      padding: 8px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo-image img {
      height: 150px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      flex-shrink: 0;
      z-index: 1001;
    }

    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: .3s;
    }

    .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

    .nav-links {
      display: flex;
      gap: 34px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text);
      font-weight: 600;
      transition: .3s;
      position: relative;
    }
    .hero-actions a{
    text-decoration:none;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--purple);
      transition: .3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn {
      background: var(--purple);
      color: white;
      border: none;
      padding: 16px 28px;
      border-radius: 18px;
      font-weight: 700;
      cursor: pointer;
      transition: .35s;
      box-shadow: 0 10px 30px rgba(111,44,255,.25);
    }

    .btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 35px rgba(111,44,255,.35);
    }

    section {
      padding: 110px 0;
    }

    .hero {
      min-height: calc(100vh - 82px);
      display: flex;
      align-items: center;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 60px;
      align-items: center;
    }

    .eyebrow {
      color: var(--purple);
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 18px;
      display: inline-block;
    }

    .hero h1 {
      font-size: clamp(3rem, 7vw, 6rem);
      line-height: .92;
      font-weight: 900;
      margin-bottom: 28px;
      text-transform: uppercase;
    }

    .hero h1 span {
      color: var(--purple);
    }

    .hero p {
      text-align: justify;
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.8;
      max-width: 650px;
      margin-bottom: 36px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .outline-btn {
      border: 2px solid var(--purple);
      color: var(--purple);
      background: transparent;
      padding: 14px 24px;
      border-radius: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: .3s;
    }

    .outline-btn:hover {
      background: var(--purple);
      color: white;
    }

    .hero-visual {
      position: relative;
      height: 620px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .circle {
      position: absolute;
      width: 540px;
      height: 540px;
      border: 2px solid rgba(111,44,255,.35);
      border-radius: 50%;
      animation: pulse 5s infinite ease-in-out;
    }

    .dashboard {
      width: 100%;
      max-width: 520px;
      background: var(--dark-card);
      border-radius: 30px;
      padding: 28px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(0,0,0,.28);
      transform-style: preserve-3d;
      transition: transform .2s ease;
    }

    .dashboard::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(130deg, rgba(111,44,255,.18), transparent 40%);
    }

    .dashboard-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }

    .dashboard-title {
      color: white;
      font-size: 1.2rem;
      font-weight: 700;
    }

    .dots {
      display: flex;
      gap: 6px;
    }

    .dots span {
      width: 10px;
      height: 10px;
      background: rgba(255,255,255,.3);
      border-radius: 50%;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.05);
      border-radius: 20px;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    .card small {
      color: rgba(255,255,255,.65);
      display: block;
      margin-bottom: 14px;
    }

    .card strong {
      font-size: 2rem;
      color: white;
      display: block;
      margin-bottom: 8px;
    }

    .mini-chart {
      height: 70px;
      display: flex;
      align-items: end;
      gap: 10px;
    }

    .mini-chart span {
      flex: 1;
      background: linear-gradient(to top, var(--purple), var(--purple-soft));
      border-radius: 10px 10px 2px 2px;
      animation: grow 2s ease-in-out infinite alternate;
    }

    .mini-chart span:nth-child(1){height:35%;}
    .mini-chart span:nth-child(2){height:50%; animation-delay:.2s;}
    .mini-chart span:nth-child(3){height:65%; animation-delay:.4s;}
    .mini-chart span:nth-child(4){height:80%; animation-delay:.6s;}

    .line-chart {
      width: 100%;
      height: 80px;
      position: relative;
    }

    .line-chart svg {
      width: 100%;
      height: 100%;
    }

    .stats {
      margin-top: 80px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .stat-box {
      background: var(--card);
      padding: 28px;
      border-radius: 24px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: .35s;
    }

    .stat-box:hover {
      transform: translateY(-8px);
    }

    .stat-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: rgba(111,44,255,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .stat-box h3 {
      margin-bottom: 10px;
      font-size: 1.1rem;
    }

    .stat-box p {
      text-align: justify;
      color: var(--muted);
      line-height: 1.7;
      font-size: .95rem;
    }

    .services {
      position: relative;
    }

    .section-title {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-title h2 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      text-transform: uppercase;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .section-title h2 span {
      color: var(--purple);
    }

    .section-title p {
      text-align: justify;
      max-width: 760px;
      margin: auto;
      color: var(--muted);
      line-height: 1.8;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .service-card {
      background: white;
      border-radius: 28px;
      padding: 34px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: .35s;
      box-shadow: var(--shadow);
    }

    .service-card:hover {
      transform: translateY(-10px);
    }

    .service-card::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      background: rgba(111,44,255,.07);
      border-radius: 50%;
      right: -60px;
      top: -60px;
    }

    .service-icon {
      width: 70px;
      height: 70px;
      border-radius: 20px;
      background: rgba(111,44,255,.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      position: relative;
      z-index: 2;
    }

    .service-card h3 {
      font-size: 1.4rem;
      margin-bottom: 16px;
      position: relative;
      z-index: 2;
    }

    .service-card p {
      text-align: justify;
      color: var(--muted);
      line-height: 1.8;
      position: relative;
      z-index: 2;
    }

    .engineering-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 80px 0;
    }

    .engineering-content h2 {
      font-size: clamp(2.8rem, 5vw, 5rem);
      line-height: .95;
      font-weight: 900;
      margin-bottom: 28px;
      text-transform: uppercase;
    }

    .engineering-content h2 span {
      color: var(--purple);
    }

    .engineering-content p {
      text-align: justify;
      color: var(--muted);
      line-height: 1.9;
      font-size: 1.05rem;
      margin-bottom: 40px;
      max-width: 580px;
    }

    .engineering-list {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .engineering-item {
      display: flex;
      align-items: center;
      gap: 18px;
      font-weight: 600;
      font-size: 1.05rem;
    }

    .engineering-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: rgba(111,44,255,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(111,44,255,.12);
    }

    .engineering-visual {
      position: relative;
      min-height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 0;
    }

    .engineering-circle {
      position: absolute;
      width: clamp(240px, 40vw, 420px);
      height: clamp(240px, 40vw, 420px);
      background: rgba(111,44,255,.05);
      border-radius: 50%;
    }

    .laptop-wireframe {
      position: relative;
      z-index: 2;
      width: clamp(200px, 24vw, 320px);
      animation: float 4s ease-in-out infinite;
    }

    .screen {
      width: 100%;
      aspect-ratio: 16 / 10;
      border: 4px solid var(--purple);
      border-radius: 20px 20px 10px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.3);
      backdrop-filter: blur(4px);
    }

    .code-symbol {
      color: var(--purple);
      font-size: clamp(2.2rem, 4.5vw, 3.4rem);
      font-weight: 700;
    }

    .base {
      width: 115%;
      height: 18px;
      border: 4px solid var(--purple);
      border-top: none;
      border-radius: 0 0 30px 30px;
      margin-left: -7.5%;
    }

    .cta {
      text-align: center;
      background: linear-gradient(135deg, #121219, #1a1228);
      border-radius: 40px;
      padding: 90px 40px;
      position: relative;
      overflow: hidden;
    }

    .cta::before,
    .cta::after {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: rgba(111,44,255,.14);
      filter: blur(10px);
    }

    .cta::before {
      top: -100px;
      left: -80px;
    }

    .cta::after {
      bottom: -120px;
      right: -100px;
    }

    .cta h2 {
      color: white;
      font-size: clamp(2.6rem, 5vw, 5rem);
      text-transform: uppercase;
      line-height: 1;
      font-weight: 900;
      margin-bottom: 24px;
      position: relative;
      z-index: 2;
    }

    .cta h2 span  {
      color: var(--purple-soft);
    }
    .eyebrow_contact{
        color: var(--purple-soft);
    }

    .cta p {
      text-align: justify;
      color: rgba(255,255,255,.72);
      line-height: 1.8;
      max-width: 760px;
      margin: auto auto 40px;
      position: relative;
      z-index: 2;
    }

    footer {
      padding: 60px 0 40px;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      border-top: 1px solid rgba(0,0,0,.08);
      padding-top: 40px;
    }

    .footer-content p {
      color: var(--muted);
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all .8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes pulse {
      0%,100% { transform: scale(1); opacity: .7; }
      50% { transform: scale(1.03); opacity: 1; }
    }

    @keyframes grow {
      from { transform: scaleY(.8); }
      to { transform: scaleY(1); }
    }

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

    @media (max-width: 1080px) {
      .hero-grid,
      .engineering-section {
        grid-template-columns: 1fr;
      }

      .services-grid,
      .stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero {
        padding-top: 60px;
      }

      .hero-visual {
        height: auto;
        margin-top: 40px;
      }

      .engineering-visual {
        min-height: 300px;
        margin-top: 40px;
      }

      .circle {
        width: 100%;
        height: 100%;
      }

      .nav-toggle {
        display: flex;
      }

      .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 20px;
        background: rgba(245,245,247,.98);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(0,0,0,.06);
        box-shadow: 0 20px 40px rgba(0,0,0,.1);
        padding: 24px;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: .3s ease;
      }

      .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }
    }

    @media (max-width: 700px) {
      section {
        padding: 70px 0;
      }

      .dashboard-grid {
        grid-template-columns: 1fr;
      }

      .hero h1 {
        font-size: 2.7rem;
      }

      .dashboard {
        padding: 20px;
      }

      .cta {
        padding: 60px 24px;
      }

      .services-grid {
        grid-template-columns: 1fr;
      }

      .logo-image img {
        height: 110px;
      }

      .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
      }
    }

    @media (max-width: 480px) {
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .btn,
      .hero-actions .outline-btn {
        text-align: center;
        width: 100%;
      }

      .stats {
        grid-template-columns: 1fr;
      }

      .logo-image img {
        height: 88px;
      }

      .cta h2 {
        font-size: 2.2rem;
      }

      .cta {
        border-radius: 26px;
      }

      .dashboard-title {
        font-size: 1rem;
      }
    }
/* ─── SECCIÓN SUSTENTABLE (ECO) ─── */
.eco-section {
  width: min(1200px, 92%);
  margin: 0 auto;
  background: linear-gradient(135deg, #f3fdf6, #eefcf2);
  border: 1px solid rgba(22,163,74,.16);
  border-radius: 32px;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(22,163,74,.10);
}

.eco-container {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.eco-img {
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(22,163,74,.14);
}

.eco-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eco-card-titulo h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 22px;
}

.eco-text p {
      text-align: justify;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.eco-btn-link {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 18px;
  transition: .35s;
  box-shadow: 0 10px 30px rgba(22,163,74,.25);
}

.eco-btn-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(22,163,74,.35);
}

@media (max-width: 1080px) {
  .eco-section {
    padding: 44px;
  }

  .eco-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .eco-img {
    height: 300px;
  }
}

@media (max-width: 700px) {
  .eco-section {
    padding: 28px;
    border-radius: 24px;
  }

  .eco-img {
    height: 220px;
    border-radius: 18px;
  }

  .eco-text p {
    max-width: none;
  }

  .eco-btn-link {
    display: block;
    text-align: center;
  }
}

.nav-orbit-icon{
  width:54px;
  height:54px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.orbit-core{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#6f2cff;
  position:relative;
  box-shadow:0 0 18px rgba(111,44,255,.45);
}

.orbit-core::before{
  content:'';
  position:absolute;
  width:34px;
  height:34px;
  border:2px solid rgba(111,44,255,.55);
  border-radius:50%;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  animation:rotateOrbit 4s linear infinite;
}

.orbit-core::after{
  content:'';
  position:absolute;
  width:6px;
  height:6px;
  background:#6f2cff;
  border-radius:50%;
  top:-11px;
  left:50%;
  transform:translateX(-50%);
  box-shadow:0 0 10px rgba(111,44,255,.55);
}

@keyframes rotateOrbit{
  from{
    transform:translate(-50%,-50%) rotate(0deg);
  }
  to{
    transform:translate(-50%,-50%) rotate(360deg);
  }
}