  body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4fafd;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }

  /* Navbar flotante y estilizado */
  .navbar {
    background-color: #0d6efd !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
  }

  .navbar-brand {
    font-weight: 600;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .navbar-nav .nav-link {
    font-weight: 500;
    margin-left: 1rem;
  }

  /* Hero con overlay y fondo animado */
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: #0d6efd;
  }

  #vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
  }

  .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .hero-content p.lead {
    font-size: 1.25rem;
    margin-top: 1rem;
    color: #f8f9fa;
  }

  /* Secciones */
  section {
    padding: 80px 0;
  }

  h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  /* Cards de información */
  .info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
  }

  .info-card:hover {
    transform: translateY(-5px);
  }

  /* Footer */
  footer {
    background-color: #0d6efd;
    color: white;
    padding: 60px 0;
    font-size: 0.95rem;
  }

  footer strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  footer hr {
    border-color: rgba(255, 255, 255, 0.15);
  }

  footer p {
    margin-top: 30px;
    font-size: 0.85rem;
    opacity: 0.8;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2.2rem;
    }

    .hero-content p.lead {
      font-size: 1rem;
    }

    h2 {
      font-size: 1.6rem;
    }
  }

