    :root {
      --rojo: #cc0000;
      --rojo-oscuro: #990000;
      --negro: #000000;
      --blanco: #ffffff;
      --gris: #f8f9fa;
      --gris-oscuro: #333333;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--blanco);
      color: var(--gris-oscuro);
    }
    
    .navbar {
      background-color: var(--blanco);
      border-bottom: 2px solid var(--rojo);
      box-shadow: 0 2px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }
    
    .navbar.scrolled {
      background-color: rgba(255,255,255,0.95);
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .navbar-brand, .nav-link {
      font-size: 0.95rem;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
      color: var(--negro) !important;
      transition: all 0.3s ease;
    }
    
    .nav-link:hover {
      color: var(--rojo) !important;
    }
    
    .nav-link.active {
      color: var(--rojo) !important;
      font-weight: 600;
    }
    
    .navbar-brand img {
      transition: all 0.3s ease;
    }
    
    .navbar.scrolled .navbar-brand img {
      height: 45px !important;
    }
    
    .hero {
      height: 100vh;
      position: relative;
      color: var(--negro);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background-color: var(--blanco);
    }
    
    .hero video {
      position: absolute;
      top: 0;
      left: 0;
      min-width: 100%;
      min-height: 100%;
      z-index: -2;
      object-fit: cover;
      opacity: 0.2;
    }
    
    .hero-content {
      position: relative;
      z-index: 1;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      font-weight: 600;
      color: var(--negro);
      margin-bottom: 1.5rem;
      text-shadow: none;
    }
    
    .hero p {
      font-size: 1.25rem;
      color: var(--gris-oscuro);
      max-width: 700px;
      margin: 0 auto 2rem;
    }
    
    .btn-main {
      background-color: var(--rojo);
      color: var(--blanco);
      border: none;
      font-weight: 500;
      padding: 12px 30px;
      border-radius: 4px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(204,0,0,0.3);
    }
    
    .btn-main:hover {
      background-color: var(--rojo-oscuro);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(204,0,0,0.4);
      color: var(--blanco);
    }
    
    .btn-main:active {
      transform: translateY(1px);
    }
    
    section {
      padding: 100px 0;
      position: relative;
    }
    
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 2.5rem;
      font-weight: 600;
      color: var(--negro);
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 50px;
      height: 3px;
      background-color: var(--rojo);
    }
    
    .section-dark {
      background-color: var(--negro);
      color: var(--blanco); /* Cambiado a blanco para mejor contraste */
    }
    
    .section-dark .section-title {
      color: var(--blanco);
    }
    
    .section-dark .section-title:after {
      background-color: var(--blanco);
    }
    
    .section-dark .text-muted {
      color: rgba(255,255,255,0.8) !important; /* Cambiado a blanco transparente */
    }
    
    footer {
      background-color: var(--negro);
      color: var(--blanco);
      padding: 40px 0 20px;
      position: relative;
    }
    
    footer:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: var(--rojo);
    }
    
    .navbar-toggler {
      border: 1px solid var(--negro);
      padding: 0.4rem 0.6rem;
    }
    
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .dropdown-menu {
      border: none;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      border-radius: 0;
      padding: 0;
      overflow: hidden;
    }
    
    .dropdown-item {
      padding: 0.75rem 1.5rem;
      transition: all 0.2s ease;
    }
    
    .dropdown-item:hover {
      background-color: var(--rojo);
      color: var(--blanco) !important;
    }
    
    .logo-hero {
      max-width: 500px;
      margin-bottom: 2rem;
      width: 100%;
      filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    }
    
    .img-fluid {
      border-radius: 4px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }
    
    .img-fluid:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }
    
    .btn-cap {
      background-color: var(--rojo);
      color: var(--blanco);
      border: none;
      padding: 12px 25px;
      border-radius: 4px;
      font-weight: 500;
      transition: all 0.3s ease;
      display: inline-block;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(204,0,0,0.2);
    }
    
    .btn-cap:hover {
      background-color: var(--rojo-oscuro);
      color: var(--blanco);
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(204,0,0,0.3);
    }
    
    .botones-capital-humano {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 2rem;
    }
    
    .list-unstyled li {
      margin-bottom: 0.75rem;
      position: relative;
      padding-left: 1.75rem;
    }
    
    .list-unstyled li:before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 0;
      color: var(--rojo);
    }
    
    /* Efecto VANTA */
    #vanta-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      opacity: 0.3;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 2.8rem;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
      
      section {
        padding: 70px 0;
      }
    }
    
    @media (max-width: 768px) {
      .hero {
        padding-top: 70px;
      }
      
      .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
      }
      
      .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
      }
      
      .logo-hero {
        max-width: 250px;
        margin-bottom: 1.5rem;
      }
      
      .botones-capital-humano {
        flex-direction: column;
        align-items: center;
      }
      
      .btn-cap {
        width: 100%;
        max-width: 300px;
      }
      
      .navbar-brand img {
        height: 40px !important;
      }
      
      .hero video {
        opacity: 0.1;
      }
    }
    
    @media (max-width: 576px) {
      .hero h1 {
        font-size: 1.8rem;
      }
      
      section {
        padding: 50px 0;
      }
    }
    
    /* Animaciones */
    [data-aos="fade-up"] {
      transform: translateY(30px);
      opacity: 0;
      transition-property: transform, opacity;
    }
    
    [data-aos="fade-up"].aos-animate {
      transform: translateY(0);
      opacity: 1;
    }
    
    /* Formulario */
    .form-control {
      padding: 12px 15px;
      border: 1px solid #e0e0e0;
      border-radius: 4px;
      transition: all 0.3s ease;
    }
    
    .form-control:focus {
      border-color: var(--rojo);
      box-shadow: 0 0 0 0.25rem rgba(204,0,0,0.1);
    }
	.g-recaptcha {
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

#recaptcha-error {
    color: #ff6b6b;
    font-size: 0.9rem;
}
.btn-enviar:disabled {
  background-color: #cccccc !important;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
/* Estilos para la línea de tiempo */
/* Línea de tiempo curva - Nuevos estilos */
/* Reemplaza los estilos de la línea de tiempo con estos */

/* Estilos para la línea de tiempo circular */
.timeline-circle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  margin-top: 30px;
}

.half-circle {
  position: relative;
  width: 500px;
  height: 250px;
  margin: 0 auto;
}

.circle-base {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 3px solid rgba(204, 0, 0, 0.2);
  border-radius: 50%;
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.timeline-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.timeline-item {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--rojo);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
  z-index: 10;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.timeline-item:hover {
  transform: scale(1.2);
  background: var(--rojo-oscuro);
  box-shadow: 0 0 20px rgba(204, 0, 0, 0.5);
  z-index: 15;
}

.info-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 300px;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  color: #333;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 20;
  pointer-events: none;
  border: 1px solid #eee;
}

.info-panel.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.info-year {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--rojo);
}

.info-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.info-content {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

.info-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--rojo);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.4);
  z-index: 30;
}

.timeline-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 0;
  background: rgba(204, 0, 0, 0.2);
  transform-origin: top center;
  z-index: 5;
}

/* Responsive */
@media (max-width: 992px) {
  .timeline-circle-container {
    height: 350px;
  }
  
  .half-circle {
    width: 400px;
    height: 200px;
  }
  
  .circle-base {
    width: 400px;
    height: 400px;
  }
  
  .info-panel {
    width: 280px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .timeline-circle-container {
    height: 300px;
  }
  
  .half-circle {
    width: 320px;
    height: 160px;
  }
  
  .circle-base {
    width: 320px;
    height: 320px;
  }
  
  .timeline-item {
    width: 40px;
    height: 40px;
    font-size: 11px;
  }
  
  .info-panel {
    width: 240px;
    padding: 15px;
  }
  
  .info-year {
    font-size: 1.5rem;
  }
  
  .info-title {
    font-size: 1.1rem;
  }
  
  .info-content {
    font-size: 0.85rem;
  }
}