  /* ================================
   MENÚ TIPO PESTAÑAS (SIN ACTIVO)
================================ */
  .menu-tabs {
      list-style: none;
      padding: 0;
      margin: 0 auto 30px auto;
      display: inline-flex;
      /* 🔹 hace que la línea solo mida lo necesario */
      justify-content: center;
      border-bottom: 3px solid #0B3C8A;
  }

  /* Items */
  .menu-tabs li {
      margin: 0 6px;
  }

  /* Links */
  .menu-tabs li a {
      display: block;
      padding: 12px 18px;
      font-weight: 600;
      text-decoration: none;
      color: #333;
      background: #f5f5f5;
      border: 1px solid #ddd;
      border-bottom: none;
      transition: all 0.2s ease-in-out;
  }

  /* SOLO HOVER */
  .menu-tabs li a:hover {
      background: #0B3C8A;
      color: #fff;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .menu-tabs {
          display: flex;
          width: 100%;
          border-bottom: none;
      }

      .menu-tabs li {
          width: 100%;
      }

      .menu-tabs li a {
          text-align: center;
          border-bottom: 1px solid #ddd;
      }
  }