    /* RESET BÁSICO */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    /* FONDO DEL HERO */
    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      overflow: hidden;
      padding-left: 10px;
    }

    /* VIDEO DE FONDO */
    .video-fondo {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }
    
    /* CONTENEDOR DEL CONTENIDO */
    .hero-contenido {
      text-align: left;
      color: white;
      max-width: 900px;
      padding: 20px;
      position: relative;
      z-index: 100;
      margin-top: 180px;
    }
    
    /* TÍTULO PRINCIPAL */
    .titulo {
      font-size: 100px;
      font-weight: bold;
      margin-bottom: 20px;
      font-family: Arial, sans-serif;
      line-height: 1;
    }
    
    /* SUBTÍTULO */
    .subtitulo {
      font-size: 30px;
      font-weight: bold;
      color: white;
      margin-bottom: 40px;
      font-family: Arial, sans-serif;
      line-height: 1.5;
    }
    
    /* ========== 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: transparent;
      transition: background-color 0.3s ease;
      gap: 30px;
    }

    /* LOGO DEL NAVBAR */
    .navbar-logo {
      width: 120px;
      display: block;
    }

    /* NAVBAR CON FONDO (cuando haces scroll) */
    .navbar.scrolled {
      background-color: rgba(56, 55, 76, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* LISTA DEL MENÚ */
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 12px;
      margin: 0;
      padding: 0;
    }

    /* BOTONES PÍLDORA */
    .nav-menu a {
      color: white;
      text-decoration: none;
      font-size: 15px;
      font-family: Arial, sans-serif;
      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;
    }

    /* HOVER EN BOTONES */
    .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);
    }

    /* BOTÓN ACTIVO (página actual) */
    .nav-menu a.active {
      background-color: rgba(197, 41, 56, 0.9);
      border-color: #C52938;
    }

    /* ========== SECCIÓN STATEMENT ========== */
    .statement {
      background-color: white;
      padding: 100px 40px;
      text-align: center;
    }

    .statement-contenido {
      max-width: 900px;
      margin: 0 auto;
    }

    .statement-texto-principal {
      font-size: 32px;
      color: #38374C;
      font-family: Arial, sans-serif;
      font-weight: normal;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    .statement-linea {
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, #E58554, #C52938);
      margin: 0 auto 40px;
      border-radius: 2px;
    }

    .statement-texto-destacado {
      font-size: 28px;
      color: #38374C;
      font-family: Arial, sans-serif;
      font-weight: bold;
      line-height: 1.7;
      margin: 0;
    }

    /* ========== SECCIÓN CAPACIDADES ========== */
.capacidades {
  background-color: #f8f8f8;
  padding: 100px 40px;
}

.capacidades-titulo {
  text-align: center;
  font-size: 48px;
  color: #38374C;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
}

.capacidades-subtitulo {
  text-align: center;
  font-size: 20px;
  color: #666;
  font-family: Arial, sans-serif;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.capacidades-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* CARD DE CAPACIDAD */
.capacidad-card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-top: 4px solid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* CARD DE ANCHO COMPLETO */
.capacidad-card.full-width {
  grid-column: 1 / -1;
}

/* COLORES DE BORDE SEGÚN PILAR */
.capacidad-card.id-alto-desempeno {
  border-top-color: #E58554;
}

.capacidad-card.aeroespacial {
  border-top-color: #C52938;
}

.capacidad-card.educacion {
  border-top-color: #E3713D;
}

.capacidad-card.productos {
  border-top-color: #38374C;
}

.capacidad-card.infraestructura {
  border-top-color: #D3C8B7;
}

/* TÍTULO DE CADA CARD */
.capacidad-titulo {
  font-size: 24px;
  color: #38374C;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
}

/* DESCRIPCIÓN DE CADA CARD */
.capacidad-descripcion {
  font-size: 16px;
  color: #666;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* LISTA DE ITEMS */
.capacidad-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capacidad-items li {
  font-size: 15px;
  color: #555;
  font-family: Arial, sans-serif;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.6;
}

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

/* ========== SECCIÓN NAVEGACIÓN POR AUDIENCIA ========== */
.audiencia {
  background: linear-gradient(135deg, #38374C 0%, #2a2938 100%);
  padding: 100px 40px;
}

.audiencia-titulo {
  text-align: center;
  font-size: 48px;
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
}

.audiencia-subtitulo {
  text-align: center;
  font-size: 20px;
  color: #D3C8B7;
  font-family: Arial, sans-serif;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.audiencia-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD DE AUDIENCIA */
.audiencia-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.audiencia-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #E58554;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ICONO/EMOJI DE CADA CARD */
.audiencia-icono {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

/* TÍTULO DE CADA CARD */
.audiencia-card-titulo {
  font-size: 26px;
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
}

/* DESCRIPCIÓN DE CADA CARD */
.audiencia-card-descripcion {
  font-size: 16px;
  color: #D3C8B7;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* ENLACE/CTA */
.audiencia-link {
  display: inline-block;
  color: #E58554;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 3px;
}

.audiencia-link::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.audiencia-card:hover .audiencia-link {
  color: #fff;
}

.audiencia-card:hover .audiencia-link::after {
  transform: translateX(5px);
}

/* LISTA DE SERVICIOS */
.audiencia-servicios {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.audiencia-servicios li {
  font-size: 14px;
  color: #D3C8B7;
  font-family: Arial, sans-serif;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
}

.audiencia-servicios li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E58554;
  font-weight: bold;
}

/* ========== SECCIÓN DIFERENCIADORES ========== */
.diferenciadores {
  background-color: white;
  padding: 100px 40px;
}

.diferenciadores-titulo {
  text-align: center;
  font-size: 48px;
  color: #38374C;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
}

.diferenciadores-subtitulo {
  text-align: center;
  font-size: 20px;
  color: #666;
  font-family: Arial, sans-serif;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.diferenciadores-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD DE DIFERENCIADOR */
.diferenciador-card {
  text-align: center;
  padding: 30px 20px;
}

/* ICONO/SÍMBOLO */
.diferenciador-icono {
  font-size: 64px;
  margin-bottom: 25px;
  display: block;
}

/* TÍTULO DE CADA DIFERENCIADOR */
.diferenciador-titulo {
  font-size: 24px;
  color: #38374C;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
}

/* DESCRIPCIÓN */
.diferenciador-descripcion {
  font-size: 16px;
  color: #666;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* DATO DESTACADO */
.diferenciador-dato {
  display: inline-block;
  background: linear-gradient(135deg, #E58554, #C52938);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  margin-top: 10px;
}

/* LISTA DE PUNTOS */
.diferenciador-puntos {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  text-align: left;
}

.diferenciador-puntos li {
  font-size: 15px;
  color: #555;
  font-family: Arial, sans-serif;
  padding-left: 25px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.6;
}

.diferenciador-puntos li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #E58554;
  font-size: 20px;
  line-height: 1;
}

/* ========== SECCIÓN AVANTGARD PIONEERS ========== */
.pioneers-destacado {
  background-color: #f8f8f8;
  padding: 100px 40px;
}

.pioneers-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(135deg, rgba(56, 55, 76, 0.95) 0%, rgba(42, 41, 55, 0.98) 100%);
  border-radius: 16px;
  padding: 80px 60px;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pioneers-contenedor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../multimedia/osaka.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.15;
}

.pioneers-contenido {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.pioneers-etiqueta {
  display: inline-block;
  background: linear-gradient(135deg, #E58554, #C52938);
  color: white;
  padding: 10px 28px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.pioneers-titulo {
  font-size: 52px;
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.2;
}

.pioneers-subtitulo {
  font-size: 24px;
  color: #E58554;
  font-family: Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.pioneers-descripcion {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, sans-serif;
  line-height: 1.8;
  margin-bottom: 45px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pioneers-datos {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.pioneers-dato-item {
  text-align: center;
}

.pioneers-dato-numero {
  display: block;
  font-size: 48px;
  color: #E58554;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1;
}

.pioneers-dato-label {
  display: block;
  font-size: 14px;
  color: #D3C8B7;
  font-family: Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pioneers-botones {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.pioneers-boton-principal {
  display: inline-block;
  background: linear-gradient(135deg, #E58554, #C52938);
  color: white;
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 133, 84, 0.4);
}

.pioneers-boton-principal:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(229, 133, 84, 0.5);
}

.pioneers-boton-secundario {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.pioneers-boton-secundario:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #E58554;
  transform: translateY(-3px);
}

.pioneers-nota {
  font-size: 14px;
  color: #D3C8B7;
  font-family: Arial, sans-serif;
  font-style: italic;
  margin: 0;
}

/* ========== SECCIÓN PROYECTO DESTACADO ========== */
.proyecto-destacado {
  background-color: #f8f8f8;
  padding: 100px 40px;
}

.proyecto-destacado-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

/* LADO IZQUIERDO - VISUAL */
.proyecto-visual {
  background: linear-gradient(135deg, #38374C 0%, #C52938 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

/* Placeholder para imagen */
.proyecto-visual::before {
  content: "🤖";
  font-size: 120px;
  opacity: 0.3;
  position: absolute;
}

.proyecto-imagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* LADO DERECHO - CONTENIDO */
.proyecto-contenido {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ETIQUETA SUPERIOR */
.proyecto-etiqueta {
  display: inline-block;
  background-color: #E58554;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  align-self: flex-start;
}

/* TÍTULO DEL PROYECTO */
.proyecto-titulo {
  font-size: 36px;
  color: #38374C;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* CLIENTE */
.proyecto-cliente {
  font-size: 18px;
  color: #C52938;
  font-family: Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 25px;
}

/* DESCRIPCIÓN */
.proyecto-descripcion {
  font-size: 16px;
  color: #666;
  font-family: Arial, sans-serif;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* LISTA DE CARACTERÍSTICAS */
.proyecto-caracteristicas {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.proyecto-caracteristicas li {
  font-size: 15px;
  color: #555;
  font-family: Arial, sans-serif;
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  line-height: 1.6;
}

.proyecto-caracteristicas li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E58554;
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(229, 133, 84, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BOTÓN DE ACCIÓN */
.proyecto-boton {
  display: inline-block;
  background: linear-gradient(135deg, #E58554, #C52938);
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(229, 133, 84, 0.3);
}

.proyecto-boton:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(229, 133, 84, 0.4);
}

/* ========== SECCIÓN CONTACTO ========== */
.contacto {
  background-color: white;
  padding: 100px 40px;
}

.contacto-titulo {
  text-align: center;
  font-size: 48px;
  color: #38374C;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
}

.contacto-subtitulo {
  text-align: center;
  font-size: 20px;
  color: #666;
  font-family: Arial, sans-serif;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contacto-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

/* FORMULARIO */
.contacto-formulario {
  background-color: #f8f8f8;
  padding: 40px;
  border-radius: 12px;
}

.form-grupo {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 15px;
  color: #38374C;
  font-family: Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: Arial, sans-serif;
  border: 2px solid #ddd;
  border-radius: 8px;
  background-color: white;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #E58554;
  box-shadow: 0 0 0 3px rgba(229, 133, 84, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-boton {
  background: linear-gradient(135deg, #E58554, #C52938);
  color: white;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 133, 84, 0.3);
  width: 100%;
}

.form-boton:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(229, 133, 84, 0.4);
}

/* INFORMACIÓN DE CONTACTO */
.contacto-info {
  padding: 20px 0;
}

.info-item {
  margin-bottom: 35px;
  padding: 25px;
  background-color: #f8f8f8;
  border-radius: 12px;
  border-left: 4px solid #E58554;
}

.info-icono {
  font-size: 32px;
  margin-bottom: 15px;
  display: block;
}

.info-titulo {
  font-size: 18px;
  color: #38374C;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 10px;
}

.info-detalle {
  font-size: 15px;
  color: #666;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 5px 0;
}

.info-detalle a {
  color: #E58554;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-detalle a:hover {
  color: #C52938;
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(135deg, #38374C 0%, #2a2938 100%);
  padding: 80px 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: 50px;
}

/* COLUMNA 1: Logo y ubicaciones */
.footer-columna-logo {
  padding-right: 20px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 25px;
}

.footer-descripcion {
  font-size: 15px;
  color: #D3C8B7;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
}

.footer-ubicaciones {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-ubicaciones li {
  font-size: 14px;
  color: #D3C8B7;
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  line-height: 1.5;
}

.footer-ubicaciones li::before {
  content: "📍";
  position: absolute;
  left: 0;
  font-size: 16px;
}

/* COLUMNAS DE LINKS */
.footer-columna h4 {
  font-size: 18px;
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #E58554;
  padding-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #D3C8B7;
  text-decoration: none;
  font-size: 15px;
  font-family: Arial, sans-serif;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #E58554;
  transform: translateX(5px);
}

/* LÍNEA DIVISORIA */
.footer-divisor {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0 30px;
}

/* PARTE INFERIOR DEL FOOTER */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #D3C8B7;
  font-family: Arial, sans-serif;
}

.footer-copyright {
  margin: 0;
}

.footer-redes {
  display: flex;
  gap: 20px;
}

.footer-redes a {
  color: #D3C8B7;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-redes a:hover {
  color: #E58554;
  transform: translateY(-3px);
}

/* Centrar video del ROV */
video.proyecto-imagen {
  object-fit: cover;
  object-position: center;
}

/* ========================================

/* MENÚ HAMBURGUESA (oculto en desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ======================================== */

/* MENÚ HAMBURGUESA (oculto en desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

/* ===================================================
   RESPONSIVE — Tablet & Mobile
   Breakpoints: 1023px (tablet) / 767px (mobile) / 480px (small mobile)
   =================================================== */

/* TABLET (max-width: 1023px) */
@media (max-width: 1023px) {
  .hero-titulo, .titulo {
    font-size: 48px !important;
  }

  .hero-subtitulo, .subtitulo {
    font-size: 18px !important;
  }

  section {
    padding: 50px 30px;
  }

  /* Reducir grids de 3+ columnas a 2 en tablet */
  .capacidades-grid,
  .audiencia-grid,
  .diferenciadores-grid,
  .areas-grid,
  .objetivos-grid,
  .valores-grid,
  .ventajas-grid,
  .stats-grid,
  .specs-grid,
  .metricas-grid,
  .estandares-grid,
  .equipo-grid,
  .gallery-grid,
  .mentores-grid,
  .pilares-grid,
  .beneficios-grid,
  .fases-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* MOBILE (max-width: 767px) */
@media (max-width: 767px) {
  /* Bloquear scroll horizontal a nivel de página */
  html, body {
    overflow-x: hidden;
  }

  /* NAVBAR MOBILE */
  .navbar {
    padding: 12px 20px !important;
  }

  .navbar-logo {
    width: 90px !important;
    height: auto !important;
  }

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

  .nav-menu a {
    display: inline-block;
    padding: 10px 24px;
  }

  .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 content reset for mobile — desktop margin-top:180px was pushing text too low */
  .hero-contenido, .hero-content {
    margin-top: 0 !important;
    padding: 0 !important;
    text-align: center;
    max-width: 100%;
  }

  /* Hero titles: break long words rather than overflow */
  .hero-titulo, .titulo, .hero-subtitulo, .subtitulo, .hero h1, .hero-content h1, h1 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }

  .hero, .hero-section {
    height: auto;
    min-height: 60vh;
    padding: 90px 20px 40px;
  }

  .hero-titulo, .titulo {
    font-size: 32px !important;
    line-height: 1.2;
  }

  .hero-subtitulo, .subtitulo {
    font-size: 16px !important;
    line-height: 1.5;
  }

  /* SECCIONES */
  section {
    padding: 40px 20px !important;
  }

  h1 {
    font-size: 32px !important;
  }

  h2 {
    font-size: 26px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  p, li {
    font-size: 15px !important;
    line-height: 1.6;
  }

  /* BOTONES — touch-friendly (min 44px) */
  .cta-boton, .boton, button, .btn,
  .pioneers-boton-principal, .pioneers-boton-secundario,
  .form-boton, .proyecto-boton, .audiencia-link {
    font-size: 14px !important;
    padding: 14px 28px !important;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* GRIDS A COLUMNA ÚNICA — cubre todos los grids del sitio */
  .grid, .cards-grid, .capacidades-grid, .audiencia-grid,
  .diferenciadores-grid, .soluciones-grid, .proyectos-grid,
  .areas-grid, .estandares-grid, .objetivos-grid, .valores-grid,
  .ventajas-grid, .stats-grid, .specs-grid, .metricas-grid,
  .mision-vision-grid, .equipo-grid, .pilar-grid, .pilares-grid,
  .gallery-grid, .mentores-grid, .beneficios-grid, .fases-grid,
  .footer-contenido, .split-grid, .kits-grid, .comparativa-grid,
  .proceso-grid, .contacto-contenedor, .pioneers-contenedor,
  .proyecto-destacado-contenedor, .pioneers-datos {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  /* IMÁGENES Y VIDEOS RESPONSIVE */
  img, video {
    max-width: 100%;
    height: auto;
  }

  /* TABLAS RESPONSIVE */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* FOOTER */
  .footer-contenido {
    flex-direction: column !important;
    text-align: center;
  }

  .footer-columna {
    margin: 15px 0;
  }
}

/* MOBILE PEQUEÑO (max-width: 480px) — teléfonos pequeños */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px !important;
  }

  .navbar-logo {
    width: 75px !important;
  }

  .hero, .hero-section {
    padding: 80px 16px 30px !important;
    min-height: 50vh !important;
  }

  .hero-titulo, .titulo, h1 {
    font-size: 26px !important;
    line-height: 1.15;
    word-wrap: break-word;
  }

  .hero-subtitulo, .subtitulo, h2 {
    font-size: 15px !important;
  }

  h3 {
    font-size: 17px !important;
  }

  p, li, span {
    font-size: 14px !important;
  }

  section {
    padding: 28px 16px !important;
  }

  /* Botones — mantener touch target en pantallas pequeñas */
  .cta-boton, .boton, button, .btn,
  .pioneers-boton-principal, .pioneers-boton-secundario,
  .form-boton, .proyecto-boton, .audiencia-link {
    padding: 12px 22px !important;
    font-size: 13px !important;
    min-height: 44px;
  }

  /* Containers / cards */
  .container, .contenido {
    padding: 15px !important;
    width: 100% !important;
  }

  .card, .proyecto-card, .area-card,
  .capacidad-card, .audiencia-card, .diferenciador-card,
  .pilar-card, .info-item {
    padding: 16px !important;
    margin: 10px 0 !important;
  }
}
