    /* RESET BÁSICO */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #f8f8f8;
      color: #38374C;
    }
    
    /* ========================================
   NAVBAR
   ======================================== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      background-color: rgba(56, 55, 76, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      gap: 30px; /* Separación entre logo y menú */
    }

    .navbar > a {
      flex-shrink: 0; /* El logo no se encoge */
      display: block;
    }

    .navbar-logo {
      width: 120px;
      display: block;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 12px;
      margin: 0;
      padding: 0;
      position: relative;
      z-index: 10;
    }

    .nav-menu li {
      position: relative;
      z-index: 10;
    }

    .nav-menu a {
      color: white;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      padding: 10px 24px;
      border-radius: 25px;
      background-color: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      display: block;
      position: relative;
      z-index: 10;
    }

    .nav-menu a:hover {
      background-color: rgba(229, 133, 84, 0.9);
      border-color: #E58554;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(229, 133, 84, 0.3);
    }

    .nav-menu a.active {
      background-color: rgba(197, 41, 56, 0.9);
      border-color: #C52938;
    }

    /* ========== HERO ========== */
    .hero {
      background: linear-gradient(135deg, #38374C 0%, #2a2938 100%);
      padding: 140px 40px 80px;
      text-align: center;
      color: white;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(229, 133, 84, 0.2);
      color: #E58554;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 500;
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }

    .hero-titulo {
      font-size: 48px;
      font-weight: bold;
      margin-bottom: 20px;
      color: white;
    }

    .hero-subtitulo {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.8);
      max-width: 700px;
      margin: 0 auto;
    }

    /* ========== CONTENIDO ========== */
    .contenido {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 40px;
    }

    .seccion-titulo {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 30px;
      color: #38374C;
    }

    /* ========== MÉTRICAS ========== */
    .metricas-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 60px;
    }

    .metrica-card {
      background: white;
      border: 0.5px solid #ddd;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
    }

    .metrica-numero {
      font-size: 42px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .metrica-card:nth-child(1) .metrica-numero {
      color: #C52938;
    }

    .metrica-card:nth-child(2) .metrica-numero {
      color: #E58554;
    }

    .metrica-card:nth-child(3) .metrica-numero {
      color: #E3713D;
    }

    .metrica-card:nth-child(4) .metrica-numero {
      color: #38374C;
    }

    .metrica-label {
      font-size: 13px;
      color: #666;
    }

    /* ========== PROYECTOS GRID (CARDS VERTICALES) ========== */
    .proyectos-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-bottom: 60px;
    }

    .proyecto-card {
      background: white;
      border: 0.5px solid #ddd;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .proyecto-imagen {
      height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.5px;
      text-align: center;
      padding: 30px;
    }

    .proyecto-card:nth-child(1) .proyecto-imagen {
      background: linear-gradient(135deg, #38374C 0%, #C52938 100%);
    }

    .proyecto-card:nth-child(2) .proyecto-imagen {
      background: linear-gradient(135deg, #C52938 0%, #7a1a24 100%);
    }

    .proyecto-contenido {
      padding: 30px;
    }

    .proyecto-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 15px;
    }

    .proyecto-titulo {
      font-size: 22px;
      font-weight: bold;
      color: #38374C;
      margin: 0;
    }

    .proyecto-badge {
      background: rgba(197, 41, 56, 0.1);
      color: #C52938;
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .proyecto-descripcion {
      font-size: 14px;
      color: #666;
      margin-bottom: 20px;
      line-height: 1.7;
    }

    .proyecto-specs {
      border-top: 0.5px solid #ddd;
      padding-top: 20px;
      margin-bottom: 20px;
    }

    .specs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      font-size: 13px;
    }

    .spec-item {
    }

    .spec-label {
      color: #999;
      margin-bottom: 5px;
    }

    .spec-value {
      color: #38374C;
      font-weight: 600;
    }

    .spec-value.estado-activo {
      color: #45B054;
    }

    .proyecto-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      background: #f8f8f8;
      padding: 6px 14px;
      border-radius: 16px;
      font-size: 12px;
      color: #666;
    }

    /* ========== ÁREAS GRID (3 COLUMNAS) ========== */
    .areas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 60px;
    }

    .area-card {
      background: white;
      border: 0.5px solid #ddd;
      border-radius: 12px;
      overflow: hidden;
    }

    .area-imagen {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 12px;
      font-weight: 500;
      text-align: center;
      padding: 20px;
    }

    .area-card:nth-child(1) .area-imagen {
      background: linear-gradient(135deg, #38374C 0%, #5a5970 100%);
    }

    .area-card:nth-child(2) .area-imagen {
      background: linear-gradient(135deg, #E58554 0%, #C52938 100%);
    }

    .area-card:nth-child(3) .area-imagen {
      background: linear-gradient(135deg, #E3713D 0%, #C52938 100%);
    }

    .area-card:nth-child(4) .area-imagen {
      background: linear-gradient(135deg, #38374C 0%, #2a2938 100%);
    }

    .area-card:nth-child(5) .area-imagen {
      background: linear-gradient(135deg, #5a5970 0%, #38374C 100%);
    }

    .area-card:nth-child(6) .area-imagen {
      background: linear-gradient(135deg, #D3C8B7 0%, #a8a093 100%);
    }

    .area-contenido {
      padding: 20px;
    }

    .area-badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 12px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
    }

    .area-badge.desarrollo {
      background: rgba(229, 133, 84, 0.1);
      color: #E58554;
    }

    .area-badge.activo {
      background: rgba(69, 176, 84, 0.1);
      color: #45B054;
    }

    .area-titulo {
      font-size: 16px;
      font-weight: bold;
      color: #38374C;
      margin-bottom: 8px;
    }

    .area-descripcion {
      font-size: 13px;
      color: #666;
      line-height: 1.6;
    }

    /* ========== METODOLOGÍA ========== */
    .metodologia {
      background: white;
      border: 0.5px solid #ddd;
      border-radius: 12px;
      padding: 40px;
      margin-bottom: 30px;
    }

    .metodologia-descripcion {
      font-size: 15px;
      color: #666;
      margin-bottom: 30px;
      line-height: 1.7;
    }

    .proceso-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .proceso-step {
      text-align: center;
    }

    .proceso-numero {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: bold;
      margin: 0 auto 15px;
    }

    .proceso-step:nth-child(1) .proceso-numero {
      background: rgba(229, 133, 84, 0.1);
      color: #E58554;
    }

    .proceso-step:nth-child(2) .proceso-numero {
      background: rgba(227, 113, 61, 0.1);
      color: #E3713D;
    }

    .proceso-step:nth-child(3) .proceso-numero {
      background: rgba(197, 41, 56, 0.1);
      color: #C52938;
    }

    .proceso-step:nth-child(4) .proceso-numero {
      background: rgba(56, 55, 76, 0.1);
      color: #38374C;
    }

    .proceso-step:nth-child(5) .proceso-numero {
      background: rgba(211, 200, 183, 0.3);
      color: #857b6f;
    }

    .proceso-nombre {
      font-size: 13px;
      font-weight: bold;
      color: #38374C;
      margin-bottom: 5px;
    }

    .proceso-detalle {
      font-size: 12px;
      color: #999;
    }

    /* ========== COMPROMISO ========== */
    .compromiso {
      background: white;
      border: 0.5px solid #ddd;
      border-left: 4px solid #E58554;
      border-radius: 12px;
      padding: 30px;
      margin-bottom: 30px;
    }

    .compromiso h3 {
      font-size: 20px;
      font-weight: bold;
      color: #38374C;
      margin-bottom: 15px;
    }

    .compromiso p {
      font-size: 15px;
      color: #666;
      line-height: 1.8;
      margin: 0;
    }

    /* ========== FOOTER ========== */
    .footer {
      background: linear-gradient(135deg, #38374C 0%, #2a2938 100%);
      padding: 60px 40px 30px;
      color: white;
    }

    .footer-contenido {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 50px;
      margin-bottom: 40px;
    }

    .footer-logo {
      width: 150px;
      margin-bottom: 20px;
    }

    .footer-descripcion {
      font-size: 15px;
      color: #D3C8B7;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .footer-ubicaciones {
      list-style: none;
      padding: 0;
    }

    .footer-ubicaciones li {
      font-size: 14px;
      color: #D3C8B7;
      margin-bottom: 15px;
      padding-left: 25px;
      position: relative;
      line-height: 1.5;
    }

    .footer-ubicaciones li::before {
      content: "📍";
      position: absolute;
      left: 0;
      font-size: 16px;
    }

    .footer-columna h4 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 20px;
      border-bottom: 2px solid #E58554;
      padding-bottom: 10px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #D3C8B7;
      text-decoration: none;
      font-size: 15px;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: #E58554;
    }

    .footer-divisor {
      border: 0;
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      margin: 30px 0;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      font-size: 14px;
      color: #D3C8B7;
    }

    /* Llenar espacio con imágenes de proyectos aeroespaciales */
    .proyecto-card .proyecto-imagen {
      height: 280px;
      padding: 0 !important;  /* Elimina el padding */
      overflow: hidden;
      background: transparent !important;  /* Elimina fondos degradados */
    }

    .proyecto-imagen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }
    /* Efecto hover para tarjetas de áreas de desarrollo */
    .area-card {
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .area-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
      z-index: 10;
    }

    /* Llenar espacio con imágenes de áreas de desarrollo */
    .area-imagen {
      height: 180px;
      padding: 0 !important;
      overflow: hidden;
      background: transparent !important;
    }

    .area-imagen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

/* ========================================
   RESPONSIVE DESIGN
   Breakpoints: 1023px (tablet) / 767px (mobile) / 480px (small mobile)
   ======================================== */

/* HAMBURGUESA (oculta en desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

/* TABLET (max-width: 1023px) */
@media (max-width: 1023px) {
  .hero-titulo {
    font-size: 42px;
  }

  .hero-subtitulo {
    font-size: 17px;
  }

  .contenido {
    padding: 50px 30px;
  }

  .metricas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proyectos-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .footer-contenido {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* MOBILE (max-width: 767px) */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
  }

  /* NAVBAR */
  .navbar {
    padding: 12px 20px;
  }

  .navbar-logo {
    width: 90px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background-color: rgba(56, 55, 76, 0.98);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    z-index: 999;
    margin: 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 14px 0;
  }

  .hamburger {
    display: flex;
    padding: 6px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* HERO */
  .hero {
    padding: 100px 20px 50px;
  }

  .hero-titulo {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-subtitulo {
    font-size: 15px;
  }

  /* CONTENIDO */
  .contenido {
    padding: 40px 20px;
  }

  .seccion-titulo {
    font-size: 24px;
    margin-bottom: 22px;
  }

  /* MÉTRICAS */
  .metricas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
  }

  .metrica-card {
    padding: 24px 16px;
  }

  .metrica-numero {
    font-size: 36px;
  }

  /* PROYECTOS */
  .proyectos-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .proyecto-imagen {
    height: 220px;
  }

  .proyecto-contenido {
    padding: 22px;
  }

  .proyecto-titulo {
    font-size: 20px;
  }

  .proyecto-header {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* ÁREAS */
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .area-imagen {
    height: 160px;
  }

  /* METODOLOGÍA */
  .metodologia {
    padding: 26px 20px;
  }

  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* COMPROMISO */
  .compromiso {
    padding: 24px 20px;
  }

  /* FOOTER */
  .footer {
    padding: 50px 20px 25px;
  }

  .footer-contenido {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-ubicaciones li {
    padding-left: 0;
    padding-top: 22px;
  }

  .footer-ubicaciones li::before {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }
}

/* MOBILE PEQUEÑO (max-width: 480px) */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .navbar-logo {
    width: 75px;
  }

  .hero {
    padding: 90px 16px 40px;
  }

  .hero-titulo {
    font-size: 26px;
    line-height: 1.15;
    word-wrap: break-word;
  }

  .hero-subtitulo {
    font-size: 14px;
  }

  .seccion-titulo {
    font-size: 22px;
  }

  .contenido {
    padding: 30px 16px;
  }

  .metricas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .metrica-card {
    padding: 20px 12px;
  }

  .metrica-numero {
    font-size: 32px;
  }

  .proyecto-imagen {
    height: 200px;
  }

  .proyecto-contenido {
    padding: 18px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proceso-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .metodologia,
  .compromiso {
    padding: 22px 16px;
  }

  .area-imagen {
    height: 150px;
  }
}
