    /* ========================================
       RESET Y BASE
       ======================================== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #f8f8f8;
      color: #38374C;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ========================================
   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;
    }

    /* ========================================
       SECCIÓN NOSOTROS
       ======================================== */
    .nosotros-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 40px;
    }

    /* Intro */
    .nosotros-intro {
      background: white;
      border-radius: 12px;
      padding: 40px;
      margin-bottom: 60px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .nosotros-titulo {
      font-size: 20px;
      line-height: 1.7;
      color: #38374C;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .nosotros-subtitulo {
      font-size: 16px;
      line-height: 1.7;
      color: #666;
    }

    /* Misión y Visión */
    .mision-vision-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 50px;
    }

    .mision-card,
    .vision-card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .mision-card:hover,
    .vision-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .mv-titulo {
      font-size: 24px;
      font-weight: bold;
      margin: 0 0 16px 0;
    }

    .mv-titulo.mision {
      color: #C52938;
    }

    .mv-titulo.vision {
      color: #E58554;
    }

    .mv-texto {
      font-size: 15px;
      line-height: 1.7;
      color: #555;
      margin: 0;
    }

    /* ========================================
       CARRUSEL DEL EQUIPO
       ======================================== */
    .equipo-carousel {
      width: 100%;
      margin-bottom: 60px;
    }

    .carousel-container {
      position: relative;
      width: 100%;
      height: 280px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .carousel-slides {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .carousel-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }

    .carousel-slide.active {
      opacity: 1;
      z-index: 1;
    }

    /* Botones de navegación */
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(56, 55, 76, 0.7);
      color: white;
      border: none;
      font-size: 30px;
      padding: 10px 15px;
      cursor: pointer;
      z-index: 2;
      transition: all 0.3s ease;
      border-radius: 4px;
    }

    .carousel-btn:hover {
      background: rgba(56, 55, 76, 0.9);
    }

    .carousel-btn.prev {
      left: 20px;
    }

    .carousel-btn.next {
      right: 20px;
    }

    /* Indicadores (dots) */
    .carousel-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 2;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .dot:hover {
      background: rgba(255, 255, 255, 0.8);
    }

    .dot.active {
      background: #E58554;
      width: 30px;
      border-radius: 6px;
    }

    /* Subtítulos de sección */
    .subseccion-titulo {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 30px;
      color: #38374C;
    }

    .subseccion-descripcion {
      font-size: 16px;
      color: #666;
      text-align: center;
      margin: 0 auto 40px auto;
      max-width: 700px;
    }

    /* Valores */
    .valores-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 80px;
    }

    .valor-card {
      background: white;
      border-radius: 12px;
      padding: 24px;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .valor-card.full-width {
      grid-column: span 2;
    }

    .valor-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .valor-numero {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 16px;
    }

    .valor-nombre {
      font-size: 16px;
      font-weight: bold;
      color: #38374C;
      margin: 0 0 12px 0;
    }

    .valor-descripcion {
      font-size: 14px;
      line-height: 1.6;
      color: #666;
      margin: 0;
    }

    /* Objetivos */
    .objetivos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 80px;
    }

    .objetivo-card {
      background: white;
      border-radius: 12px;
      padding: 24px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .objetivo-card.objetivo-large {
      grid-column: span 2;
    }

    .objetivo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .objetivo-numero {
      font-size: 36px;
      font-weight: bold;
      margin: 0 0 12px 0;
    }

    .objetivo-texto {
      font-size: 14px;
      color: #666;
      margin: 0;
    }

    /* ========================================
       METODOLOGÍA Y PROCESO
       ======================================== */
    .metodologia-principal {
      background: white;
      border-radius: 12px;
      padding: 40px;
      margin-bottom: 40px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .metodologia-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .metodologia-icono {
      font-size: 64px;
      margin-bottom: 20px;
    }

    .metodologia-titulo {
      font-size: 32px;
      font-weight: bold;
      color: #38374C;
      margin-bottom: 15px;
    }

    .metodologia-intro {
      font-size: 16px;
      line-height: 1.7;
      color: #666;
      max-width: 800px;
      margin: 0 auto;
    }

    /* Fases del proceso */
    .metodologia-fases {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      margin-top: 30px;
    }

    .fase-card {
      background: #f8f8f8;
      border-radius: 12px;
      padding: 25px;
      transition: all 0.3s ease;
      border-top: 3px solid transparent;
    }

    .fase-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      background: white;
    }

    .fase-card:nth-child(1) { border-top-color: #C52938; }
    .fase-card:nth-child(2) { border-top-color: #E58554; }
    .fase-card:nth-child(3) { border-top-color: #E3713D; }
    .fase-card:nth-child(4) { border-top-color: #38374C; }
    .fase-card:nth-child(5) { border-top-color: #D3C8B7; }
    .fase-card:nth-child(6) { border-top-color: #857b6f; }

    .fase-numero {
      font-size: 48px;
      font-weight: bold;
      color: rgba(56, 55, 76, 0.1);
      margin-bottom: 15px;
      line-height: 1;
    }

    .fase-titulo {
      font-size: 18px;
      font-weight: bold;
      color: #38374C;
      margin-bottom: 12px;
    }

    .fase-descripcion {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .fase-actividades {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .fase-actividades li {
      font-size: 13px;
      color: #555;
      padding: 6px 0;
      padding-left: 20px;
      position: relative;
    }

    .fase-actividades li::before {
      content: "▸";
      position: absolute;
      left: 0;
      color: #E58554;
      font-weight: bold;
    }

    /* Estándares */
    .estandares-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin: 40px 0;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .estandar-card {
      background: white;
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .estandar-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .estandar-icono {
      font-size: 40px;
      margin-bottom: 15px;
    }

    .estandar-titulo {
      font-size: 16px;
      font-weight: bold;
      color: #38374C;
      margin-bottom: 10px;
    }

    .estandar-descripcion {
      font-size: 13px;
      color: #666;
      line-height: 1.5;
    }

    /* Herramientas */
    .herramientas-section {
      background: white;
      border-radius: 12px;
      padding: 40px;
      margin: 40px 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .herramientas-titulo {
      font-size: 24px;
      font-weight: bold;
      color: #38374C;
      margin-bottom: 10px;
      text-align: center;
    }

    .herramientas-intro {
      font-size: 15px;
      color: #666;
      text-align: center;
      margin-bottom: 30px;
    }

    .herramientas-categorias {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }

    .herramienta-categoria {
      background: #f8f8f8;
      border-radius: 10px;
      padding: 20px;
    }

    .categoria-titulo {
      font-size: 16px;
      font-weight: bold;
      color: #38374C;
      margin-bottom: 15px;
      border-bottom: 2px solid #E58554;
      padding-bottom: 8px;
    }

    .herramientas-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tag {
      background: white;
      color: #38374C;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 500;
      border: 1px solid #E0E0E0;
      transition: all 0.3s ease;
    }

    .tag:hover {
      background: #E58554;
      color: white;
      border-color: #E58554;
      transform: translateY(-2px);
    }

    /* Compromiso */
    .compromiso-box {
      background: white;
      border-radius: 12px;
      padding: 50px 40px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      border-top: 4px solid #E58554;
    }

    .compromiso-icono {
      font-size: 48px;
      margin-bottom: 20px;
    }

    .compromiso-titulo {
      font-size: 28px;
      font-weight: bold;
      color: #38374C;
      margin: 0 0 20px 0;
    }

    .compromiso-texto {
      font-size: 16px;
      color: #666;
      line-height: 1.8;
      max-width: 800px;
      margin: 0 auto 40px;
    }

    .compromiso-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 600px;
      margin: 0 auto;
    }

    .stat {
      text-align: center;
    }

    .stat-numero {
      font-size: 36px;
      font-weight: bold;
      color: #C52938;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 13px;
      color: #666;
    }

    /* ========================================
       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;
    }

    /* ========================================
       AJUSTES INDIVIDUALES DEL CARRUSEL
       ======================================== */
    .carousel-slide:nth-child(2) {
      object-position: center 90%;
    }

    .carousel-slide:nth-child(5) {
      object-position: center 90%;
    }

/* ========================================
   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;
  }

  .nosotros-section {
    padding: 50px 30px;
  }

  .mision-vision-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .valor-card.full-width,
  .objetivo-card.objetivo-large {
    grid-column: span 2;
  }

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

  .estandares-grid,
  .herramientas-categorias {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .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;
  }

  /* SECCIÓN */
  .nosotros-section {
    padding: 40px 20px;
  }

  .nosotros-intro {
    padding: 26px 20px;
  }

  .nosotros-titulo {
    font-size: 18px;
  }

  .nosotros-subtitulo {
    font-size: 15px;
  }

  /* MISIÓN / VISIÓN */
  .mision-vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mision-card,
  .vision-card {
    padding: 24px 20px;
  }

  .mv-titulo {
    font-size: 22px;
  }

  /* CARRUSEL */
  .carousel-container {
    height: 220px;
  }

  .carousel-btn {
    font-size: 22px;
    padding: 8px 12px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .subseccion-titulo {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .subseccion-descripcion {
    font-size: 15px;
  }

  /* VALORES Y OBJETIVOS */
  .valores-grid,
  .objetivos-grid {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .valor-card.full-width,
  .objetivo-card.objetivo-large {
    grid-column: span 1;
  }

  /* METODOLOGÍA */
  .metodologia-principal {
    padding: 28px 20px;
  }

  .metodologia-titulo {
    font-size: 24px;
  }

  .metodologia-intro {
    font-size: 15px;
  }

  .metodologia-fases {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* ESTÁNDARES Y HERRAMIENTAS */
  .estandares-grid,
  .herramientas-categorias {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .herramientas-section {
    padding: 28px 20px;
  }

  .herramientas-titulo {
    font-size: 22px;
  }

  /* COMPROMISO */
  .compromiso-box {
    padding: 36px 22px;
  }

  .compromiso-titulo {
    font-size: 22px;
  }

  .compromiso-texto {
    font-size: 15px;
  }

  .compromiso-stats {
    grid-template-columns: 1fr;
    gap: 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;
  }

  .nosotros-section {
    padding: 30px 16px;
  }

  .nosotros-intro {
    padding: 22px 16px;
  }

  .subseccion-titulo {
    font-size: 22px;
  }

  .carousel-container {
    height: 180px;
  }

  .metodologia-principal,
  .herramientas-section,
  .compromiso-box {
    padding: 24px 16px;
  }

  .metodologia-titulo {
    font-size: 22px;
  }

  .compromiso-titulo {
    font-size: 20px;
  }
}
